diff --git a/slides/allocation_dynamique.md b/slides/allocation_dynamique.md deleted file mode 100644 index 0a1054fc7b1c3fb35f05512f6f9051ba23ba2a30..0000000000000000000000000000000000000000 --- a/slides/allocation_dynamique.md +++ /dev/null @@ -1,261 +0,0 @@ ---- -title: "Allocation dynamique de mémoire" -date: "2022-11-22" ---- - -# Allocation dynamique de mémoire (1/7) - -- La fonction `malloc`{.C} permet d'allouer dynamiquement (pendant l'exécution du programme) une zone de mémoire contiguë. - - ```C - #include <stdlib.h> - void *malloc(size_t size); - ``` -- `size`{.C} est la taille de la zone mémoire **en octets**. -- Retourne un pointeur sur la zone mémoire ou `NULL`{.C} en cas d'échec: **toujours vérifier** que la valeur retournée est `!= NULL`{.C}. -- Le *type* du retour est `void *`{.C} (un pointeur de type quelconque). - -# Allocation dynamique de mémoire (2/7) - -- On peut allouer et initialiser une `fraction_t`{.C}: - - ```C - fraction_t *frac = malloc(sizeof(fraction_t)); - frac->num = 1; - frac->denom = -1; - ``` -- La zone mémoire **n'est pas** initialisée. -- Désallouer la mémoire explicitement, sinon **fuites mémoires**. -- Il faut connaître la **taille** des données à allouer. - -{width=100%} - -# Allocation dynamique de mémoire (3/7) - -- La fonction `free()`{.C} permet de libérer une zone préalablement allouée avec `malloc()`{.C}. - - ```C - #include <stdlib.h> - void free(void *ptr); - ``` -- A chaque `malloc()`{.C} doit correspondre exactement un `free()`{.C}. -- Si la mémoire n'est pas libérée: **fuite mémoire** (l'ordinateur plante quand il y a plus de mémoire). -- Si la mémoire est **libérée deux fois**: *seg. fault*. -- Pour éviter les mauvaises surprises mettre `ptr`{.C} à `NULL`{.C} après - libération. - -# Allocation dynamique de mémoire (4/7) - -## Tableaux dynamiques - -- Pour allouer un espace mémoire de 50 entiers: un tableau - - ```C - int *p = malloc(50 * sizeof(int)); - for (int i = 0; i < 50; ++i) { - p[i] = 0; - } - ``` - -## Arithmétique de pointeurs - -- Parcourir la mémoire différemment qu'avec l'indexation - - ```C - int *p = malloc(50 * sizeof(int)); - // initialize somehow - int a = p[7]; - int b = *(p + 7); // on avance de 7 "int" - p[0] == *p; // le pointeur est le premier élément - ``` - -# Allocation dynamique de mémoire (5/7) - -## Arithmétique de pointeurs - -{width=100%} - -## Quelle est la complexité de l'accès à une case d'un tableau? - -. . . - -$$ -\mathcal{O}(1). -$$ - -# Allocation dynamique de mémoire (6/7) - -## Pointeur de pointeur - -- Tout comme une valeur a une adresse, un pointeur a lui-même une adresse: - - ```C - int a = 2; - int *b = &a; - int **c = &b; - ``` -- En effet, un pointeur est aussi une variable (une variable qui contient une adresse mémoire). - -- Chaque `*`{.C} rajoute une indirection. - -# Allocation dynamique de mémoire (6/7) - -## Pointeur de pointeur - -{height=100%} - -# Allocation dynamique de mémoire (7/7) - -- Avec `malloc()`, on peut allouer dynamiquement des tableaux de pointeurs: - - ```C - int **p = malloc(50 * sizeof(int*)); - for (int i = 0; i < 50; ++i) { - p[i] = malloc(70 * sizeof(int)); - } - int a = p[5][8]; // on indexe dans chaque dimension - ``` - -- Ceci est une matrice (un tableau de tableaux). - -# Tableau dynamique en argument d'une fonction - -## Implémenter la fonction ci-dessous - -```C -int32_t *p = malloc(50 * sizeof(*p)); -initialize_to(p, 50, -1); // initialise un tableau à -1 -free(p); // ne pas oublier -``` - -. . . - -```C -void initialize_to(int32_t *p, size_t size, int32_t val) { - for (size_t i = 0; i < size; ++i) { - p[i] = val; - } -} -``` - - -# Tableau dynamique retourné d'une fonction - -## Implémenter la fonction ci-dessous - -```C -// alloue un tableau de taille 50 et l'initialise à -1 -int32_t *p = initialize_to(50, -1); -free(p); // ne pas oublier -``` - -. . . - -```C -uint32_t initialize_to(size_t size, int32_t val) { - int32_t *p = malloc(size * sizeof(*p)); - for (size_t i = 0; i < size; ++i) { - p[i] = val; - } - return p; -} -``` - -## Pourquoi on peut retourner un tableau dynamique et pas un statique? - -. . . - -* Le tableau est alloué sur le **tas** et non sur la **pile**. -* La mémoire est gérée manuellement sur le tas, automatiquement sur la pile. - - - -# Les *sanitizers* - -Problèmes mémoire courants: - -* Dépassement de capacité de tableaux. -* Utilisation de mémoire non allouée. -* Fuites mémoire. -* Double libération. - -Outils pour leur détection: - -* Valgrind (outil externe). -* Sanitizers (ajouts de marqueurs à la compilation). - -Ici on utilise les sanitizers (modification de la ligne de compilation, modifiez donc vos *Makefile*): - -```bash -gcc -o main main.c -g -fsanitize=address -fsanitize=leak -``` - -**Attention:** Il faut également faire l'édition des liens avec les sanitizers. - -# Questions - -## Que fait le code suivant? - -```C -int *p = malloc(50 * sizeof(int)); -p[10] = 1; -``` - -. . . - -* On alloue de la place pour 50 entiers. -* On initialise le 11ème élément du tableau à 1. -* Les autres éléments sont non-initialisés. - -# Questions - -## Que fait le code suivant? - -```C -float *p = malloc(50); -p[20] = 1.3; -``` - -. . . - -* On déclare un pointeur de floats de taille 50 octets. -* Mais il ne peut contenir que `50 / 4` floats (un float est composé de 32 bits). -* On dépasse la capacité de la mémoire allouée: comportement indéfini. - - -# Questions - -* Soit le code suivant - -```C -int *p = malloc(50 * sizeof(int)); -for (int i = 0; i < 50; ++i) { - p[i] = 0; -} -``` - -* Le réécrire en utilisant uniquement l'arithmétique de pointeurs. - -. . . - -```C -int *p = malloc(50 * sizeof(int)); -for (int i = 0; i < 50; ++i) { - *(p+i) = 0; -} -``` - -# Questions - -## Que valent les expressions suivantes? - -```C -in32_t *p = malloc(50 * sizeof(int32_t)); -sizeof(p); -sizeof(*p); -(p + 20); -*(p + 20); -p[-1]; -p[50]; -7[p]; -``` diff --git a/slides/boucles_conditions.md b/slides/boucles_conditions.md deleted file mode 100644 index 6983b5e362b709ab4a31a06f32b8a411b1a71208..0000000000000000000000000000000000000000 --- a/slides/boucles_conditions.md +++ /dev/null @@ -1,272 +0,0 @@ ---- -title: "Boucles et conditions" -date: "2022-09-27" -patat: - wrap: true - margins: - left: 10 - right: 10 ---- - -# Quiz - -\footnotesize - -## Que fait le code suivant? - -```C -#include <stdio.h> -#include <stdlib.h> -int main() { - printf("Enter n: "); - int n = 0; - scanf("%d", &n); - int res = 0; - for (int i = 0; i <= n; ++i) { - res += i; - } - printf("For = %d, the result is %d\n", n, res); - if (res != n * (n+1) / 2) { - printf("Error: the answer is wrong.\n"); - return EXIT_FAILURE; - } - return EXIT_SUCCESS; -} -``` - -# Génération d'un exécutable - -- Pour pouvoir être exécuté un code C doit être d'abord compilé (avec `gcc` ou `clang`). -- Pour un code `prog.c` la compilation "minimale" est - - ```bash - $ clang prog.c - $ ./a.out # exécutable par défaut - ``` - -- Il existe une multitude d'options de compilation: - - ```bash - $ clang -std=c11 -Wall -Wextra prog.c -o prog - ``` - 1. `-std=c11` utilisation de C11. - 2. `-Wall` et `-Wextra` activation des warnings. - 3. `-o` défini le fichier exécutable à produire en sortie. - -# Structures de contrôle: `if`{.C} .. `else if`{.C} .. `else`{.C} (1/2) - -\footnotesize - -## Syntaxe - -```C -if (expression) { - instructions; -} else if (expression) { // optionnel - // il peut y en avoir plusieurs - instructions; -} else { - instructions; // optionnel -} -``` - -```C -if (x) { // si x s'évalue à `vrai` - printf("x s'évalue à vrai.\n"); -} else if (y == 8) { // si y vaut 8 - printf("y vaut 8.\n"); -} else { - printf("Ni l'un ni l'autre.\n"); -} -``` - - -# Structures de contrôle: `continue`{.C}, `break`{.C} - -\footnotesize - -- `continue`{.C} saute à la prochaine itération d'une boucle. - - ```C - int i = 0; - while (i < 10) { - if (i == 3) { - continue; - } - printf("%d\n", i); - i += 1; - } - ``` - -- `break`{.C} quitte le bloc itératif courant d'une boucle. - - ```C - for (int i = 0; i < 10; i++) { - if (i == 3) { - break; - } - printf("%d\n", i); - } - ``` - -# La fonction `main()` (1/2) - -## Généralités - -- Point d'entrée du programme. -- Retourne le code d'erreur du programme: - - 0: tout s'est bien passé. - - Pas zéro: problème. -- La valeur de retour peut être lue par le shell qui a exécuté le programme. -- `EXIT_SUCCESS`{.C} et `EXIT_FAILURE`{.C} (de `stdlib.h`) sont des valeurs de retour **portables** de programmes C. - -# La fonction `main()` (2/2) - -## Exemple - -```C -int main() { - // ... - if (error) - return EXIT_FAILURE; - else - return EXIT_SUCCESS; -} -``` - -- Le code d'erreur est lu dans le shell avec `$?`{.bash} - -```bash -$ ./prog -$ echo $? -0 # tout s'est bien passé par exemple -$ if [ $? -eq 0 ]; then echo "OK"; else echo "ERROR"; fi -ERROR # si tout s'est mal passé -``` - -# Entrées/sorties: `printf()`{.C} (1/2) - -## Généralités - -- La fonction `printf()`{.C} permet d'afficher du texte sur le terminal: - - ```C - int printf(const char *format, ...); - ``` -- Nombre d'arguments variables. -- `format`{.C} est le texte, ainsi que le format (type) des variables à afficher. -- Les arguments suivants sont les expressions à afficher. - -# Entrées/sorties: `printf()`{.C} (2/2) - -## Exemple - -```C -#include <stdio.h> -#include <stdlib.h> -int main() { - printf("Hello world.\n"); - int val = 1; - // %d => int - printf("Hello world %d time.\n", val); - // %f => float - printf("%f squared is equal to %f.\n", - 2.5, 2.5*2.5); - // %s => string - printf("Hello world %s.\n", "Hello world"); - return EXIT_SUCCESS; -} -``` - -# Entrées/sorties: `scanf()`{.C} (1/2) - -## Généralités - -- La fonction `scanf()`{.C} permet de lire du texte formaté entré au clavier: - - ```C - int scanf(const char *format, ...); - ``` - -- `format`{.C} est le format des variables à lire (comme `printf()`{.C}). -- Les arguments suivants sont les variables où sont stockées les valeurs lues. - -# Entrées/sorties: `scanf()`{.C} (2/2) - -## Exemple - -```C -#include <stdio.h> -#include <stdlib.h> - -int main() { - printf("Enter 3 numbers: \n"); - int i, j, k; - scanf("%d %d %d", &i, &j, &k); // !!! & - printf("You entered: %d %d %d\n", i, j, k); - - return EXIT_SUCCESS; -} -``` - -# Nombres aléatoires: `rand()`, `srand()`{.C} (2/2) - -\footnotesize - -``` -$ man 3 rand -The rand() function returns a pseudo-random integer -in the range 0 to RAND_MAX inclusive (i.e., the -mathematical range [0, RAND_MAX]). -``` - -## Exemple - -```C -#include <stdio.h> -#include <stdlib.h> -#include <time.h> -int main() { - srand(0); // every run will be identical - srand(time(NULL)); // every run will be be different - for (int i = 0; i < 50; ++i) { - printf("%d\n", rand() % 50); // à quoi sert % 50? - } - return EXIT_SUCCESS; -} -``` - -# Le cas du nombre secret - -## But du programme - -* Faire chercher un nombre aléatoire, -* Le nombre est compris entre 0 et une borne max. - -## Quelles sont les étapes? - - -1. Donner une borne maximale à l'ordinateur, MAX. - -. . . - -2. Faire tirer un nombre aléatoire à l'ordinateur entre 0 et MAX-1. - -. . . - -3. Le·la joueur·se joue un nombre. - -. . . - -4. L'ordinateur vérifie la réponse: - - * Si correct le jeu est fini, - * Sinon indiquer si le nombre secret est plus grand ou plus petit et revenir à 3. - -# La fin - -1. Y a-t-il des questions? - -. . . - -2. Si oui, répondre et revenir à 1, sinon aller faire l'exercice en A432/433/406. diff --git a/slides/command_line.md b/slides/command_line.md deleted file mode 100644 index 533483e3e9dbde2fd091d8bc6c0628cc816f983a..0000000000000000000000000000000000000000 --- a/slides/command_line.md +++ /dev/null @@ -1,220 +0,0 @@ ---- -title: "Introduction à la l'interface en ligne de commande" -date: "2022-09-27" ---- - -# Introduction - -## Généralités - -* *Command line interface* (CLI) en anglais. -* Interface textuelle vers l'ordinateur. -* Peut s'appeler le *shell*, le *terminal*, la *console*, ... -* Semble obscure, mais est très pratique (automatisation de tâches, copier-coller, ...). -* Vous devrez l'utiliser tout au long de vos études. -* Existe sous Linux, MacOS, et même Windows (les commandes peuvent varier!). -* Ici on ne parlera que de *Linux*. - -# A quoi ça sert? - -## Équivalent textuel d'un GUI - -Toutes les informations obtenues avec une interface graphique, peuvent être obtenues à l'aide de la ligne de commande (liste loin d'être exhaustive): - -* Changement d'un répertoire: `cd`{.bash} -* Affichage du contenu d'un répertoire: `ls`{.bash} -* Déplacement de fichier: `mv`{.bash} -* Copie de fichier: `cp`{.bash} -* Création de répertoire: `mkdir`{.bash} -* Recherche de fichier: `find`{.bash} -* Recherche de texte dans un fichier: `grep`{.bash} -* Etc, etc, etc, etc, etc - -## Mais aussi - -* Télécharger des documents, compiler, éditer des fichiers, ... - -# Ouvrir un terminal - -\footnotesize - -Dépendant de votre distribution de Linux l'ouverture d'un terminal peut varier. - -Ce qui marche *presque* tout le temps: - -1. Appuyer sur le bouton `Super` (`Windows`) du clavier. -2. Commencer à taper "terminal". - -{width=100%} - -Raccourcis clavier: - -* `Ctrl+Alt+T`{.bash} -* `Super+T`{.bash} -* Vous pouvez customiser les raccourcis. - -# Une fois le terminal ouvert - -Vous pouvez taper des commandes puis `Entrée`. - -```bash -$ pwd -/home/orestis -``` - -Exemple: `pwd`{.bash} affiche le répertoire courant (**p**rint **w**orking **d**irectory). - -**Attention: les commandes sont sensibles à la casse!** - -Exemple: `cd`{.bash} change de répertoire (**c**hange **d**irectory). - -:::::::::::::: {.columns} - -::: {.column width="45%"} - -```bash -$ pwd -/home/orestis -$ cd .. -$ pwd -/home -``` - -::: -::: {.column width="45%"} - -```bash -$ cd orestis -$ pwd -/home/orestis -$ cd ../.. -$ pwd -/ -``` - -::: -:::::::::::::: - -# Remarque: chemins relatifs ou absolus - -Un *chemin* est relatif à moins que le chemin commence par `/` ou `~`. - -```bash -$ pwd -/home/orestis -$ cd Downloads -$ pwd -/home/orestis/Downloads -$ cd /tmp -$ pwd -/tmp -$ cd ~/Downloads -$ pwd -/home/orestis/Downloads -``` - -# Ouvrir un éditeur de texte et éditer un ficher - -* Installer un éditeur de texte: `codium`, `vim`, `nvim`, ... -* Ouvrir l'éditeur de texte (ici codium): - - ```bash - $ codium - ``` -* Écrire `Hello World!` dans le fichier et sauver sous `cours.dat`. - -* Ou alors utiliser `nano`, `vi`, `nvim`, ... - - ```bash - $ nano cours.dat - ``` -* Écrire `Hello World!` puis `Ctrl+X` et `Y`. - -# Quelques commandes utiles (1/3) - -\footnotesize - -## `mkdir`, création de répertoire - -```bash -$ mkdir tmp -$ cd tmp -$ pwd -/home/orestis/tmp -``` - -## `ls`, affiche le contenu d'un répertoire - -```bash -$ ls -Desktop Documents git Music Public tmp -Docker Downloads go Pictures Templates Videos -$ ls -ltr -... # des répertoires -drwxr-xr-x 3 orestis orestis 4096 31 aoû 09:54 Documents -drwxr-xr-x 11 orestis orestis 4096 7 sep 15:59 Downloads -drwxr-xr-x 2 orestis orestis 4096 9 sep 11:14 Pictures -drwxr-xr-x 2 orestis orestis 4096 9 sep 12:41 tmp --rw-r--r-- 1 orestis orestis 6 9 sep 12:52 cours.dat -``` - -# Quelques commandes utiles (2/3) - -## `cp`{.bash}, copie de fichiers/répertoires - -```bash -$ cp cours.dat tmp/ # cp cours.dat -> tmp -$ ls tmp # affiche le rép tmp -cours.dat -$ cp -r tmp tmp2 # option -r => recursive -$ ls -cours.dat Docker Downloads go Pictures Templates tmp2 -Desktop Documents git Music Public tmp Videos -``` - -## `mv`{.bash}, déplacement de fichiers/répertoires - -```bash -$ ls tmp -$ mv cours.dat tmp # déplace cours.dat -> tmp -$ ls tmp -cours.dat -``` - -# Quelques commandes utiles (3/3) - -## `rm`{.bash}, effacer des fichiers/répertoires - -```bash -$ ls tmp -cours.dat -$ rm tmp/cours.dat -$ ls tmp -$ rm -r tmp tmp2 -$ ls -Desktop Documents git Music Public Videos -Docker Downloads go Pictures Templates -``` - -# La touche `tab`{.bash} - -Probablement la touche la plus utile du clavier: - -* permet la complétion d'une commande. -* permet la complétion d'un nom de fichier. -* permet d'afficher les complétions possibles. - -Fait gagner un temps considérable. - -# Éditeurs de texte - -Il existe différents éditeurs de texte qui pourraient être utiles: - -* `vscode`{.bash} ou `codium`{.bash} (la version sans l'espionnage M\$) -* `vim`{.bash} -* `geany`{.bash} -* `gedit`{.bash} -* ... - -Ne vous reposez pas trop sur l'éditeur pour tout faire à votre place. - diff --git a/slides/compilation_make.md b/slides/compilation_make.md deleted file mode 100644 index 508fad1f62eb90809f780081ca3817bb570d3539..0000000000000000000000000000000000000000 --- a/slides/compilation_make.md +++ /dev/null @@ -1,403 +0,0 @@ ---- -title: "Compilation séparée et Makefile" -date: "2022-11-01" -patat: - wrap: true - margins: - left: 10 - right: 10 ---- - -# Prototypes de fonctions (1/3) - -```C -// Prototype, pas d'implémentation, juste la doc -int sum(int size, int tab[size]); -``` - -## Principes généraux de programmation - -- Beaucoup de fonctionnalités dans un code $\Rightarrow$ Modularisation. -- Modularisation du code $\Rightarrow$ écriture de fonctions. -- Beaucoup de fonctions $\Rightarrow$ regrouper les fonctions dans des fichiers séparés. - -## Mais pourquoi? - -- Lisibilité. -- Raisonnement sur le code. -- Débogage. - -## Exemple - -- Libraire `stdio.h`: `printf()`{.C}, `scanf()`{.C}, ... - -# Prototypes de fonctions (2/3) - -- Prototypes de fonctions nécessaires quand: - - 1. Utilisation de fonctions dans des fichiers séparés. - 2. Utilisation de librairies. -- Un prototype indique au compilateur la signature d'une fonction. -- On met les prototypes des fonctions **publiques** dans des fichiers *headers*, extension `.h`. -- Les *implémentations* des fonctions vont dans des fichier `.c`. - -# Prototypes de fonctions (3/3) - -## Fichier header - -- Porte l'extension `.h` -- Contient: - - définitions des types - - prototypes de fonctions - - macros - - directives préprocesseur (cf. plus loin) -- Utilisé pour décrire **l'interface** d'une librairie ou d'un module. -- Un fichier `C` (extension `.c`) utilise un header en *l'important* avec la directive `#include`{.C}: - - ```C - #include <stdio.h> // dans LD_LIBRARY_PATH - #include "chemin/du/prototypes.h" // explicite - ``` - -# Génération d'un exécutable (1/5) - -## Un seul fichier source - -{width=100%} - -# Génération d'un exécutable (2/5) - -\footnotesize - -```bash -gcc proc.c -o prog -``` - -1. **Précompilation: ** `gcc` appelle `cpp`, le préprocesseur qui effectue de la substitution de texte (`#define`, `#include`, macros, ...) et génère le code `C` à compiler, portant l'extension `.i` (`prog.i`). -2. **Compilation assembleur: ** `gcc` compile le code C en code assembleur, portant l'extension `.s` (`prog.s`). -3. **Compilation code objet: ** `gcc` appelle `as`, l'assembleur, qui compile le code assembleur en code machine (code objet) portant l'extension `.o` (`prog.o`). -4. **Édition des liens: ** `gcc` appelle `ld`, l'éditeur de liens, qui lie le code objet avec les librairies et d'autres codes objet pour produire l'exécutable final (`prog`). - -Les différents codes intermédiaires sont effacés automatiquement. - -# Génération d'un exécutable (3/5) - -## Plusieurs fichiers sources - -{width=100%} - -# Génération d'un exécutable (4/5) - -\footnotesize - -::: Main - -## `main.c` - -```C -#include <stdio.h> -#include "sum.h" -int main() { - int tab[] = {1, 2, 3, 4}; - printf("sum: %d\n", sum(tab, 4)); - return 0; -} -``` -::: - -:::::::::::::: {.columns} - -::: {.column width="45%"} - -## `sum.h` - -```C -#ifndef _SUM_H_ -#define _SUM_H_ -int sum(int tab[], int n); -#endif -``` -::: -::: {.column width="55%"} - -## `sum.c` - -```C -#include "sum.h" -int sum(int tab[], int n) { - int s = 0; - for (int i = 0; i < n; i++) { - s += tab[i]; - } - return s; -} -``` -::: - -:::::::::::::: - - -# Génération d'un exécutable (5/5) - -La compilation séparée se fait en plusieurs étapes. - -## Compilation séparée - -1. Générer séparément les fichiers `.o` avec l'option `-c`. -2. Éditer les liens avec l'option `-o` pour générer l'exécutable. - -## Exemple - -- Création des fichiers objets, `main.o` et `sum.o` - - ```bash - $ gcc -Wall -Wextra -std=c11 -c main.c - $ gcc -Wall -Wextra -std=c11 -c sum.c - ``` -- Édition des liens - - ```bash - $ gcc main.o sum.o -o prog - ``` - -# Préprocesseur (1/2) - -\footnotesize - -## Généralités - -- Première étape de la chaîne de compilation. -- Géré automatiquement par `gcc` ou `clang`. -- Lit et interprète certaines directives: - 1. Les commentaires (`//`{.C} et `/* ... */`{.C}). - 2. Les commandes commençant par `#`{.C}. -- Le préprocesseur ne compile rien, mais subtitue uniquement du texte. - -## La directive `define`{.C} - -- Permet de définir un symbole: - - ```C - #define PI 3.14159 - #define _SUM_H_ - ``` -- Permet de définir une macro. - - ```C - #define NOM_MACRO(arg1, arg2, ...) [code] - ``` - -# Préprocesseur (2/2) - -## La directive `include`{.C} - -- Permet d'inclure un fichier. -- Le contenu du fichier est ajouté à l'endroit du `#include`{.C}. -- Inclusion de fichiers "globaux" ou "locaux" - - ```C - #include <file.h> // LD_LIBRARY_PATH - #include "other_file.h" // local path - ``` -- Inclusions multiples peuvent poser problème: définitions multiples. Les headers commencent par: - - ```C - #ifndef _VAR_ - #define _VAR_ - /* commentaires */ - #endif - ``` - -# Introduction à `make` - -## A quoi ça sert? - -- Automatiser le processus de conversion d'un type de fichier à un autre, en *gérant les dépendances*. -- Effectue la conversion des fichiers qui ont changé uniquement. -- Utilisé pour la compilation: - - Création du code objet à partir des sources. - - Création de l'exécutable à partir du code objet. -- Tout "gros" projet utilise `make` (pas uniquement en `C`). - -# Utilisation de `make` - -\footnotesize - -Le programme `make` exécutera la série d'instruction se trouvant dans un `Makefile` (ou `makefile` ou `GNUmakefile`). - -## Le `Makefile` - -- Contient une liste de *règles* et *dépendances*. -- Règles et dépendances construisent des *cibles*. -- Ici utilisé pour compiler une série de fichiers sources - - ``` - $ gcc -c example.c # + plein d'options.. - $ gcc -o example exemple.o # + plein d'options - ``` - -:::::::::::::: {.columns} - -::: {.column width="55%"} - -## `Makefile` - -```bash -example: example.o - gcc -o example example.o - -exmaple.o: exmaple.c example.h - gcc -c example.c -``` -::: -::: {.column width="45%"} - -## Terminal - -```bash -$ make -gcc -c example.c -gcc -o example example.o -``` -::: -:::::::::::::: - -# Syntaxe d'un `Makefile` (1/4) - -{width=100%} - -# Syntaxe d'un `Makefile` (2/4) - -{width=100%} - -# Syntaxe d'un `Makefile` (3/4) - -{width=100%} - -# Syntaxe d'un `Makefile` (4/4) - -{width=100%} - -# Principe de fonctionnement - -1. `make` cherche le fichier `Makefile`, `makefile` ou `GNUmakefile` dans le répertoire courant. -2. Par défaut exécute la première cible, ou celle donnée en argument. -3. Décide si une cible doit être régénérée en comparant la date de modification (on recompile que ce qui a été modifié). -4. Regarde si les dépendances doivent être régénérées: - - Oui: prend la première dépendance comme cible et recommence à 3. - - Non: exécute la règle. - -`make` a un comportement **récursif**. - -# Exemple avancé - -:::::::::::::: {.columns} - -::: {.column width="55%"} - -## `Makefile` - -```bash -hello: hello.o main.o - gcc hello.o main.o -o hello - -hello.o: hello.c hello.h - gcc -Wall -Wextra -c hello.c - -main.o: main.c - gcc -Wall -Wextra -c main.c - -clean: - rm -f *.o hello - -rebuild: clean hello -``` -::: -::: {.column width="45%"} - -## Un graph complexe - -{width=100%} - -::: -:::::::::::::: - -# Factorisation - -:::::::::::::: {.columns} - -::: {.column width="55%"} -## Ancien `Makefile` - -```bash -hello: hello.o main.o - gcc hello.o main.o -o hello - -hello.o: hello.c hello.h - gcc -Wall -Wextra -c hello.c - -main.o: main.c - gcc -Wall -Wextra -c main.c - -clean: - rm -f *.o hello - -rebuild: clean hello -``` -::: -::: {.column width="45%"} - -## Nouveau `Makefile` - -```bash -CC=gcc -Wall -Wextra - -hello: hello.o main.o - $(CC) $^ -o $@ - -hello.o: hello.c hello.h - $(CC) -c $< - -main.o: main.c - $(CC) -c $< - -clean: - rm -f *.o hello - -rebuild: clean hello -``` - -::: -:::::::::::::: - -# Variables - -\footnotesize - -## Variables utilisateur - -- Déclaration - - ```bash - id = valeur - id = valeur1 valeur2 valeur3 - ``` -- Utilisation - - ```bash - $(id) - ``` -- Déclaration à la ligne de commande - - ```bash - make CFLAGS="-O3 -Wall" - ``` - -## Variables internes - -- `$@` : la cible -- `$^` : la liste des dépendances -- `$<` : la première dépendance -- `$*` : le nom de la cible sans extension - - diff --git a/slides/examen.md b/slides/examen.md deleted file mode 100644 index 16d335a491bca30a2886b4f81802bb8c36bcd7fe..0000000000000000000000000000000000000000 --- a/slides/examen.md +++ /dev/null @@ -1,113 +0,0 @@ ---- -title: "Précisions pour l'examen" -date: "2022-11-29" ---- - -# Administration - -- L'examen dure au plus 4h (il est prévu pour 3 exceptions jusqu'à 4). -- Votre code devra être dans un repo `git`. -- Chaque exercice dans un répertoire (`ex1`, `ex2`, `ex3`, `ex4`). -- Le lien vers votre git devra figurer dans la réponse à chaque exercice. -- Chaque exercice doit posséder son propre `Makefile` pour la compilation. - - Il est impératif de compiler avec les warnings et les sanitizers. - -**N'hésitez pas à préparer des templates pour que tout ça aille plus vite.** - -# Les exercices - -- Deux ou trois parties à chaque énoncé: - - Une partie "théorique" qui décrit les structures de données et fonctionnalités. - - Une partie "technique" qui propose un exemple d'exécution de votre programme avec entrées et sorties. - - Une partie "exemple" (pas obligatoire) où d'autres exemples sont donnés afin de tester l'exécution de votre programme. -- Votre code doit avoir **exactement** le comportement des exemples donnés **sous peine de sanctions**. -- Chaque code doit être **dans un unique fichier .c** (`ex1.c`, `ex2.c`, ...). - -# Évaluation (technique) - -- L'évaluation se base surtout sur des critères de fonctionnement: - - le code compile-t-il? (on regarde même pas) - - s'exécute-t-il? (on regarde un peu) - - le code demandé est-il réalisé? - - donne-t-il des résultats corrects? -- Si vous laissez des warnings ou des erreurs de sanitizers vous serez pénalisé·e·s. - -# Évaluation (style) - -- Le code est-il joli? - - Présentation (indentation cohérente, variables nommées de façon raisonnable). - - Modularité (utilisation de fonctions). - - Pas de variables globales inutiles. - - Utilisation de boucles, structures de contrôle, struct, ... - - Fonctions récursives, ... - -# Les exemples - -- Chaque exemple contient: - - un input à rentrer dans le terminal (on peut copier-coller l'input de l'énoncé). - - un output à écrire dans le terminal (on peut comparer la sortie avec celle de l'énoncé). -- La structure de l'input doit être **exactement** la même que celle décrite dans l'énoncé. -- L'output de vos exercices doit être celui de l'énoncé. - -Et maintenant place à des exemples (simplifiés)! - -# Exercice 1 - -Ce programme prend en argument deux entiers se trouvant chacun -sur une nouvelle ligne et affiche -la somme des deux entiers en argument sur une nouvelle ligne. - -## Exemple - -```bash -12 -19 - -31 -``` - -# Exercice 2 - -\footnotesize - -Ce programme prend en argument 12 nombres à virgule flottante se trouvant chacun -sur une nouvelle ligne. Multiplie chaque nombre par deux et affiche leur somme -sur une nouvelle ligne suivi de CHF. - -## Exemple - -```bash -12.2 -45.5 -1.5 -65.1 -89.4 -567.6 -112.8 -67.0 -35.1 -112.2 -3.3 -9.8 - -2243.000000 CHF -``` - -# Exercice 3 - -Ce programme prend en argument 2 chaînes de caractères sur des lignes séparées (longueur max de 80), -les sépare au milieu et retourne les 4 chaînes chacune sur une nouvelle ligne -(si la longueur N est paire on sépare en 2 chaînes de longueur N/2, sinon la première -aura une longueur de N/2 et la seconde N/2+1). - -## Exemple - -```bash -abcdefgh -asdfghjkl - -abcd -efgh -asdf -ghjkl -``` diff --git a/slides/fichiers.md b/slides/fichiers.md deleted file mode 100644 index c68ee9f735d02ed73e814cb00103d79f16b502b7..0000000000000000000000000000000000000000 --- a/slides/fichiers.md +++ /dev/null @@ -1,153 +0,0 @@ ---- -title: "Lecture/écriture de fichiers" -date: "2022-12-13" ---- - -# Les fichier en C - -* Un fichier en C est représenté par un pointeur de fichier. - - ```C - #include <stdio.h> - FILE *fp; - ``` -* `FILE *`{.C} est une structure de donnée *opaque* contenant les informations sur l'état du fichier. -* Il est manipulé à l'aide de fonctions dédiées. -* Le pointeur de fichier est toujours passé *par copie*. - - -# Manipulations de fichier - -* Pour lire/écrire dans un fichier il faut toujours effectuer trois étapes: - 1. Ouvrir le fichier (`fopen()`{.C}). - 2. Écrire/lire dans le fichier (`fgets()`{.C}, `fputs()`{.C}, `fread()`{.C}, `fwrite()`{.C}, ...). - 3. Fermer le fichier (`fclose()`{.C}). -* Nous allons voir brièvement ces trois étapes. - -# Ouverture d'un fichier - -* L'ouverture d'un fichier se fait avec la fonction `fopen()`{.C} - - ```C - FILE *fp = fopen(filename, mode); - ``` -* `filename`{.C} est une chaîne de caractères (incluant le chemin). -* `mode`{.C} est le mode d'ouverture (`"r"`{.C}, `"w"`{.C}, ... voir `man 3 fopen`{.bash}) qui est une chaîne de caractères. -* Si l'ouverture échoue (pas la bonne permission, ou n'existe pas) `fopen()`{.C} retourne `0`. -* **Toujours** tester le retour de `fopen()`{.C} - - ```C - if (NULL == fp) { - fprintf(stderr, "Can't open output file %s!\n", - filename); // affiche dans le canal d'erreur - exit(EXIT_FAILURE); - } - ``` - -# Fermeture d'un fichier - -* Il faut **toujours** fermer un fichier à l'aide de `fclose()`{.C} - - ```C - FILE *fp = fopen("mon_fichier", "w"); - // écritures diverses - fclose(fp); - ``` -* Les données sont transférées dans une mémoire tampon, puis dans le disques. -* Si la mémoire tampon est pleine, le fichier est fermé, ... les données sont écrites sur le disque. -* Si la mémoire tampon contient encore des données à la fin du programme les données sont **perdues**. - -# Lecture d'un fichier (1/2) - -```C -char *fgets(char *s, int size, FILE *stream) -``` - -* Lit une ligne de taille d'au plus `size-1` et la stocke dans `s`, depuis `stream`. -* Retourne `s` ou `NULL` si échoue. - -```C -FILE *fp = fopen("text.txt", "r"); -char buffer[100]; -fgets(buffer, 37, fp); -// lit 36 caractères au plus et les écrit dans buffer -// s'arrête si rencontre EOF, ou "\n". -// ajoute un "\0" terminal -fclose(fp); -``` - -# Lecture d'un fichier (2/2) - -```C -size_t fread(void *ptr, size_t size, size_t nmemb, - FILE *stream) -``` - -* Lit `nmemb` éléments de taille `size` octets et les écrit à l'adresse `ptr` dans le fichier `stream`. -* Retourne le nombre d'éléments lus. - - ```C - FILE *fp = fopen("doubles.bin", "rb"); - double buffer[100]; - size_t num = fread(buffer, sizeof(double), 4, fp); - // lit 4 double, se trouvant dans le fichier fp au - // format binaire et les écrit dans buffer, puis - // retourne 4 - fclose(fp); - ``` - -# Écriture dans un fichier (1/2) - -```C -int fprintf(FILE *stream, const char *format, ...) -``` - -* Écrit la chaîne de caractères `format` dans le fichier stream. -* `format` a la même syntaxe que pour `printf()`. -* Retourne le nombre de caractères écrit sans le `\0` terminal(si réussite). - - ```C - FILE *fp = fopen("text.txt", "w"); - fprintf(fp, "Hello world! We are in %d\n", 2020); - // Écrit "Hello world! We are in 2020" - // dans le fichier fp - fclose(fp); - ``` - -# Écriture dans un fichier (2/2) - -```C -size_t fwrite(const void *ptr, size_t size, - size_t nmemb, FILE *stream) -``` - -* Écrit `nmemb` éléments de taille `size` octets se trouvant à l'adresse `ptr` dans le fichier `stream`. -* Retourne le nombre d'éléments écrits. - - ```C - FILE *fp = fopen("doubles.bin", "wb"); - double buffer[] = {1.0, 2.0, 3.0, 7.0}; - size_t num = fwrite(buffer, sizeof(double), 4, fp); - // écrit 4 double, se trouvant à l'adresse - // buffer dans le fichier fp au format binaire - // retourne 4 - fclose(fp); - ``` - -# Les pointeurs de fichiers spéciaux - -* Il existe trois `FILE *`{.C} qui existent pour tout programme: - * `stdin`{.C}: l'entrée standard. - * `stdout`{.C}: la sortie standard. - * `stderr`{.C}: l'erreur standard. -* Lors d'un fonctionnement dans le terminal: - * l'entrée standard est le *clavier* - * la sortie et erreur standard sont affichés dans le *terminal*. -* Ainsi on a - - ```C - fprintf(stdout, "texte\n"); // == printf("texte\n"); - int a; - fscanf(stdin, "%d", &a); // == scanf("%d", &a); - ``` - diff --git a/slides/figs/comm_dec.svg b/slides/figs/comm_dec.svg deleted file mode 100644 index 1227e39333374d2a169e2a8fd4bced3fff37bb28..0000000000000000000000000000000000000000 --- a/slides/figs/comm_dec.svg +++ /dev/null @@ -1,2180 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:ns9="http://www.iki.fi/pav/software/textext/" - 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="247.50845mm" - height="180.35251mm" - viewBox="0 0 247.50845 180.35251" - version="1.1" - id="svg8" - sodipodi:docname="comm_dec.svg" - inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"> - <defs - id="defs2"> - <marker - style="overflow:visible" - id="Arrow2Mend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend" - inkscape:isstock="true"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1928" /> - </marker> - <g - id="id-f8174aac-ad5c-4932-a4ec-9b499f827ffa-7"> - <symbol - overflow="visible" - id="id-02549e56-0669-4ba5-aa26-2d0dcedf80d3-5"> - <path - style="stroke:none" - d="" - id="id-a0b7337f-0bc6-4f3d-bbf3-c9c180ea3d9c-3" /> - </symbol> - <symbol - overflow="visible" - id="id-3853f986-671d-47c5-9eef-c00987c34683-5"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-01abbed0-f176-4dfd-8fac-14355516243c-6" /> - </symbol> - <symbol - overflow="visible" - id="id-d7a0fadb-3199-485f-9210-d6a1e34647ad-2"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-e78f1e4f-2ea5-4d8c-a5a1-78eb98353e8d-9" /> - </symbol> - <symbol - overflow="visible" - id="id-98eb4a68-83b0-4085-930f-dd08fa3250a9-1"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-a69f3ade-a543-40e8-b006-ec8fb36e896e-2" /> - </symbol> - <symbol - overflow="visible" - id="id-6e03188e-9f0f-45d9-904e-5c7785d806f3-7"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-e8569463-af97-44ff-a668-9cd73c5ca5cb-0" /> - </symbol> - <symbol - overflow="visible" - id="id-63d91381-ebf6-410f-b971-d86513214146-9"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-9d5e19c5-742b-420b-9289-3e4482e96cf9-3" /> - </symbol> - <symbol - overflow="visible" - id="id-1b9326e5-d636-4429-86eb-40c982b722ac-6"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-3e9a481c-47a4-4f6d-9b23-1147a43b5f40-0" /> - </symbol> - <symbol - overflow="visible" - id="id-d10288e0-f8a7-47ef-888d-2d6020351ce7-6"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-ed46b135-eb1c-435e-ab16-5216081cf5dc-2" /> - </symbol> - </g> - <g - id="id-9235f262-7716-445d-8b70-6d8222df835b-1"> - <symbol - overflow="visible" - id="id-4a2eef38-d001-4887-a9dc-a52fea777abe-9"> - <path - style="stroke:none" - d="" - id="id-98945a5a-c48b-4af3-be0b-25be3ae16f4d-4" /> - </symbol> - <symbol - overflow="visible" - id="id-5b8593d3-7c71-4209-9b07-85bf85ce1130-7"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-225c7849-66d3-48b6-baf5-9a77d998e1df-8" /> - </symbol> - <symbol - overflow="visible" - id="id-e28672cb-bad5-443b-b1a2-d752bbee6823-4"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-d5557d00-ba7a-4c9d-ac96-d091d1b51e30-5" /> - </symbol> - <symbol - overflow="visible" - id="id-3cac2d03-14ff-4dbe-b998-74d0c72dbb0f-0"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-3e0ff04b-d243-4806-b818-8c25d86b048b-3" /> - </symbol> - <symbol - overflow="visible" - id="id-60a58545-8a2a-4d2f-81ea-46490660362e-6"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-2ae00885-f3d6-4513-8a20-5889c4a674a8-1" /> - </symbol> - <symbol - overflow="visible" - id="id-c10d4867-f507-40e2-be18-8a24608c6b9c-0"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-63a90d91-00d7-4636-a709-271b863af929-6" /> - </symbol> - <symbol - overflow="visible" - id="id-8cb3709f-c85a-45fc-b34a-2e858c3835a2-3"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-0a736b19-1ce9-4330-b562-2c1422ba713a-2" /> - </symbol> - <symbol - overflow="visible" - id="id-1abdfd76-5dd1-4421-8c68-d84c97e268ea-0"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-cbdcbc1b-b5ad-4234-a022-f1de6b179a21-6" /> - </symbol> - <symbol - overflow="visible" - id="id-19d6475b-d1f6-4c4a-bcd4-c98f569e10ae-1"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ec00f810-b9d1-481f-b974-a64b75eca8fb-5" /> - </symbol> - <symbol - overflow="visible" - id="id-2e6ea5ed-23be-422c-8038-3f0677cb7567-5"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7df17f-28f6-46f4-9a64-643d3493e550-4" /> - </symbol> - <symbol - overflow="visible" - id="id-a61a7f3a-1146-43cd-b104-d3830cc9c2b9-7"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-9dfa3fec-f0f9-47a5-82d9-df5582dc6bbc-6" /> - </symbol> - </g> - <marker - style="overflow:visible" - id="Arrow2Mend-2" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0" /> - </marker> - <g - id="g1071-3"> - <symbol - overflow="visible" - id="symbol1041-3"> - <path - style="stroke:none" - d="" - id="path1039-8" /> - </symbol> - <symbol - overflow="visible" - id="symbol1045-0"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path1043-5" /> - </symbol> - <symbol - overflow="visible" - id="symbol1049-6"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path1047-6" /> - </symbol> - <symbol - overflow="visible" - id="symbol1053-4"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path1051-0" /> - </symbol> - <symbol - overflow="visible" - id="symbol1057-0"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path1055-4" /> - </symbol> - <symbol - overflow="visible" - id="symbol1061-6"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path1059-2" /> - </symbol> - <symbol - overflow="visible" - id="symbol1065-6"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path1063-7" /> - </symbol> - <symbol - overflow="visible" - id="symbol1069-5"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path1067-6" /> - </symbol> - </g> - <g - id="id-c8d83638-102d-44ff-8c06-a55d6f07b75b-9"> - <symbol - overflow="visible" - id="id-9b155284-1a0d-465d-8495-64ebfd21de1b-1"> - <path - style="stroke:none" - d="" - id="id-56aa8a4b-10f2-425c-b2c8-7bfc8b62e045-0" /> - </symbol> - <symbol - overflow="visible" - id="id-81a45f13-e35f-4531-8d20-f35498476473-7"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-e8933d04-3dc1-4eeb-9a0f-4c428c715335-5" /> - </symbol> - <symbol - overflow="visible" - id="id-7b905d47-0186-40ad-8cfa-bcae1dc5e34b-8"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-dc5fbb16-8ca5-4d26-bcb4-08f1fbaa9765-7" /> - </symbol> - <symbol - overflow="visible" - id="id-cf548c0a-9029-411b-aeb1-045b106a228a-0"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-50578384-cfff-4729-8789-83071309561b-4" /> - </symbol> - <symbol - overflow="visible" - id="id-9d77210e-870d-47a6-8786-baafa66c775c-8"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-1642258b-a226-4328-8301-24e60b25b1b5-0" /> - </symbol> - <symbol - overflow="visible" - id="id-c78b8111-292d-48cc-92fb-b6c198275310-4"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-67425214-b1dd-4e79-a201-4d040aed24c6-2" /> - </symbol> - <symbol - overflow="visible" - id="id-5b6a9a20-9574-4e11-a3ef-966efd4ffae9-9"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-37ae4ad7-f355-494d-858f-e2dd3b7f9a48-6" /> - </symbol> - <symbol - overflow="visible" - id="id-7d2c8f88-eb2f-4c87-8c22-e345460793f9-1"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-254d1903-898d-4640-abb5-037fd9542e4b-0" /> - </symbol> - <symbol - overflow="visible" - id="id-65b3b2be-21d8-4445-87d0-008e467778e0-4"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-7eab465a-6185-4f0b-9758-c284d3c18d85-2" /> - </symbol> - <symbol - overflow="visible" - id="id-95c3509a-65e0-4853-87cf-21c2ebf0bbe3-2"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7c5b59-65d2-41d9-85e0-6dec363ba4f0-2" /> - </symbol> - <symbol - overflow="visible" - id="id-89e96fd9-13b3-407f-8f00-702296599510-0"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-19f4c14e-0937-4967-87bd-3b8976063479-5" /> - </symbol> - </g> - <marker - style="overflow:visible" - id="Arrow2Mend-0" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-2" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-4" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-0-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-2-4" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-9-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-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.35" - inkscape:cx="767.7547" - inkscape:cy="642.9717" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - inkscape:document-rotation="0" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1013" - inkscape:window-x="0" - inkscape:window-y="39" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(10.703373,-20.503726)"> - <g - transform="matrix(1.27005,0,0,1.27005,-10.703532,189.42595)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="Une copie compl\\`ete du projet par ordinateur" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:jacobian_sqrt="1.27005" - id="g3785"> - <defs - id="id-19c52f77-0e5b-46ee-9a58-e54579bf0fd2"> - <g - id="id-219e6f5a-608f-4ce8-963d-3a2d69bdf0b9"> - <symbol - overflow="visible" - id="id-9024c197-73d2-4245-9a8d-4380d7b82aed"> - <path - style="stroke:none" - d="" - id="id-f77c4782-3adc-4702-a506-7d3965fd5359" /> - </symbol> - <symbol - overflow="visible" - id="id-c71b2e8a-4e38-494d-b3af-8aced6a37463"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-82aa7e0c-b535-43a4-814d-aced181e6ec0" /> - </symbol> - <symbol - overflow="visible" - id="id-6b96b67b-50fa-4458-a98e-9f76200cdac1"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-67d99372-9f9a-43d9-a6ef-0b59efc5a3d5" /> - </symbol> - <symbol - overflow="visible" - id="id-86f26412-be0f-4abd-bd8d-7caabd36af45"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-8b0290f0-aeba-472d-93d7-10aa08ad4d74" /> - </symbol> - <symbol - overflow="visible" - id="id-9e1a7498-6fce-48b3-9034-844e39b1a3cc"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-7113a060-c2c2-43e3-9a9f-7346328573d3" /> - </symbol> - <symbol - overflow="visible" - id="id-e6959e67-9e3f-4e8d-bcd1-81b5de189da5"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-c0501ce0-ee95-468f-9723-d0d7b0772d3e" /> - </symbol> - <symbol - overflow="visible" - id="id-55a833b5-eb1b-4a91-bac0-14edf0c27904"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f171d28a-5dbb-4ac4-99ac-77c8ee9b2205" /> - </symbol> - <symbol - overflow="visible" - id="id-0219fb51-6a1d-4055-b513-5a28f534080b"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-845f167a-1149-421c-b97b-6b2b4c6a50ce" /> - </symbol> - <symbol - overflow="visible" - id="id-97d5b0e3-5fe9-4991-871c-bffeae8a7ad2"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-8ac2ba68-f636-49fc-8cf5-9913f0aa0554" /> - </symbol> - <symbol - overflow="visible" - id="id-f75b7606-73e5-4c0c-a2f6-dc3c74181a49"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-c826fbda-4428-462e-ad21-2817567fdf2c" /> - </symbol> - <symbol - overflow="visible" - id="id-b792b39e-fcf6-4a9f-8286-063100ac485d"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-7ee2fe09-452e-48e6-b629-e19df8949e6d" /> - </symbol> - <symbol - overflow="visible" - id="id-fb0432a3-e288-4136-954b-d3bd2298d2f7"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-edeb88d5-c151-4739-9f83-4f1231629550" /> - </symbol> - <symbol - overflow="visible" - id="id-fb385e0f-ab44-46d9-8910-3e44d1f9a494"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-52b6bbee-1362-41b8-a074-e916ffa4c278" /> - </symbol> - <symbol - overflow="visible" - id="id-3e91850b-7f50-4a6d-9805-f6fc0dc3bed1"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-d279ee1e-4b56-45c6-9cba-288711690f78" /> - </symbol> - <symbol - overflow="visible" - id="id-5b5e50f7-6a59-4487-ad62-22733af34553"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-975cb9fa-d3c9-49fd-afa7-88cacd94a3dc" /> - </symbol> - <symbol - overflow="visible" - id="id-c2125298-800d-4bf5-9a07-2d54a7d2691b"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-e03baf73-4cb3-46f0-9cba-505a19e1aa3b" /> - </symbol> - <symbol - overflow="visible" - id="id-f692fd1c-88cc-4ca0-a098-eec3ceebacbb"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-2c4ce0de-6e34-45ae-9b3b-172e0497b727" /> - </symbol> - </g> - </defs> - <g - id="id-1be4cec7-e480-45f6-b6b1-383ba5c2d0af" - transform="translate(-149.04,-127.812)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-a3cc06f6-c430-491c-a59b-e24c212945b5"> - <g - transform="translate(148.712,134.765)" - id="g3660"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-2e0ad103-38cf-4a8b-89e3-7d683499cee0" /> - </g> - <g - transform="translate(156.184,134.765)" - id="g3663"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-d0024700-e6c1-479c-acb0-ccb2c62ca0b3" /> - </g> - <g - transform="translate(161.719,134.765)" - id="g3666"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-ec563eb1-45e8-471b-bcd6-e1aecd6e1dcc" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-9be1d7b1-6e81-4853-bbc4-72c5e332f72c"> - <g - transform="translate(169.464,134.765)" - id="g3670"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-321cc7f9-aeb5-492d-a2a5-59a5037d0c73" /> - </g> - <g - transform="translate(173.891,134.765)" - id="g3673"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-95013b54-a173-4cad-9c67-fb03ae2739b3" /> - </g> - <g - transform="translate(178.873,134.765)" - id="g3676"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-b5bcf778-1a4c-43f4-8db0-e9a3bf38d1f1" /> - </g> - <g - transform="translate(184.408,134.765)" - id="g3679"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-3b188f16-0133-4a66-9c9f-271bf5f3d3f2" /> - </g> - <g - transform="translate(187.176,134.765)" - id="g3682"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-f62626f9-c56f-4251-8260-46d0bd7ab446" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-c97b61ec-2e88-448d-bc39-db00e86763f4"> - <g - transform="translate(194.93,134.765)" - id="g3686"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-93bdb93b-29f3-4f52-84fe-0ed5e84d6d67" /> - </g> - <g - transform="translate(199.358,134.765)" - id="g3689"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-d9411857-a5d0-4b33-acc8-b2f06273b9ad" /> - </g> - <g - transform="translate(204.339,134.765)" - id="g3692"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-7236f929-405e-41a4-8af7-4cca2c86d5be" /> - </g> - <g - transform="translate(212.641,134.765)" - id="g3695"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-770c3f91-1bde-44f2-9770-65731661e7ef" /> - </g> - <g - transform="translate(218.176,134.765)" - id="g3698"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-1d562c98-cc14-44bb-af91-8dd41d22b896" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-a89aef1f-2c30-459d-8cd3-c1fcfcfd17c8"> - <g - transform="translate(220.665,134.765)" - id="g3702"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-24ac5922-031d-420b-85e2-b9296c025fe7" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-2e87fadc-bcc5-46c5-b718-214d2079f4a3"> - <g - transform="translate(220.944,134.765)" - id="g3706"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-9c9b32f6-74f7-476f-a86e-9386f2fd2117" /> - </g> - <g - transform="translate(225.371,134.765)" - id="g3709"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-4464a990-ddc8-40d7-be0f-3d5324462297" /> - </g> - <g - transform="translate(229.246,134.765)" - id="g3712"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-d25507db-7670-4b7b-9ac6-f8c62016f2fe" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-ef786d83-5d1c-4604-8ea7-239e5b9a35bc"> - <g - transform="translate(236.991,134.765)" - id="g3716"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-6e93545b-8a06-47bd-bcf9-979aaa4e885b" /> - </g> - <g - transform="translate(242.526,134.765)" - id="g3719"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-79d93003-b0f3-46a0-ab71-4642e444b4c9" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-1ebd31a7-956a-404c-8750-5df8ddef3088"> - <g - transform="translate(251.379,134.765)" - id="g3723"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-9648819c-4a50-4def-95a8-ad50f2217960" /> - </g> - <g - transform="translate(256.914,134.765)" - id="g3726"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-eb166778-b828-4d16-a639-63e0d60855c0" /> - </g> - <g - transform="translate(260.816,134.765)" - id="g3729"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-1c3322dc-85e4-4a67-ab59-e4e30653f4eb" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-35208bba-57db-414e-a5ca-9750ebae0d09"> - <g - transform="translate(266.355,134.765)" - id="g3733"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-d0d21597-f090-4fcf-9a4c-2e7e4d736c71" /> - </g> - <g - transform="translate(269.4,134.765)" - id="g3736"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-0f740ecf-749f-4b5b-81f7-ef20d925fc38" /> - </g> - <g - transform="translate(273.827,134.765)" - id="g3739"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-5861e575-4972-4c03-bbbb-c1c80e51478c" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-2afe4943-82e8-41f6-a654-59be33a5a11e"> - <g - transform="translate(281.019,134.765)" - id="g3743"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f3a425bd-49ac-404f-bdd6-29dc350a7e18" /> - </g> - <g - transform="translate(286.555,134.765)" - id="g3746"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-b652386c-d60b-420f-9632-59c85e0c5fb9" /> - </g> - <g - transform="translate(291.536,134.765)" - id="g3749"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-57bfcb74-5693-48ad-b5aa-2d7291ceb3d3" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-f07e425b-e979-4189-95d1-11dbb0ec048d"> - <g - transform="translate(298.766,134.765)" - id="g3753"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-b3abd7f3-af1f-4f03-9512-2fa65d810bfa" /> - </g> - <g - transform="translate(303.747,134.765)" - id="g3756"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-a9cc54f0-b7f6-453e-a7da-5315c310f6c5" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-986dc27a-05fc-45b8-ae4a-2aaeb601a0ca"> - <g - transform="translate(307.639,134.765)" - id="g3760"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-2f2569f8-d8c5-4c21-adbe-3c530c95da34" /> - </g> - <g - transform="translate(313.175,134.765)" - id="g3763"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-aedb9da9-a229-47d7-9876-54c000658c7c" /> - </g> - <g - transform="translate(315.942,134.765)" - id="g3766"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-b5065713-54f6-4465-accc-23b748e3fa1e" /> - </g> - <g - transform="translate(321.477,134.765)" - id="g3769"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-5fc3e305-a809-4c34-8496-21fb6d9b7db3" /> - </g> - <g - transform="translate(326.459,134.765)" - id="g3772"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-fbec162b-611a-4205-a594-e1faa4638bb9" /> - </g> - <g - transform="translate(330.333,134.765)" - id="g3775"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-23a2377e-a517-479e-8e30-11096b7ecd77" /> - </g> - <g - transform="translate(334.761,134.765)" - id="g3778"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-3744c87e-08de-4c27-98b4-2760d68f9c09" /> - </g> - <g - transform="translate(340.296,134.765)" - id="g3781"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-920d5723-170c-47b8-b48e-729666d2128d" /> - </g> - </g> - </g> - </g> - <g - id="g7914"> - <g - id="g2466"> - <rect - style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect926" - width="76.157028" - height="47.067635" - x="0.025201803" - y="38.689198" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,12.111322,58.714071)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002"> - <g - id="id-f8174aac-ad5c-4932-a4ec-9b499f827ffa"> - <symbol - overflow="visible" - id="id-02549e56-0669-4ba5-aa26-2d0dcedf80d3"> - <path - style="stroke:none" - d="" - id="id-a0b7337f-0bc6-4f3d-bbf3-c9c180ea3d9c" /> - </symbol> - <symbol - overflow="visible" - id="id-3853f986-671d-47c5-9eef-c00987c34683"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-01abbed0-f176-4dfd-8fac-14355516243c" /> - </symbol> - <symbol - overflow="visible" - id="id-d7a0fadb-3199-485f-9210-d6a1e34647ad"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-e78f1e4f-2ea5-4d8c-a5a1-78eb98353e8d" /> - </symbol> - <symbol - overflow="visible" - id="id-98eb4a68-83b0-4085-930f-dd08fa3250a9"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-a69f3ade-a543-40e8-b006-ec8fb36e896e" /> - </symbol> - <symbol - overflow="visible" - id="id-6e03188e-9f0f-45d9-904e-5c7785d806f3"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-e8569463-af97-44ff-a668-9cd73c5ca5cb" /> - </symbol> - <symbol - overflow="visible" - id="id-63d91381-ebf6-410f-b971-d86513214146"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-9d5e19c5-742b-420b-9289-3e4482e96cf9" /> - </symbol> - <symbol - overflow="visible" - id="id-1b9326e5-d636-4429-86eb-40c982b722ac"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-3e9a481c-47a4-4f6d-9b23-1147a43b5f40" /> - </symbol> - <symbol - overflow="visible" - id="id-d10288e0-f8a7-47ef-888d-2d6020351ce7"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-ed46b135-eb1c-435e-ab16-5216081cf5dc" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f" - transform="translate(-134.19,-128.609)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2"> - <g - transform="translate(133.768,134.765)" - id="g855"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.2700482,0,0,1.2700482,-0.87199953,20.503891)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nordinateur 1\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g1338"> - <defs - id="id-8730ea57-07c1-46dc-83a1-9bbc96f4239d"> - <g - id="id-9235f262-7716-445d-8b70-6d8222df835b"> - <symbol - overflow="visible" - id="id-4a2eef38-d001-4887-a9dc-a52fea777abe"> - <path - style="stroke:none" - d="" - id="id-98945a5a-c48b-4af3-be0b-25be3ae16f4d" /> - </symbol> - <symbol - overflow="visible" - id="id-5b8593d3-7c71-4209-9b07-85bf85ce1130"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-225c7849-66d3-48b6-baf5-9a77d998e1df" /> - </symbol> - <symbol - overflow="visible" - id="id-e28672cb-bad5-443b-b1a2-d752bbee6823"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-d5557d00-ba7a-4c9d-ac96-d091d1b51e30" /> - </symbol> - <symbol - overflow="visible" - id="id-3cac2d03-14ff-4dbe-b998-74d0c72dbb0f"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-3e0ff04b-d243-4806-b818-8c25d86b048b" /> - </symbol> - <symbol - overflow="visible" - id="id-60a58545-8a2a-4d2f-81ea-46490660362e"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-2ae00885-f3d6-4513-8a20-5889c4a674a8" /> - </symbol> - <symbol - overflow="visible" - id="id-c10d4867-f507-40e2-be18-8a24608c6b9c"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-63a90d91-00d7-4636-a709-271b863af929" /> - </symbol> - <symbol - overflow="visible" - id="id-8cb3709f-c85a-45fc-b34a-2e858c3835a2"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-0a736b19-1ce9-4330-b562-2c1422ba713a" /> - </symbol> - <symbol - overflow="visible" - id="id-1abdfd76-5dd1-4421-8c68-d84c97e268ea"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-cbdcbc1b-b5ad-4234-a022-f1de6b179a21" /> - </symbol> - <symbol - overflow="visible" - id="id-19d6475b-d1f6-4c4a-bcd4-c98f569e10ae"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ec00f810-b9d1-481f-b974-a64b75eca8fb" /> - </symbol> - <symbol - overflow="visible" - id="id-2e6ea5ed-23be-422c-8038-3f0677cb7567"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7df17f-28f6-46f4-9a64-643d3493e550" /> - </symbol> - <symbol - overflow="visible" - id="id-a61a7f3a-1146-43cd-b104-d3830cc9c2b9"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-9dfa3fec-f0f9-47a5-82d9-df5582dc6bbc" /> - </symbol> - </g> - </defs> - <g - id="id-0b6106ff-62fd-4836-a36d-6925b58f8596" - transform="translate(-134.331,-128.562)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-4c60f90c-82ee-425d-b510-4f5c4e1be5f7"> - <g - transform="translate(133.768,134.765)" - id="g1303"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-74b1b0b2-3cf1-4834-9bf2-857500dca4ff" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g1306"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-97a8709c-591c-4b54-9149-13eb0f911fa5" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g1309"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-e1ec4dbc-907e-471d-bf95-941690516957" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g1312"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-39b56425-152c-437d-a654-a6094116ddc6" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g1315"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-f7622ffc-7b10-42f0-92dd-8b43184b0633" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g1318"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-34a90f37-29d8-4d5c-8cab-cd5650a8ea83" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g1321"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-ab327b75-0d98-40d8-87f5-7e0261469a1e" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g1324"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ba60f49d-dcb4-47a3-affa-da1cd7b3e074" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g1327"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-2fba6efc-a7f2-492e-acec-ca929ef2a5fa" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g1330"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-b842ff49-735f-4640-bd06-ed0a7d512cd4" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-5f491e9a-f762-4148-9d5e-6b1920777159"> - <g - transform="translate(191.302,134.765)" - id="g1334"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-f051db94-0839-4827-80b6-1a6b909fbc97" /> - </g> - </g> - </g> - </g> - </g> - <g - id="g2374" - transform="translate(16.520271)"> - <rect - style="fill:#01ff00;fill-opacity:1;stroke:#000000;stroke-width:1" - id="rect926-2" - width="76.157028" - height="47.067635" - x="133.21063" - y="38.689198" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,145.29675,58.714071)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883-3" - style="fill:#010000;fill-opacity:1"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002-6"> - <g - id="g1071"> - <symbol - overflow="visible" - id="symbol1041"> - <path - style="stroke:none" - d="" - id="path1039" /> - </symbol> - <symbol - overflow="visible" - id="symbol1045"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path1043" /> - </symbol> - <symbol - overflow="visible" - id="symbol1049"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path1047" /> - </symbol> - <symbol - overflow="visible" - id="symbol1053"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path1051" /> - </symbol> - <symbol - overflow="visible" - id="symbol1057"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path1055" /> - </symbol> - <symbol - overflow="visible" - id="symbol1061"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path1059" /> - </symbol> - <symbol - overflow="visible" - id="symbol1065"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path1063" /> - </symbol> - <symbol - overflow="visible" - id="symbol1069"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path1067" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f-6" - transform="translate(-134.19,-128.609)" - style="fill:#010000;fill-opacity:1"> - <g - style="fill:#010000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2-1"> - <g - transform="translate(133.768,134.765)" - id="g855-8" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c-7" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939-2" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861-0" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa-2" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864-3" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe-7" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867-5" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b-9" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870-2" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14-2" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873-8" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a-9" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876-7" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f-3" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879-6" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71-1" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.27005,0,0,1.27005,132.12485,20.503885)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nordinateur 2\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:jacobian_sqrt="1.27005" - id="g1833"> - <defs - id="id-a3164f61-7e4f-4a2e-ace3-3a4d48c7c804"> - <g - id="id-c8d83638-102d-44ff-8c06-a55d6f07b75b"> - <symbol - overflow="visible" - id="id-9b155284-1a0d-465d-8495-64ebfd21de1b"> - <path - style="stroke:none" - d="" - id="id-56aa8a4b-10f2-425c-b2c8-7bfc8b62e045" /> - </symbol> - <symbol - overflow="visible" - id="id-81a45f13-e35f-4531-8d20-f35498476473"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-e8933d04-3dc1-4eeb-9a0f-4c428c715335" /> - </symbol> - <symbol - overflow="visible" - id="id-7b905d47-0186-40ad-8cfa-bcae1dc5e34b"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-dc5fbb16-8ca5-4d26-bcb4-08f1fbaa9765" /> - </symbol> - <symbol - overflow="visible" - id="id-cf548c0a-9029-411b-aeb1-045b106a228a"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-50578384-cfff-4729-8789-83071309561b" /> - </symbol> - <symbol - overflow="visible" - id="id-9d77210e-870d-47a6-8786-baafa66c775c"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-1642258b-a226-4328-8301-24e60b25b1b5" /> - </symbol> - <symbol - overflow="visible" - id="id-c78b8111-292d-48cc-92fb-b6c198275310"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-67425214-b1dd-4e79-a201-4d040aed24c6" /> - </symbol> - <symbol - overflow="visible" - id="id-5b6a9a20-9574-4e11-a3ef-966efd4ffae9"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-37ae4ad7-f355-494d-858f-e2dd3b7f9a48" /> - </symbol> - <symbol - overflow="visible" - id="id-7d2c8f88-eb2f-4c87-8c22-e345460793f9"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-254d1903-898d-4640-abb5-037fd9542e4b" /> - </symbol> - <symbol - overflow="visible" - id="id-65b3b2be-21d8-4445-87d0-008e467778e0"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-7eab465a-6185-4f0b-9758-c284d3c18d85" /> - </symbol> - <symbol - overflow="visible" - id="id-95c3509a-65e0-4853-87cf-21c2ebf0bbe3"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7c5b59-65d2-41d9-85e0-6dec363ba4f0" /> - </symbol> - <symbol - overflow="visible" - id="id-89e96fd9-13b3-407f-8f00-702296599510"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-19f4c14e-0937-4967-87bd-3b8976063479" /> - </symbol> - </g> - </defs> - <g - id="id-ad1db265-4fe7-40b0-a594-2c5ec165c97d" - transform="translate(-134.331,-128.562)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-36133cd2-e4b4-4f2e-bdaa-8980feec5cd4"> - <g - transform="translate(133.768,134.765)" - id="g1798"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-c2362df4-32a2-4edf-9f70-7e6779a1a78c" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g1801"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-093c8cc2-841c-490c-adeb-aa7a82231e71" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g1804"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-e2bafd2f-bc58-4887-91fc-0576c53e531c" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g1807"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-f0d3e627-37f6-4c98-879e-690d7e9e904c" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g1810"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-a2f06ed4-f266-45dc-88b1-b128a0de91f7" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g1813"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-9656a770-9cca-4c9a-95ce-656bf45b2dd8" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g1816"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-3f0e3efe-eef3-4e28-9df6-d1f289f19965" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g1819"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-4cef91b1-603e-410e-b16a-d06f5bdb3cce" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g1822"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-db2db3da-eda8-46e4-bb0b-117602486d6d" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g1825"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-85654308-08ad-446a-aa3e-4f4dc3160ae6" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-a3ccdfcd-87fc-432d-aea2-afab0c116cd7"> - <g - transform="translate(191.302,134.765)" - id="g1829"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-262a06b2-c112-4ec9-824e-5c838085581a" /> - </g> - </g> - </g> - </g> - </g> - <g - id="g2506" - transform="translate(9.7769065)"> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend)" - d="m 75.21791,49.926605 h 54.41166" - id="path1905" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-2)" - d="M 131.14141,70.190322 H 76.729745" - id="path1905-6" /> - </g> - <g - id="g7336" - transform="translate(0,10.026451)"> - <rect - style="fill:#ff7500;fill-opacity:1;stroke:#000000;stroke-width:1" - id="rect926-2-9" - width="76.157028" - height="47.067635" - x="75.950256" - y="117.31562" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,88.036376,137.34049)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883-3-6" - style="fill:#010000;fill-opacity:1"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002-6-9"> - <g - id="g6505"> - <symbol - overflow="visible" - id="symbol6475"> - <path - style="stroke:none" - d="" - id="path6473" /> - </symbol> - <symbol - overflow="visible" - id="symbol6479"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path6477" /> - </symbol> - <symbol - overflow="visible" - id="symbol6483"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path6481" /> - </symbol> - <symbol - overflow="visible" - id="symbol6487"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path6485" /> - </symbol> - <symbol - overflow="visible" - id="symbol6491"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path6489" /> - </symbol> - <symbol - overflow="visible" - id="symbol6495"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path6493" /> - </symbol> - <symbol - overflow="visible" - id="symbol6499"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path6497" /> - </symbol> - <symbol - overflow="visible" - id="symbol6503"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path6501" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f-6-9" - transform="translate(-134.19,-128.609)" - style="fill:#010000;fill-opacity:1"> - <g - style="fill:#010000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2-1-8"> - <g - transform="translate(133.768,134.765)" - id="g855-8-7" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c-7-2" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858-9-8" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939-2-2" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861-0-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa-2-9" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864-3-6" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe-7-0" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867-5-2" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b-9-7" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870-2-6" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14-2-1" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873-8-3" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a-9-2" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876-7-1" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f-3-5" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879-6-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71-1-9" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.27005,0,0,1.27005,74.8143,99.1004)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nordinateur 3\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:inkscapeversion="1.0.1" - ns9:jacobian_sqrt="1.27005" - id="g7192"> - <defs - id="id-bc78d6b6-be10-4a84-9def-9eb3e0977dbb"> - <g - id="id-3cb28521-31a9-4cd8-ab56-32475c1ffdde"> - <symbol - overflow="visible" - id="id-bde7c033-0568-483f-8fc2-9c4e71e139b2"> - <path - style="stroke:none" - d="" - id="id-ef16d7db-39cf-474c-b501-73b7a448c73a" /> - </symbol> - <symbol - overflow="visible" - id="id-0dd95353-9023-4150-a3ed-ec8e3e081f3c"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-a0252d10-8e7a-4d92-ae8d-96bc5e49474c" /> - </symbol> - <symbol - overflow="visible" - id="id-0b405b6f-e84e-4e05-8eaa-b1fa5d5e221b"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-fad5bd35-c46a-470a-8eca-071afe7a48a9" /> - </symbol> - <symbol - overflow="visible" - id="id-38762e07-d071-4a3d-b055-2faa92963b2f"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-cba128e2-15a1-4987-a871-7ea200384c0e" /> - </symbol> - <symbol - overflow="visible" - id="id-bb17de2a-b024-4eea-981b-c5f69436694f"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-62357e4c-4fa0-479e-a44c-74a0640ffdc7" /> - </symbol> - <symbol - overflow="visible" - id="id-a0492a15-82e7-4b98-99c1-c08ff4868a90"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-52c3c0f8-9171-4320-8027-e6d28b0bda8e" /> - </symbol> - <symbol - overflow="visible" - id="id-df9a5042-e22a-4b79-9840-d9467eb8aa1f"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-3668ab27-b4b9-4a00-9c66-1c18ad2f186f" /> - </symbol> - <symbol - overflow="visible" - id="id-cc8019e8-77a9-4ece-8b99-c44aac941a9f"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-3635b5c5-772e-40b8-982e-d43115abfab8" /> - </symbol> - <symbol - overflow="visible" - id="id-e0419a16-f3a6-4d60-912f-193227290e52"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-6cea2d75-1290-405b-9be9-95baf337be05" /> - </symbol> - <symbol - overflow="visible" - id="id-700e52fc-8c27-46e9-b0b6-b064597bf181"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-f70fdb21-5135-4ac7-95c7-28894c9d93f7" /> - </symbol> - <symbol - overflow="visible" - id="id-330938c2-7fcf-456c-a65a-946ce496d79a"> - <path - style="stroke:none" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - id="id-57555f85-646f-42f1-92de-e4c21ed2b5b7" /> - </symbol> - </g> - </defs> - <g - id="id-6745d7bd-4333-4119-b3fe-cf99c58ffd22" - transform="translate(-134.331,-128.562)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-bd0d2a82-1a79-4dbe-91ec-a120a2f43a2f"> - <g - transform="translate(133.768,134.765)" - id="g7157"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-29008d90-5283-40a1-918e-1c02e07802b8" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g7160"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-51ad82fe-74da-4e7a-8c0b-5df60b4562c8" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g7163"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-d2aa43ff-5c06-4280-84d8-cc67335cbccc" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g7166"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-9739ab9b-51e8-467d-9fb2-5e65dba92d1c" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g7169"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-905173b8-249f-4ec9-b54f-7b6d5e1f84a5" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g7172"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-9284f5e3-2a41-42c7-9bad-c3c4c2a75afe" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g7175"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-c3ef778f-8f9b-48f5-8149-cf7e4ede9772" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g7178"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-45d1ccf9-15e7-4830-9ad2-5fcbe3f72f53" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g7181"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-97b95cda-8d28-4989-b055-cf1c6fea5baf" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g7184"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f112fe02-f3a0-4c0c-b42c-0c95d3c63b07" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-8818de94-5414-46e9-bc70-0405a6a7e243"> - <g - transform="translate(191.302,134.765)" - id="g7188"> - <path - style="stroke:none" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - id="id-cc8d0d14-a290-418b-925a-d5eccf13b353" /> - </g> - </g> - </g> - </g> - </g> - <g - id="g2506-3" - transform="rotate(45,4.9986718,17.709894)"> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-0)" - d="m 75.21791,49.926605 h 54.41166" - id="path1905-5" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-2-9)" - d="M 131.14141,70.190322 H 76.729745" - id="path1905-6-1" /> - </g> - <g - id="g2506-3-4" - transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,216.46856,4.106704)"> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-0-7)" - d="m 75.21791,49.926605 h 54.41166" - id="path1905-5-6" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-2-9-3)" - d="M 131.14141,70.190322 H 76.729745" - id="path1905-6-1-9" /> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/comm_normal.svg b/slides/figs/comm_normal.svg deleted file mode 100644 index 684d8ab7070c8dbd856540345a662e431701bdba..0000000000000000000000000000000000000000 --- a/slides/figs/comm_normal.svg +++ /dev/null @@ -1,3158 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:ns9="http://www.iki.fi/pav/software/textext/" - 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="247.50845mm" - height="177.31674mm" - viewBox="0 0 247.50845 177.31674" - version="1.1" - id="svg4179" - sodipodi:docname="comm_normal.svg" - inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"> - <defs - id="defs4173"> - <marker - style="overflow:visible" - id="Arrow2Mend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0" /> - </marker> - <g - id="id-f8174aac-ad5c-4932-a4ec-9b499f827ffa"> - <symbol - overflow="visible" - id="id-02549e56-0669-4ba5-aa26-2d0dcedf80d3"> - <path - style="stroke:none" - d="" - id="id-a0b7337f-0bc6-4f3d-bbf3-c9c180ea3d9c" /> - </symbol> - <symbol - overflow="visible" - id="id-3853f986-671d-47c5-9eef-c00987c34683"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-01abbed0-f176-4dfd-8fac-14355516243c" /> - </symbol> - <symbol - overflow="visible" - id="id-d7a0fadb-3199-485f-9210-d6a1e34647ad"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-e78f1e4f-2ea5-4d8c-a5a1-78eb98353e8d" /> - </symbol> - <symbol - overflow="visible" - id="id-98eb4a68-83b0-4085-930f-dd08fa3250a9"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-a69f3ade-a543-40e8-b006-ec8fb36e896e" /> - </symbol> - <symbol - overflow="visible" - id="id-6e03188e-9f0f-45d9-904e-5c7785d806f3"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-e8569463-af97-44ff-a668-9cd73c5ca5cb" /> - </symbol> - <symbol - overflow="visible" - id="id-63d91381-ebf6-410f-b971-d86513214146"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-9d5e19c5-742b-420b-9289-3e4482e96cf9" /> - </symbol> - <symbol - overflow="visible" - id="id-1b9326e5-d636-4429-86eb-40c982b722ac"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-3e9a481c-47a4-4f6d-9b23-1147a43b5f40" /> - </symbol> - <symbol - overflow="visible" - id="id-d10288e0-f8a7-47ef-888d-2d6020351ce7"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-ed46b135-eb1c-435e-ab16-5216081cf5dc" /> - </symbol> - </g> - <g - id="id-9235f262-7716-445d-8b70-6d8222df835b"> - <symbol - overflow="visible" - id="id-4a2eef38-d001-4887-a9dc-a52fea777abe"> - <path - style="stroke:none" - d="" - id="id-98945a5a-c48b-4af3-be0b-25be3ae16f4d" /> - </symbol> - <symbol - overflow="visible" - id="id-5b8593d3-7c71-4209-9b07-85bf85ce1130"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-225c7849-66d3-48b6-baf5-9a77d998e1df" /> - </symbol> - <symbol - overflow="visible" - id="id-e28672cb-bad5-443b-b1a2-d752bbee6823"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-d5557d00-ba7a-4c9d-ac96-d091d1b51e30" /> - </symbol> - <symbol - overflow="visible" - id="id-3cac2d03-14ff-4dbe-b998-74d0c72dbb0f"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-3e0ff04b-d243-4806-b818-8c25d86b048b" /> - </symbol> - <symbol - overflow="visible" - id="id-60a58545-8a2a-4d2f-81ea-46490660362e"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-2ae00885-f3d6-4513-8a20-5889c4a674a8" /> - </symbol> - <symbol - overflow="visible" - id="id-c10d4867-f507-40e2-be18-8a24608c6b9c"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-63a90d91-00d7-4636-a709-271b863af929" /> - </symbol> - <symbol - overflow="visible" - id="id-8cb3709f-c85a-45fc-b34a-2e858c3835a2"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-0a736b19-1ce9-4330-b562-2c1422ba713a" /> - </symbol> - <symbol - overflow="visible" - id="id-1abdfd76-5dd1-4421-8c68-d84c97e268ea"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-cbdcbc1b-b5ad-4234-a022-f1de6b179a21" /> - </symbol> - <symbol - overflow="visible" - id="id-19d6475b-d1f6-4c4a-bcd4-c98f569e10ae"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ec00f810-b9d1-481f-b974-a64b75eca8fb" /> - </symbol> - <symbol - overflow="visible" - id="id-2e6ea5ed-23be-422c-8038-3f0677cb7567"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7df17f-28f6-46f4-9a64-643d3493e550" /> - </symbol> - <symbol - overflow="visible" - id="id-a61a7f3a-1146-43cd-b104-d3830cc9c2b9"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-9dfa3fec-f0f9-47a5-82d9-df5582dc6bbc" /> - </symbol> - </g> - <g - id="g1071"> - <symbol - overflow="visible" - id="symbol1041"> - <path - style="stroke:none" - d="" - id="path1039" /> - </symbol> - <symbol - overflow="visible" - id="symbol1045"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path1043" /> - </symbol> - <symbol - overflow="visible" - id="symbol1049"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path1047" /> - </symbol> - <symbol - overflow="visible" - id="symbol1053"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path1051" /> - </symbol> - <symbol - overflow="visible" - id="symbol1057"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path1055" /> - </symbol> - <symbol - overflow="visible" - id="symbol1061"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path1059" /> - </symbol> - <symbol - overflow="visible" - id="symbol1065"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path1063" /> - </symbol> - <symbol - overflow="visible" - id="symbol1069"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path1067" /> - </symbol> - </g> - <g - id="id-c8d83638-102d-44ff-8c06-a55d6f07b75b"> - <symbol - overflow="visible" - id="id-9b155284-1a0d-465d-8495-64ebfd21de1b"> - <path - style="stroke:none" - d="" - id="id-56aa8a4b-10f2-425c-b2c8-7bfc8b62e045" /> - </symbol> - <symbol - overflow="visible" - id="id-81a45f13-e35f-4531-8d20-f35498476473"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-e8933d04-3dc1-4eeb-9a0f-4c428c715335" /> - </symbol> - <symbol - overflow="visible" - id="id-7b905d47-0186-40ad-8cfa-bcae1dc5e34b"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-dc5fbb16-8ca5-4d26-bcb4-08f1fbaa9765" /> - </symbol> - <symbol - overflow="visible" - id="id-cf548c0a-9029-411b-aeb1-045b106a228a"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-50578384-cfff-4729-8789-83071309561b" /> - </symbol> - <symbol - overflow="visible" - id="id-9d77210e-870d-47a6-8786-baafa66c775c"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-1642258b-a226-4328-8301-24e60b25b1b5" /> - </symbol> - <symbol - overflow="visible" - id="id-c78b8111-292d-48cc-92fb-b6c198275310"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-67425214-b1dd-4e79-a201-4d040aed24c6" /> - </symbol> - <symbol - overflow="visible" - id="id-5b6a9a20-9574-4e11-a3ef-966efd4ffae9"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-37ae4ad7-f355-494d-858f-e2dd3b7f9a48" /> - </symbol> - <symbol - overflow="visible" - id="id-7d2c8f88-eb2f-4c87-8c22-e345460793f9"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-254d1903-898d-4640-abb5-037fd9542e4b" /> - </symbol> - <symbol - overflow="visible" - id="id-65b3b2be-21d8-4445-87d0-008e467778e0"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-7eab465a-6185-4f0b-9758-c284d3c18d85" /> - </symbol> - <symbol - overflow="visible" - id="id-95c3509a-65e0-4853-87cf-21c2ebf0bbe3"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7c5b59-65d2-41d9-85e0-6dec363ba4f0" /> - </symbol> - <symbol - overflow="visible" - id="id-89e96fd9-13b3-407f-8f00-702296599510"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-19f4c14e-0937-4967-87bd-3b8976063479" /> - </symbol> - </g> - <g - id="id-219e6f5a-608f-4ce8-963d-3a2d69bdf0b9"> - <symbol - overflow="visible" - id="id-9024c197-73d2-4245-9a8d-4380d7b82aed"> - <path - style="stroke:none" - d="" - id="id-f77c4782-3adc-4702-a506-7d3965fd5359" /> - </symbol> - <symbol - overflow="visible" - id="id-c71b2e8a-4e38-494d-b3af-8aced6a37463"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-82aa7e0c-b535-43a4-814d-aced181e6ec0" /> - </symbol> - <symbol - overflow="visible" - id="id-6b96b67b-50fa-4458-a98e-9f76200cdac1"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-67d99372-9f9a-43d9-a6ef-0b59efc5a3d5" /> - </symbol> - <symbol - overflow="visible" - id="id-86f26412-be0f-4abd-bd8d-7caabd36af45"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-8b0290f0-aeba-472d-93d7-10aa08ad4d74" /> - </symbol> - <symbol - overflow="visible" - id="id-9e1a7498-6fce-48b3-9034-844e39b1a3cc"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-7113a060-c2c2-43e3-9a9f-7346328573d3" /> - </symbol> - <symbol - overflow="visible" - id="id-e6959e67-9e3f-4e8d-bcd1-81b5de189da5"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-c0501ce0-ee95-468f-9723-d0d7b0772d3e" /> - </symbol> - <symbol - overflow="visible" - id="id-55a833b5-eb1b-4a91-bac0-14edf0c27904"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f171d28a-5dbb-4ac4-99ac-77c8ee9b2205" /> - </symbol> - <symbol - overflow="visible" - id="id-0219fb51-6a1d-4055-b513-5a28f534080b"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-845f167a-1149-421c-b97b-6b2b4c6a50ce" /> - </symbol> - <symbol - overflow="visible" - id="id-97d5b0e3-5fe9-4991-871c-bffeae8a7ad2"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-8ac2ba68-f636-49fc-8cf5-9913f0aa0554" /> - </symbol> - <symbol - overflow="visible" - id="id-f75b7606-73e5-4c0c-a2f6-dc3c74181a49"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-c826fbda-4428-462e-ad21-2817567fdf2c" /> - </symbol> - <symbol - overflow="visible" - id="id-b792b39e-fcf6-4a9f-8286-063100ac485d"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-7ee2fe09-452e-48e6-b629-e19df8949e6d" /> - </symbol> - <symbol - overflow="visible" - id="id-fb0432a3-e288-4136-954b-d3bd2298d2f7"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-edeb88d5-c151-4739-9f83-4f1231629550" /> - </symbol> - <symbol - overflow="visible" - id="id-fb385e0f-ab44-46d9-8910-3e44d1f9a494"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-52b6bbee-1362-41b8-a074-e916ffa4c278" /> - </symbol> - <symbol - overflow="visible" - id="id-3e91850b-7f50-4a6d-9805-f6fc0dc3bed1"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-d279ee1e-4b56-45c6-9cba-288711690f78" /> - </symbol> - <symbol - overflow="visible" - id="id-5b5e50f7-6a59-4487-ad62-22733af34553"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-975cb9fa-d3c9-49fd-afa7-88cacd94a3dc" /> - </symbol> - <symbol - overflow="visible" - id="id-c2125298-800d-4bf5-9a07-2d54a7d2691b"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-e03baf73-4cb3-46f0-9cba-505a19e1aa3b" /> - </symbol> - <symbol - overflow="visible" - id="id-f692fd1c-88cc-4ca0-a098-eec3ceebacbb"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-2c4ce0de-6e34-45ae-9b3b-172e0497b727" /> - </symbol> - </g> - <marker - style="overflow:visible" - id="Arrow2Mend-4" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-22" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-6" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-41" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-0" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-2" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-4" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-0-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-2-4" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-9-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-4-1" /> - </marker> - <g - id="id-219e6f5a-608f-4ce8-963d-3a2d69bdf0b9-8"> - <symbol - overflow="visible" - id="id-9024c197-73d2-4245-9a8d-4380d7b82aed-9"> - <path - style="stroke:none" - d="" - id="id-f77c4782-3adc-4702-a506-7d3965fd5359-2" /> - </symbol> - <symbol - overflow="visible" - id="id-c71b2e8a-4e38-494d-b3af-8aced6a37463-8"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-82aa7e0c-b535-43a4-814d-aced181e6ec0-8" /> - </symbol> - <symbol - overflow="visible" - id="id-6b96b67b-50fa-4458-a98e-9f76200cdac1-8"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-67d99372-9f9a-43d9-a6ef-0b59efc5a3d5-6" /> - </symbol> - <symbol - overflow="visible" - id="id-86f26412-be0f-4abd-bd8d-7caabd36af45-8"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-8b0290f0-aeba-472d-93d7-10aa08ad4d74-3" /> - </symbol> - <symbol - overflow="visible" - id="id-9e1a7498-6fce-48b3-9034-844e39b1a3cc-8"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-7113a060-c2c2-43e3-9a9f-7346328573d3-3" /> - </symbol> - <symbol - overflow="visible" - id="id-e6959e67-9e3f-4e8d-bcd1-81b5de189da5-3"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-c0501ce0-ee95-468f-9723-d0d7b0772d3e-3" /> - </symbol> - <symbol - overflow="visible" - id="id-55a833b5-eb1b-4a91-bac0-14edf0c27904-8"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f171d28a-5dbb-4ac4-99ac-77c8ee9b2205-0" /> - </symbol> - <symbol - overflow="visible" - id="id-0219fb51-6a1d-4055-b513-5a28f534080b-4"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-845f167a-1149-421c-b97b-6b2b4c6a50ce-7" /> - </symbol> - <symbol - overflow="visible" - id="id-97d5b0e3-5fe9-4991-871c-bffeae8a7ad2-6"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-8ac2ba68-f636-49fc-8cf5-9913f0aa0554-8" /> - </symbol> - <symbol - overflow="visible" - id="id-f75b7606-73e5-4c0c-a2f6-dc3c74181a49-9"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-c826fbda-4428-462e-ad21-2817567fdf2c-0" /> - </symbol> - <symbol - overflow="visible" - id="id-b792b39e-fcf6-4a9f-8286-063100ac485d-6"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-7ee2fe09-452e-48e6-b629-e19df8949e6d-8" /> - </symbol> - <symbol - overflow="visible" - id="id-fb0432a3-e288-4136-954b-d3bd2298d2f7-7"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-edeb88d5-c151-4739-9f83-4f1231629550-9" /> - </symbol> - <symbol - overflow="visible" - id="id-fb385e0f-ab44-46d9-8910-3e44d1f9a494-0"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-52b6bbee-1362-41b8-a074-e916ffa4c278-3" /> - </symbol> - <symbol - overflow="visible" - id="id-3e91850b-7f50-4a6d-9805-f6fc0dc3bed1-3"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-d279ee1e-4b56-45c6-9cba-288711690f78-3" /> - </symbol> - <symbol - overflow="visible" - id="id-5b5e50f7-6a59-4487-ad62-22733af34553-7"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-975cb9fa-d3c9-49fd-afa7-88cacd94a3dc-3" /> - </symbol> - <symbol - overflow="visible" - id="id-c2125298-800d-4bf5-9a07-2d54a7d2691b-2"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-e03baf73-4cb3-46f0-9cba-505a19e1aa3b-6" /> - </symbol> - <symbol - overflow="visible" - id="id-f692fd1c-88cc-4ca0-a098-eec3ceebacbb-5"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-2c4ce0de-6e34-45ae-9b3b-172e0497b727-2" /> - </symbol> - </g> - <g - id="id-f8174aac-ad5c-4932-a4ec-9b499f827ffa-6"> - <symbol - overflow="visible" - id="id-02549e56-0669-4ba5-aa26-2d0dcedf80d3-2"> - <path - style="stroke:none" - d="" - id="id-a0b7337f-0bc6-4f3d-bbf3-c9c180ea3d9c-8" /> - </symbol> - <symbol - overflow="visible" - id="id-3853f986-671d-47c5-9eef-c00987c34683-9"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-01abbed0-f176-4dfd-8fac-14355516243c-6" /> - </symbol> - <symbol - overflow="visible" - id="id-d7a0fadb-3199-485f-9210-d6a1e34647ad-0"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-e78f1e4f-2ea5-4d8c-a5a1-78eb98353e8d-7" /> - </symbol> - <symbol - overflow="visible" - id="id-98eb4a68-83b0-4085-930f-dd08fa3250a9-0"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-a69f3ade-a543-40e8-b006-ec8fb36e896e-1" /> - </symbol> - <symbol - overflow="visible" - id="id-6e03188e-9f0f-45d9-904e-5c7785d806f3-0"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-e8569463-af97-44ff-a668-9cd73c5ca5cb-1" /> - </symbol> - <symbol - overflow="visible" - id="id-63d91381-ebf6-410f-b971-d86513214146-3"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-9d5e19c5-742b-420b-9289-3e4482e96cf9-7" /> - </symbol> - <symbol - overflow="visible" - id="id-1b9326e5-d636-4429-86eb-40c982b722ac-7"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-3e9a481c-47a4-4f6d-9b23-1147a43b5f40-2" /> - </symbol> - <symbol - overflow="visible" - id="id-d10288e0-f8a7-47ef-888d-2d6020351ce7-6"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-ed46b135-eb1c-435e-ab16-5216081cf5dc-4" /> - </symbol> - </g> - <g - id="id-9235f262-7716-445d-8b70-6d8222df835b-7"> - <symbol - overflow="visible" - id="id-4a2eef38-d001-4887-a9dc-a52fea777abe-5"> - <path - style="stroke:none" - d="" - id="id-98945a5a-c48b-4af3-be0b-25be3ae16f4d-9" /> - </symbol> - <symbol - overflow="visible" - id="id-5b8593d3-7c71-4209-9b07-85bf85ce1130-7"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-225c7849-66d3-48b6-baf5-9a77d998e1df-8" /> - </symbol> - <symbol - overflow="visible" - id="id-e28672cb-bad5-443b-b1a2-d752bbee6823-5"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-d5557d00-ba7a-4c9d-ac96-d091d1b51e30-3" /> - </symbol> - <symbol - overflow="visible" - id="id-3cac2d03-14ff-4dbe-b998-74d0c72dbb0f-3"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-3e0ff04b-d243-4806-b818-8c25d86b048b-8" /> - </symbol> - <symbol - overflow="visible" - id="id-60a58545-8a2a-4d2f-81ea-46490660362e-3"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-2ae00885-f3d6-4513-8a20-5889c4a674a8-7" /> - </symbol> - <symbol - overflow="visible" - id="id-c10d4867-f507-40e2-be18-8a24608c6b9c-9"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-63a90d91-00d7-4636-a709-271b863af929-3" /> - </symbol> - <symbol - overflow="visible" - id="id-8cb3709f-c85a-45fc-b34a-2e858c3835a2-7"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-0a736b19-1ce9-4330-b562-2c1422ba713a-8" /> - </symbol> - <symbol - overflow="visible" - id="id-1abdfd76-5dd1-4421-8c68-d84c97e268ea-7"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-cbdcbc1b-b5ad-4234-a022-f1de6b179a21-4" /> - </symbol> - <symbol - overflow="visible" - id="id-19d6475b-d1f6-4c4a-bcd4-c98f569e10ae-1"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ec00f810-b9d1-481f-b974-a64b75eca8fb-9" /> - </symbol> - <symbol - overflow="visible" - id="id-2e6ea5ed-23be-422c-8038-3f0677cb7567-0"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7df17f-28f6-46f4-9a64-643d3493e550-9" /> - </symbol> - <symbol - overflow="visible" - id="id-a61a7f3a-1146-43cd-b104-d3830cc9c2b9-8"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-9dfa3fec-f0f9-47a5-82d9-df5582dc6bbc-8" /> - </symbol> - </g> - <g - id="g1071-1"> - <symbol - overflow="visible" - id="symbol1041-7"> - <path - style="stroke:none" - d="" - id="path1039-1" /> - </symbol> - <symbol - overflow="visible" - id="symbol1045-1"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path1043-1" /> - </symbol> - <symbol - overflow="visible" - id="symbol1049-7"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path1047-0" /> - </symbol> - <symbol - overflow="visible" - id="symbol1053-4"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path1051-0" /> - </symbol> - <symbol - overflow="visible" - id="symbol1057-8"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path1055-5" /> - </symbol> - <symbol - overflow="visible" - id="symbol1061-1"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path1059-6" /> - </symbol> - <symbol - overflow="visible" - id="symbol1065-6"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path1063-2" /> - </symbol> - <symbol - overflow="visible" - id="symbol1069-1"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path1067-9" /> - </symbol> - </g> - <g - id="id-c8d83638-102d-44ff-8c06-a55d6f07b75b-0"> - <symbol - overflow="visible" - id="id-9b155284-1a0d-465d-8495-64ebfd21de1b-8"> - <path - style="stroke:none" - d="" - id="id-56aa8a4b-10f2-425c-b2c8-7bfc8b62e045-5" /> - </symbol> - <symbol - overflow="visible" - id="id-81a45f13-e35f-4531-8d20-f35498476473-3"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-e8933d04-3dc1-4eeb-9a0f-4c428c715335-9" /> - </symbol> - <symbol - overflow="visible" - id="id-7b905d47-0186-40ad-8cfa-bcae1dc5e34b-4"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-dc5fbb16-8ca5-4d26-bcb4-08f1fbaa9765-1" /> - </symbol> - <symbol - overflow="visible" - id="id-cf548c0a-9029-411b-aeb1-045b106a228a-5"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-50578384-cfff-4729-8789-83071309561b-4" /> - </symbol> - <symbol - overflow="visible" - id="id-9d77210e-870d-47a6-8786-baafa66c775c-1"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-1642258b-a226-4328-8301-24e60b25b1b5-5" /> - </symbol> - <symbol - overflow="visible" - id="id-c78b8111-292d-48cc-92fb-b6c198275310-5"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-67425214-b1dd-4e79-a201-4d040aed24c6-4" /> - </symbol> - <symbol - overflow="visible" - id="id-5b6a9a20-9574-4e11-a3ef-966efd4ffae9-9"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-37ae4ad7-f355-494d-858f-e2dd3b7f9a48-8" /> - </symbol> - <symbol - overflow="visible" - id="id-7d2c8f88-eb2f-4c87-8c22-e345460793f9-3"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-254d1903-898d-4640-abb5-037fd9542e4b-8" /> - </symbol> - <symbol - overflow="visible" - id="id-65b3b2be-21d8-4445-87d0-008e467778e0-5"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-7eab465a-6185-4f0b-9758-c284d3c18d85-2" /> - </symbol> - <symbol - overflow="visible" - id="id-95c3509a-65e0-4853-87cf-21c2ebf0bbe3-2"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-af7c5b59-65d2-41d9-85e0-6dec363ba4f0-2" /> - </symbol> - <symbol - overflow="visible" - id="id-89e96fd9-13b3-407f-8f00-702296599510-7"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-19f4c14e-0937-4967-87bd-3b8976063479-0" /> - </symbol> - </g> - <g - id="g6505"> - <symbol - overflow="visible" - id="symbol6475"> - <path - style="stroke:none" - d="" - id="path6473" /> - </symbol> - <symbol - overflow="visible" - id="symbol6479"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path6477" /> - </symbol> - <symbol - overflow="visible" - id="symbol6483"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path6481" /> - </symbol> - <symbol - overflow="visible" - id="symbol6487"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path6485" /> - </symbol> - <symbol - overflow="visible" - id="symbol6491"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path6489" /> - </symbol> - <symbol - overflow="visible" - id="symbol6495"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path6493" /> - </symbol> - <symbol - overflow="visible" - id="symbol6499"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path6497" /> - </symbol> - <symbol - overflow="visible" - id="symbol6503"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path6501" /> - </symbol> - </g> - <g - id="id-3cb28521-31a9-4cd8-ab56-32475c1ffdde"> - <symbol - overflow="visible" - id="id-bde7c033-0568-483f-8fc2-9c4e71e139b2"> - <path - style="stroke:none" - d="" - id="id-ef16d7db-39cf-474c-b501-73b7a448c73a" /> - </symbol> - <symbol - overflow="visible" - id="id-0dd95353-9023-4150-a3ed-ec8e3e081f3c"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-a0252d10-8e7a-4d92-ae8d-96bc5e49474c" /> - </symbol> - <symbol - overflow="visible" - id="id-0b405b6f-e84e-4e05-8eaa-b1fa5d5e221b"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-fad5bd35-c46a-470a-8eca-071afe7a48a9" /> - </symbol> - <symbol - overflow="visible" - id="id-38762e07-d071-4a3d-b055-2faa92963b2f"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-cba128e2-15a1-4987-a871-7ea200384c0e" /> - </symbol> - <symbol - overflow="visible" - id="id-bb17de2a-b024-4eea-981b-c5f69436694f"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-62357e4c-4fa0-479e-a44c-74a0640ffdc7" /> - </symbol> - <symbol - overflow="visible" - id="id-a0492a15-82e7-4b98-99c1-c08ff4868a90"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-52c3c0f8-9171-4320-8027-e6d28b0bda8e" /> - </symbol> - <symbol - overflow="visible" - id="id-df9a5042-e22a-4b79-9840-d9467eb8aa1f"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-3668ab27-b4b9-4a00-9c66-1c18ad2f186f" /> - </symbol> - <symbol - overflow="visible" - id="id-cc8019e8-77a9-4ece-8b99-c44aac941a9f"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-3635b5c5-772e-40b8-982e-d43115abfab8" /> - </symbol> - <symbol - overflow="visible" - id="id-e0419a16-f3a6-4d60-912f-193227290e52"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-6cea2d75-1290-405b-9be9-95baf337be05" /> - </symbol> - <symbol - overflow="visible" - id="id-700e52fc-8c27-46e9-b0b6-b064597bf181"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-f70fdb21-5135-4ac7-95c7-28894c9d93f7" /> - </symbol> - <symbol - overflow="visible" - id="id-330938c2-7fcf-456c-a65a-946ce496d79a"> - <path - style="stroke:none" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - id="id-57555f85-646f-42f1-92de-e4c21ed2b5b7" /> - </symbol> - </g> - <g - id="id-219e6f5a-608f-4ce8-963d-3a2d69bdf0b9-1"> - <symbol - overflow="visible" - id="id-9024c197-73d2-4245-9a8d-4380d7b82aed-0"> - <path - style="stroke:none" - d="" - id="id-f77c4782-3adc-4702-a506-7d3965fd5359-8" /> - </symbol> - <symbol - overflow="visible" - id="id-c71b2e8a-4e38-494d-b3af-8aced6a37463-7"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-82aa7e0c-b535-43a4-814d-aced181e6ec0-6" /> - </symbol> - <symbol - overflow="visible" - id="id-6b96b67b-50fa-4458-a98e-9f76200cdac1-3"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-67d99372-9f9a-43d9-a6ef-0b59efc5a3d5-5" /> - </symbol> - <symbol - overflow="visible" - id="id-86f26412-be0f-4abd-bd8d-7caabd36af45-0"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-8b0290f0-aeba-472d-93d7-10aa08ad4d74-8" /> - </symbol> - <symbol - overflow="visible" - id="id-9e1a7498-6fce-48b3-9034-844e39b1a3cc-0"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-7113a060-c2c2-43e3-9a9f-7346328573d3-4" /> - </symbol> - <symbol - overflow="visible" - id="id-e6959e67-9e3f-4e8d-bcd1-81b5de189da5-1"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-c0501ce0-ee95-468f-9723-d0d7b0772d3e-1" /> - </symbol> - <symbol - overflow="visible" - id="id-55a833b5-eb1b-4a91-bac0-14edf0c27904-3"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f171d28a-5dbb-4ac4-99ac-77c8ee9b2205-5" /> - </symbol> - <symbol - overflow="visible" - id="id-0219fb51-6a1d-4055-b513-5a28f534080b-9"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-845f167a-1149-421c-b97b-6b2b4c6a50ce-3" /> - </symbol> - <symbol - overflow="visible" - id="id-97d5b0e3-5fe9-4991-871c-bffeae8a7ad2-4"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-8ac2ba68-f636-49fc-8cf5-9913f0aa0554-1" /> - </symbol> - <symbol - overflow="visible" - id="id-f75b7606-73e5-4c0c-a2f6-dc3c74181a49-5"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-c826fbda-4428-462e-ad21-2817567fdf2c-08" /> - </symbol> - <symbol - overflow="visible" - id="id-b792b39e-fcf6-4a9f-8286-063100ac485d-3"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-7ee2fe09-452e-48e6-b629-e19df8949e6d-5" /> - </symbol> - <symbol - overflow="visible" - id="id-fb0432a3-e288-4136-954b-d3bd2298d2f7-6"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-edeb88d5-c151-4739-9f83-4f1231629550-5" /> - </symbol> - <symbol - overflow="visible" - id="id-fb385e0f-ab44-46d9-8910-3e44d1f9a494-9"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-52b6bbee-1362-41b8-a074-e916ffa4c278-9" /> - </symbol> - <symbol - overflow="visible" - id="id-3e91850b-7f50-4a6d-9805-f6fc0dc3bed1-0"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-d279ee1e-4b56-45c6-9cba-288711690f78-7" /> - </symbol> - <symbol - overflow="visible" - id="id-5b5e50f7-6a59-4487-ad62-22733af34553-6"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-975cb9fa-d3c9-49fd-afa7-88cacd94a3dc-37" /> - </symbol> - <symbol - overflow="visible" - id="id-c2125298-800d-4bf5-9a07-2d54a7d2691b-6"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-e03baf73-4cb3-46f0-9cba-505a19e1aa3b-1" /> - </symbol> - <symbol - overflow="visible" - id="id-f692fd1c-88cc-4ca0-a098-eec3ceebacbb-50"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-2c4ce0de-6e34-45ae-9b3b-172e0497b727-6" /> - </symbol> - </g> - <marker - style="overflow:visible" - id="Arrow2Mend-0-7-5" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-2-4-0" /> - </marker> - <marker - style="overflow:visible" - id="Arrow2Mend-2-9-3-8" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Mend" - inkscape:isstock="true"> - <path - transform="scale(-0.6)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path1934-0-4-1-1" /> - </marker> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="826.4875" - inkscape:cy="548.89198" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - inkscape:document-rotation="0" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1013" - inkscape:window-x="0" - inkscape:window-y="39" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata4176"> - <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="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(66.835835,-18.11748)"> - <rect - style="fill:#ff7500;fill-opacity:1;stroke:#000000;stroke-width:1" - id="rect926-2-9" - width="76.157028" - height="47.067635" - x="18.839878" - y="124.95583" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,30.925998,144.98069)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883-3-6" - style="fill:#010000;fill-opacity:1"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002-6-9"> - <g - id="g9573"> - <symbol - overflow="visible" - id="symbol9543"> - <path - style="stroke:none" - d="" - id="path9541" /> - </symbol> - <symbol - overflow="visible" - id="symbol9547"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path9545" /> - </symbol> - <symbol - overflow="visible" - id="symbol9551"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path9549" /> - </symbol> - <symbol - overflow="visible" - id="symbol9555"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path9553" /> - </symbol> - <symbol - overflow="visible" - id="symbol9559"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path9557" /> - </symbol> - <symbol - overflow="visible" - id="symbol9563"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path9561" /> - </symbol> - <symbol - overflow="visible" - id="symbol9567"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path9565" /> - </symbol> - <symbol - overflow="visible" - id="symbol9571"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path9569" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f-6-9" - transform="translate(-134.19,-128.609)" - style="fill:#010000;fill-opacity:1"> - <g - style="fill:#010000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2-1-8"> - <g - transform="translate(133.768,134.765)" - id="g855-8-7" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c-7-2" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858-9-8" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939-2-2" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861-0-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa-2-9" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864-3-6" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe-7-0" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867-5-2" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b-9-7" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870-2-6" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14-2-1" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873-8-3" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a-9-2" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876-7-1" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f-3-5" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879-6-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71-1-9" /> - </g> - </g> - </g> - </g> - <g - id="g2506-3" - transform="rotate(45,-20.676063,-52.421558)"> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-0)" - d="m 75.21791,49.926605 h 54.41166" - id="path1905-5" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-2-9)" - d="M 131.14141,70.190322 H 76.729745" - id="path1905-6-1" /> - </g> - <g - id="g2506-3-4" - transform="matrix(-0.70710678,0.70710678,0.70710678,0.70710678,159.35818,1.7204536)"> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-0-7)" - d="m 75.21791,49.926605 h 54.41166" - id="path1905-5-6" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-2-9-3)" - d="M 131.14141,70.190322 H 76.729745" - id="path1905-6-1-9" /> - </g> - <g - id="g2466-6" - transform="translate(-57.110378,-2.3862464)"> - <rect - style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect926-0" - width="76.157028" - height="47.067635" - x="0.025201803" - y="38.689198" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,12.111322,58.714071)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883-6"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002-64"> - <g - id="g9308"> - <symbol - overflow="visible" - id="symbol9278"> - <path - style="stroke:none" - d="" - id="path9276" /> - </symbol> - <symbol - overflow="visible" - id="symbol9282"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path9280" /> - </symbol> - <symbol - overflow="visible" - id="symbol9286"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path9284" /> - </symbol> - <symbol - overflow="visible" - id="symbol9290"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path9288" /> - </symbol> - <symbol - overflow="visible" - id="symbol9294"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path9292" /> - </symbol> - <symbol - overflow="visible" - id="symbol9298"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path9296" /> - </symbol> - <symbol - overflow="visible" - id="symbol9302"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path9300" /> - </symbol> - <symbol - overflow="visible" - id="symbol9306"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path9304" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f-5" - transform="translate(-134.19,-128.609)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2-2"> - <g - transform="translate(133.768,134.765)" - id="g855-0"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c-2" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858-90"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939-9" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861-9"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa-4" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864-5"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe-1" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867-0"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b-3" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870-7"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14-8" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873-86"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a-0" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876-4"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f-6" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879-7"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71-6" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.2700482,0,0,1.2700482,-0.87199953,20.503891)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nordinateur 1\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g1338-0"> - <defs - id="id-8730ea57-07c1-46dc-83a1-9bbc96f4239d-9"> - <g - id="g9376"> - <symbol - overflow="visible" - id="symbol9334"> - <path - style="stroke:none" - d="" - id="path9332" /> - </symbol> - <symbol - overflow="visible" - id="symbol9338"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="path9336" /> - </symbol> - <symbol - overflow="visible" - id="symbol9342"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path9340" /> - </symbol> - <symbol - overflow="visible" - id="symbol9346"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="path9344" /> - </symbol> - <symbol - overflow="visible" - id="symbol9350"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path9348" /> - </symbol> - <symbol - overflow="visible" - id="symbol9354"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="path9352" /> - </symbol> - <symbol - overflow="visible" - id="symbol9358"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="path9356" /> - </symbol> - <symbol - overflow="visible" - id="symbol9362"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="path9360" /> - </symbol> - <symbol - overflow="visible" - id="symbol9366"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path9364" /> - </symbol> - <symbol - overflow="visible" - id="symbol9370"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="path9368" /> - </symbol> - <symbol - overflow="visible" - id="symbol9374"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="path9372" /> - </symbol> - </g> - </defs> - <g - id="id-0b6106ff-62fd-4836-a36d-6925b58f8596-5" - transform="translate(-134.331,-128.562)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-4c60f90c-82ee-425d-b510-4f5c4e1be5f7-8"> - <g - transform="translate(133.768,134.765)" - id="g1303-4"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-74b1b0b2-3cf1-4834-9bf2-857500dca4ff-3" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g1306-7"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-97a8709c-591c-4b54-9149-13eb0f911fa5-1" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g1309-3"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-e1ec4dbc-907e-471d-bf95-941690516957-8" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g1312-0"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-39b56425-152c-437d-a654-a6094116ddc6-9" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g1315-7"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-f7622ffc-7b10-42f0-92dd-8b43184b0633-9" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g1318-9"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-34a90f37-29d8-4d5c-8cab-cd5650a8ea83-3" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g1321-2"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-ab327b75-0d98-40d8-87f5-7e0261469a1e-4" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g1324-3"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-ba60f49d-dcb4-47a3-affa-da1cd7b3e074-7" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g1327-1"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-2fba6efc-a7f2-492e-acec-ca929ef2a5fa-2" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g1330-2"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-b842ff49-735f-4640-bd06-ed0a7d512cd4-0" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-5f491e9a-f762-4148-9d5e-6b1920777159-2"> - <g - transform="translate(191.302,134.765)" - id="g1334-1"> - <path - style="stroke:none" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - id="id-f051db94-0839-4827-80b6-1a6b909fbc97-7" /> - </g> - </g> - </g> - </g> - </g> - <g - id="g2374-5" - transform="translate(-40.590107,-2.3862464)"> - <rect - style="fill:#01ff00;fill-opacity:1;stroke:#000000;stroke-width:1" - id="rect926-2-1" - width="76.157028" - height="47.067635" - x="133.21063" - y="38.689198" /> - <g - transform="matrix(1.1285952,0,0,1.1285952,145.29675,58.714071)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nfichier.c\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="1.0" - ns9:alignment="middle center" - ns9:jacobian_sqrt="0.352778" - id="g883-3-7" - style="fill:#010000;fill-opacity:1"> - <defs - id="id-15f0e028-c173-438e-8488-16f185f8f002-6-4"> - <g - id="g9439"> - <symbol - overflow="visible" - id="symbol9409"> - <path - style="stroke:none" - d="" - id="path9407" /> - </symbol> - <symbol - overflow="visible" - id="symbol9413"> - <path - style="stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="path9411" /> - </symbol> - <symbol - overflow="visible" - id="symbol9417"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path9415" /> - </symbol> - <symbol - overflow="visible" - id="symbol9421"> - <path - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="path9419" /> - </symbol> - <symbol - overflow="visible" - id="symbol9425"> - <path - style="stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="path9423" /> - </symbol> - <symbol - overflow="visible" - id="symbol9429"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path9427" /> - </symbol> - <symbol - overflow="visible" - id="symbol9433"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path9431" /> - </symbol> - <symbol - overflow="visible" - id="symbol9437"> - <path - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="path9435" /> - </symbol> - </g> - </defs> - <g - id="id-3ac43577-d2d0-4e26-bb84-64f1ee1f8d7f-6-6" - transform="translate(-134.19,-128.609)" - style="fill:#010000;fill-opacity:1"> - <g - style="fill:#010000;fill-opacity:1" - id="id-399fe160-866a-4867-b3a3-53a998385dd2-1-4"> - <g - transform="translate(133.768,134.765)" - id="g855-8-8" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - id="id-d02d5572-5be9-4d00-842c-cd9d7913386c-7-0" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g858-9-81" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-c23ffbd1-800f-44b8-952a-0923ecc87939-2-0" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g861-0-2" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-9b23372d-8086-4590-8339-90a580c47dfa-2-2" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g864-3-9" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - id="id-cda7bde9-c022-4920-9d21-c408ad953ebe-7-7" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g867-5-5" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6eb4725f-c0e5-4313-a45a-caf04daa6f9b-9-6" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g870-2-4" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-bdc54b95-ab2f-4ea9-92a9-8c5317011f14-2-6" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g873-8-37" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-f79ae465-bd26-4450-97ee-626df573215a-9-9" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g876-7-7" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - id="id-d3ec66e2-106c-4c2b-91b3-b59afa4aa13f-3-4" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g879-6-91" - style="fill:#010000;fill-opacity:1"> - <path - style="fill:#010000;fill-opacity:1;stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - id="id-29d49fb2-79dd-4516-982f-3491d36c6c71-1-7" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.27005,0,0,1.27005,132.12485,20.503885)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nordinateur 2\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:jacobian_sqrt="1.27005" - id="g1833-0"> - <defs - id="id-a3164f61-7e4f-4a2e-ace3-3a4d48c7c804-6"> - <g - id="g9507"> - <symbol - overflow="visible" - id="symbol9465"> - <path - style="stroke:none" - d="" - id="path9463" /> - </symbol> - <symbol - overflow="visible" - id="symbol9469"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="path9467" /> - </symbol> - <symbol - overflow="visible" - id="symbol9473"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="path9471" /> - </symbol> - <symbol - overflow="visible" - id="symbol9477"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="path9475" /> - </symbol> - <symbol - overflow="visible" - id="symbol9481"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="path9479" /> - </symbol> - <symbol - overflow="visible" - id="symbol9485"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="path9483" /> - </symbol> - <symbol - overflow="visible" - id="symbol9489"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="path9487" /> - </symbol> - <symbol - overflow="visible" - id="symbol9493"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="path9491" /> - </symbol> - <symbol - overflow="visible" - id="symbol9497"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="path9495" /> - </symbol> - <symbol - overflow="visible" - id="symbol9501"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="path9499" /> - </symbol> - <symbol - overflow="visible" - id="symbol9505"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="path9503" /> - </symbol> - </g> - </defs> - <g - id="id-ad1db265-4fe7-40b0-a594-2c5ec165c97d-3" - transform="translate(-134.331,-128.562)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-36133cd2-e4b4-4f2e-bdaa-8980feec5cd4-4"> - <g - transform="translate(133.768,134.765)" - id="g1798-6"> - <path - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - id="id-c2362df4-32a2-4edf-9f70-7e6779a1a78c-3" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g1801-6"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-093c8cc2-841c-490c-adeb-aa7a82231e71-3" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g1804-3"> - <path - style="stroke:none" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - id="id-e2bafd2f-bc58-4887-91fc-0576c53e531c-4" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g1807-4"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-f0d3e627-37f6-4c98-879e-690d7e9e904c-3" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g1810-9"> - <path - style="stroke:none" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - id="id-a2f06ed4-f266-45dc-88b1-b128a0de91f7-7" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g1813-2"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-9656a770-9cca-4c9a-95ce-656bf45b2dd8-5" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g1816-8"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-3f0e3efe-eef3-4e28-9df6-d1f289f19965-9" /> - </g> - <g - transform="translate(170.381,134.765)" - id="g1819-0"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-4cef91b1-603e-410e-b16a-d06f5bdb3cce-2" /> - </g> - <g - transform="translate(175.611,134.765)" - id="g1822-4"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-db2db3da-eda8-46e4-bb0b-117602486d6d-7" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g1825-6"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-85654308-08ad-446a-aa3e-4f4dc3160ae6-5" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-a3ccdfcd-87fc-432d-aea2-afab0c116cd7-7"> - <g - transform="translate(191.302,134.765)" - id="g1829-1"> - <path - style="stroke:none" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - id="id-262a06b2-c112-4ec9-824e-5c838085581a-3" /> - </g> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.27005,0,0,1.27005,5.32085,104.905)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="\\begin{verbatim}\nserveur (gitlab)\n\\end{verbatim}" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:jacobian_sqrt="1.27005" - id="g10973"> - <defs - id="id-3c76bf38-723f-458e-888a-e478d531726d"> - <g - id="id-3d137263-0e10-4f28-83c9-32a82d096070"> - <symbol - overflow="visible" - id="id-10cfb7b0-f8d3-4e91-81e5-e518b763575d"> - <path - style="stroke:none" - d="" - id="id-fae7ccad-fb30-4ed8-9b0d-fcb577561121" /> - </symbol> - <symbol - overflow="visible" - id="id-4bdd3bd7-87dc-4e8b-a66c-febec08445e7"> - <path - style="stroke:none" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - id="id-2f1d5f7d-3095-47f0-8afd-304ec9d96a73" /> - </symbol> - <symbol - overflow="visible" - id="id-7ff312bd-4f1a-451c-ac58-428857b83038"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-9590b5f5-8eb4-4d45-8d09-1afd61d0c5a7" /> - </symbol> - <symbol - overflow="visible" - id="id-48fd8f96-3ea6-48b5-8531-b0692245069c"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-b84317a3-efc4-4cc4-ba40-df1d66b843b6" /> - </symbol> - <symbol - overflow="visible" - id="id-9cff9bab-554d-47b2-9433-8b4e565a10ff"> - <path - style="stroke:none" - d="m 4.28125,-3.6875 h 0.296875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.28125 L 2.609375,-0.484375 1.53125,-3.6875 h 0.265625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 H 0.9375 l 1.140625,3.390625 c 0.125,0.34375 0.328125,0.34375 0.53125,0.34375 0.1875,0 0.421875,0 0.53125,-0.34375 z m 0,0" - id="id-2cbf4bac-bab3-41a2-8ef7-d295017116c0" /> - </symbol> - <symbol - overflow="visible" - id="id-b38d579e-fd9b-49ce-a0fc-3fb20879e727"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-d409b9f5-b5cb-470c-a52e-7275b9a322f2" /> - </symbol> - <symbol - overflow="visible" - id="id-aa4d824b-8f6d-4e82-bc5d-5c5a8a27bc9c"> - <path - style="stroke:none" - d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0" - id="id-83713c5f-e08d-4748-8486-86ee89363e78" /> - </symbol> - <symbol - overflow="visible" - id="id-15a52d42-4ded-48f0-92d4-572e5c7338c3"> - <path - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - id="id-34fe10d3-6934-4347-9cee-75b7c8d1ebd8" /> - </symbol> - <symbol - overflow="visible" - id="id-e25b65a8-e3d1-4a5d-8aa7-b662ec3a950d"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-b95931bb-774f-4a94-82a0-cd37f4c6cb74" /> - </symbol> - <symbol - overflow="visible" - id="id-ae5d0257-889a-4ead-81d3-e68646d2070d"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-73ca81db-6928-4362-9e97-7e8312cfbac5" /> - </symbol> - <symbol - overflow="visible" - id="id-340b1d32-13bb-4bb3-aefb-488dbb3c02a2"> - <path - style="stroke:none" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - id="id-f06bbc2f-a67b-4c2d-99a3-449f6f470bec" /> - </symbol> - <symbol - overflow="visible" - id="id-efe127f5-0a06-4143-8dfd-b4baf2cbc06f"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-586387da-a090-4734-bb2b-75711ba3107e" /> - </symbol> - <symbol - overflow="visible" - id="id-20d4bb4f-1d63-4106-89e8-87018bb898af"> - <path - style="stroke:none" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - id="id-b416abd6-db04-43a6-b69c-684804349cf4" /> - </symbol> - <symbol - overflow="visible" - id="id-05742f27-26d0-492a-92bd-76598067d0a1"> - <path - style="stroke:none" - d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0" - id="id-4522c549-0eaf-45b7-b422-731d4573145c" /> - </symbol> - </g> - </defs> - <g - id="id-277b3785-23b1-40b6-b43c-42228ae25f70" - transform="translate(-134.487,-127.843)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-f6aca4f7-5bf3-40c8-bc60-0145642d3363"> - <g - transform="translate(133.768,134.765)" - id="g10926"> - <path - style="stroke:none" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - id="id-178fd4cc-d28c-4505-865f-a2ee17dd1b58" /> - </g> - <g - transform="translate(138.998,134.765)" - id="g10929"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-e7479f30-62fd-49b6-a887-380909c3a0e2" /> - </g> - <g - transform="translate(144.229,134.765)" - id="g10932"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-e8483627-7391-423c-b9d5-4cdf49d8a4c6" /> - </g> - <g - transform="translate(149.459,134.765)" - id="g10935"> - <path - style="stroke:none" - d="m 4.28125,-3.6875 h 0.296875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.28125 L 2.609375,-0.484375 1.53125,-3.6875 h 0.265625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 H 0.9375 l 1.140625,3.390625 c 0.125,0.34375 0.328125,0.34375 0.53125,0.34375 0.1875,0 0.421875,0 0.53125,-0.34375 z m 0,0" - id="id-95cfcef6-067a-4723-b278-acc80d16dd0c" /> - </g> - <g - transform="translate(154.689,134.765)" - id="g10938"> - <path - style="stroke:none" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - id="id-b07224d0-d323-4ad4-8842-cb285c537c0f" /> - </g> - <g - transform="translate(159.92,134.765)" - id="g10941"> - <path - style="stroke:none" - d="M 3.5625,-0.3125 C 3.578125,0 3.78125,0 3.96875,0 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 v -3.28125 c 0,-0.3125 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.4375 v 2.125 c 0,0.890625 -0.796875,1.015625 -1.125,1.015625 -0.78125,0 -0.78125,-0.328125 -0.78125,-0.65625 v -2.6875 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 2.546875 c 0,0.96875 0.6875,1.203125 1.40625,1.203125 0.421875,0 0.828125,-0.109375 1.1875,-0.375 z m 0,0" - id="id-9fc5ad6c-3651-47a5-8f55-ceaa85c36ac6" /> - </g> - <g - transform="translate(165.15,134.765)" - id="g10944"> - <path - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - id="id-4e164bba-7629-4047-91ed-d64656cf6ac3" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-672503c2-aa8f-4871-8735-d7f17edc3fe5"> - <g - transform="translate(175.611,134.765)" - id="g10948"> - <path - style="stroke:none" - d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0" - id="id-9a7a7a60-58a9-40f1-990b-035df0126431" /> - </g> - <g - transform="translate(180.841,134.765)" - id="g10951"> - <path - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - id="id-a6198cd5-1efe-4f9d-9fb1-6c7e8f664475" /> - </g> - <g - transform="translate(186.072,134.765)" - id="g10954"> - <path - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - id="id-6005e390-6d3e-4ee8-8e23-e419584fce2c" /> - </g> - <g - transform="translate(191.302,134.765)" - id="g10957"> - <path - style="stroke:none" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - id="id-2c51d056-b779-40c1-9d9f-6c8b26fc4540" /> - </g> - <g - transform="translate(196.532,134.765)" - id="g10960"> - <path - style="stroke:none" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - id="id-e0e52fee-07b7-48e8-975d-5c6ab8590964" /> - </g> - <g - transform="translate(201.763,134.765)" - id="g10963"> - <path - style="stroke:none" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - id="id-033447c7-a454-492e-83e8-ca82f24ed5d4" /> - </g> - <g - transform="translate(206.993,134.765)" - id="g10966"> - <path - style="stroke:none" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - id="id-3849911a-13ab-4253-bd9f-60699e9a33f5" /> - </g> - <g - transform="translate(212.223,134.765)" - id="g10969"> - <path - style="stroke:none" - d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0" - id="id-b5dc4fa5-7d43-47ec-8381-64f5247c6a8b" /> - </g> - </g> - </g> - </g> - <g - transform="matrix(1.27005,0,0,1.27005,-66.835994,184.00393)" - ns9:version="1.0.1" - ns9:texconverter="pdflatex" - ns9:pdfconverter="inkscape" - ns9:text="Une copie compl\\`ete du projet par ordinateur" - ns9:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns9:scale="3.600134362120087" - ns9:alignment="middle center" - ns9:jacobian_sqrt="1.27005" - id="g3785"> - <defs - id="id-19c52f77-0e5b-46ee-9a58-e54579bf0fd2"> - <g - id="g11406"> - <symbol - overflow="visible" - id="symbol11340"> - <path - style="stroke:none" - d="" - id="path11338" /> - </symbol> - <symbol - overflow="visible" - id="symbol11344"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="path11342" /> - </symbol> - <symbol - overflow="visible" - id="symbol11348"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="path11346" /> - </symbol> - <symbol - overflow="visible" - id="symbol11352"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="path11350" /> - </symbol> - <symbol - overflow="visible" - id="symbol11356"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="path11354" /> - </symbol> - <symbol - overflow="visible" - id="symbol11360"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="path11358" /> - </symbol> - <symbol - overflow="visible" - id="symbol11364"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="path11362" /> - </symbol> - <symbol - overflow="visible" - id="symbol11368"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="path11366" /> - </symbol> - <symbol - overflow="visible" - id="symbol11372"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="path11370" /> - </symbol> - <symbol - overflow="visible" - id="symbol11376"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="path11374" /> - </symbol> - <symbol - overflow="visible" - id="symbol11380"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="path11378" /> - </symbol> - <symbol - overflow="visible" - id="symbol11384"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="path11382" /> - </symbol> - <symbol - overflow="visible" - id="symbol11388"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="path11386" /> - </symbol> - <symbol - overflow="visible" - id="symbol11392"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="path11390" /> - </symbol> - <symbol - overflow="visible" - id="symbol11396"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="path11394" /> - </symbol> - <symbol - overflow="visible" - id="symbol11400"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="path11398" /> - </symbol> - <symbol - overflow="visible" - id="symbol11404"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="path11402" /> - </symbol> - </g> - </defs> - <g - id="id-1be4cec7-e480-45f6-b6b1-383ba5c2d0af" - transform="translate(-149.04,-127.812)"> - <g - style="fill:#000000;fill-opacity:1" - id="id-a3cc06f6-c430-491c-a59b-e24c212945b5"> - <g - transform="translate(148.712,134.765)" - id="g3660"> - <path - style="stroke:none" - d="m 5.796875,-2.296875 c 0,1.40625 -0.96875,2.203125 -1.90625,2.203125 -0.46875,0 -1.640625,-0.25 -1.640625,-2.140625 V -6.03125 C 2.25,-6.390625 2.265625,-6.5 3.03125,-6.5 h 0.234375 v -0.3125 c -0.34375,0.03125 -1.078125,0.03125 -1.46875,0.03125 -0.375,0 -1.125,0 -1.46875,-0.03125 V -6.5 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 v 3.765625 c 0,1.390625 1.15625,2.484375 2.515625,2.484375 1.140625,0 2.03125,-0.921875 2.203125,-2.0625 0.03125,-0.203125 0.03125,-0.296875 0.03125,-0.6875 v -3.1875 c 0,-0.328125 0,-0.78125 1.03125,-0.78125 v -0.3125 c -0.359375,0.015625 -0.84375,0.03125 -1.171875,0.03125 -0.359375,0 -0.828125,-0.015625 -1.1875,-0.03125 V -6.5 c 1.015625,0 1.015625,0.46875 1.015625,0.734375 z m 0,0" - id="id-2e0ad103-38cf-4a8b-89e3-7d683499cee0" /> - </g> - <g - transform="translate(156.184,134.765)" - id="g3663"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-d0024700-e6c1-479c-acb0-ccb2c62ca0b3" /> - </g> - <g - transform="translate(161.719,134.765)" - id="g3666"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-ec563eb1-45e8-471b-bcd6-e1aecd6e1dcc" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-9be1d7b1-6e81-4853-bbc4-72c5e332f72c"> - <g - transform="translate(169.464,134.765)" - id="g3670"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-321cc7f9-aeb5-492d-a2a5-59a5037d0c73" /> - </g> - <g - transform="translate(173.891,134.765)" - id="g3673"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-95013b54-a173-4cad-9c67-fb03ae2739b3" /> - </g> - <g - transform="translate(178.873,134.765)" - id="g3676"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-b5bcf778-1a4c-43f4-8db0-e9a3bf38d1f1" /> - </g> - <g - transform="translate(184.408,134.765)" - id="g3679"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-3b188f16-0133-4a66-9c9f-271bf5f3d3f2" /> - </g> - <g - transform="translate(187.176,134.765)" - id="g3682"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-f62626f9-c56f-4251-8260-46d0bd7ab446" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-c97b61ec-2e88-448d-bc39-db00e86763f4"> - <g - transform="translate(194.93,134.765)" - id="g3686"> - <path - style="stroke:none" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - id="id-93bdb93b-29f3-4f52-84fe-0ed5e84d6d67" /> - </g> - <g - transform="translate(199.358,134.765)" - id="g3689"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-d9411857-a5d0-4b33-acc8-b2f06273b9ad" /> - </g> - <g - transform="translate(204.339,134.765)" - id="g3692"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-7236f929-405e-41a4-8af7-4cca2c86d5be" /> - </g> - <g - transform="translate(212.641,134.765)" - id="g3695"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-770c3f91-1bde-44f2-9770-65731661e7ef" /> - </g> - <g - transform="translate(218.176,134.765)" - id="g3698"> - <path - style="stroke:none" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - id="id-1d562c98-cc14-44bb-af91-8dd41d22b896" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-a89aef1f-2c30-459d-8cd3-c1fcfcfd17c8"> - <g - transform="translate(220.665,134.765)" - id="g3702"> - <path - style="stroke:none" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - id="id-24ac5922-031d-420b-85e2-b9296c025fe7" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-2e87fadc-bcc5-46c5-b718-214d2079f4a3"> - <g - transform="translate(220.944,134.765)" - id="g3706"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-9c9b32f6-74f7-476f-a86e-9386f2fd2117" /> - </g> - <g - transform="translate(225.371,134.765)" - id="g3709"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-4464a990-ddc8-40d7-be0f-3d5324462297" /> - </g> - <g - transform="translate(229.246,134.765)" - id="g3712"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-d25507db-7670-4b7b-9ac6-f8c62016f2fe" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-ef786d83-5d1c-4604-8ea7-239e5b9a35bc"> - <g - transform="translate(236.991,134.765)" - id="g3716"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-6e93545b-8a06-47bd-bcf9-979aaa4e885b" /> - </g> - <g - transform="translate(242.526,134.765)" - id="g3719"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-79d93003-b0f3-46a0-ab71-4642e444b4c9" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-1ebd31a7-956a-404c-8750-5df8ddef3088"> - <g - transform="translate(251.379,134.765)" - id="g3723"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-9648819c-4a50-4def-95a8-ad50f2217960" /> - </g> - <g - transform="translate(256.914,134.765)" - id="g3726"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-eb166778-b828-4d16-a639-63e0d60855c0" /> - </g> - <g - transform="translate(260.816,134.765)" - id="g3729"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-1c3322dc-85e4-4a67-ab59-e4e30653f4eb" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-35208bba-57db-414e-a5ca-9750ebae0d09"> - <g - transform="translate(266.355,134.765)" - id="g3733"> - <path - style="stroke:none" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - id="id-d0d21597-f090-4fcf-9a4c-2e7e4d736c71" /> - </g> - <g - transform="translate(269.4,134.765)" - id="g3736"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-0f740ecf-749f-4b5b-81f7-ef20d925fc38" /> - </g> - <g - transform="translate(273.827,134.765)" - id="g3739"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-5861e575-4972-4c03-bbbb-c1c80e51478c" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-2afe4943-82e8-41f6-a654-59be33a5a11e"> - <g - transform="translate(281.019,134.765)" - id="g3743"> - <path - style="stroke:none" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - id="id-f3a425bd-49ac-404f-bdd6-29dc350a7e18" /> - </g> - <g - transform="translate(286.555,134.765)" - id="g3746"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-b652386c-d60b-420f-9632-59c85e0c5fb9" /> - </g> - <g - transform="translate(291.536,134.765)" - id="g3749"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-57bfcb74-5693-48ad-b5aa-2d7291ceb3d3" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-f07e425b-e979-4189-95d1-11dbb0ec048d"> - <g - transform="translate(298.766,134.765)" - id="g3753"> - <path - style="stroke:none" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - id="id-b3abd7f3-af1f-4f03-9512-2fa65d810bfa" /> - </g> - <g - transform="translate(303.747,134.765)" - id="g3756"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-a9cc54f0-b7f6-453e-a7da-5315c310f6c5" /> - </g> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="id-986dc27a-05fc-45b8-ae4a-2aaeb601a0ca"> - <g - transform="translate(307.639,134.765)" - id="g3760"> - <path - style="stroke:none" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - id="id-2f2569f8-d8c5-4c21-adbe-3c530c95da34" /> - </g> - <g - transform="translate(313.175,134.765)" - id="g3763"> - <path - style="stroke:none" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - id="id-aedb9da9-a229-47d7-9876-54c000658c7c" /> - </g> - <g - transform="translate(315.942,134.765)" - id="g3766"> - <path - style="stroke:none" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - id="id-b5065713-54f6-4465-accc-23b748e3fa1e" /> - </g> - <g - transform="translate(321.477,134.765)" - id="g3769"> - <path - style="stroke:none" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - id="id-5fc3e305-a809-4c34-8496-21fb6d9b7db3" /> - </g> - <g - transform="translate(326.459,134.765)" - id="g3772"> - <path - style="stroke:none" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - id="id-fbec162b-611a-4205-a594-e1faa4638bb9" /> - </g> - <g - transform="translate(330.333,134.765)" - id="g3775"> - <path - style="stroke:none" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - id="id-23a2377e-a517-479e-8e30-11096b7ecd77" /> - </g> - <g - transform="translate(334.761,134.765)" - id="g3778"> - <path - style="stroke:none" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - id="id-3744c87e-08de-4c27-98b4-2760d68f9c09" /> - </g> - <g - transform="translate(340.296,134.765)" - id="g3781"> - <path - style="stroke:none" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - id="id-920d5723-170c-47b8-b48e-729666d2128d" /> - </g> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:1.00000003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.00000011,4.00000011;stroke-opacity:1;marker-end:url(#Arrow2Mend-0-7-5);stroke-dashoffset:0" - d="M 84.88014,46.539191 H 30.46848" - id="path1905-5-6-2" /> - <path - style="fill:none;stroke:#000000;stroke-width:1.00000003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.00000011,4.00000011;stroke-opacity:1;marker-end:url(#Arrow2Mend-2-9-3-8);stroke-dashoffset:0" - d="M 28.95664,66.802908 H 83.368305" - id="path1905-6-1-9-6" /> - </g> -</svg> diff --git a/slides/figs/compilation.svg b/slides/figs/compilation.svg deleted file mode 100644 index 2f84b11cbf0983ef63ccc2fc09b363ac2e32711e..0000000000000000000000000000000000000000 --- a/slides/figs/compilation.svg +++ /dev/null @@ -1,1343 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="193.30353mm" - height="105.12206mm" - viewBox="0 0 193.30353 105.12206" - version="1.1" - id="svg8" - inkscape:version="0.92.4 5da689c313, 2019-01-14" - sodipodi:docname="compilation.svg"> - <defs - id="defs2"> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path5274" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-6" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path5274-1" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-5" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path5274-4" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-65" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path5274-6" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-5-3" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path5274-4-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="-76.96868" - inkscape:cy="201.34655" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - showguides="false" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-55.860674,-67.083427)"> - <g - id="g5249" - transform="translate(-18.219522,-16.83798)"> - <rect - y="126.81507" - x="201.55235" - height="7.7508163" - width="23.252449" - id="rect4518-78" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - style="fill:#000000" - transform="matrix(0.74899492,0,0,0.74899492,105.15634,32.010867)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nlibc\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g5172"> - <g - style="fill:#000000" - id="g5170"> - <g - style="fill:#000000;fill-opacity:1" - id="g5168"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(133.768,134.765)" - id="path5160" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path5162" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - transform="translate(144.22873,134.765)" - id="path5164" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path5166" /> - </g> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-65)" - d="m 209.42205,108.3445 13.19335,-7.61718" - id="path5251-9" - inkscape:connector-curvature="0" /> - <g - id="g5193"> - <rect - y="89.598839" - x="55.992966" - height="7.7508163" - width="23.252449" - id="rect4518" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - transform="matrix(0.68979157,0,0,0.68979157,-35.505133,1.2473896)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nprog.c\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g4548"> - <g - id="surface1"> - <g - style="fill:#000000;fill-opacity:1" - id="g4545"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path4533" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path4535" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path4537" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(149.45909,134.765)" - id="path4539" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path4541" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(159.91982,134.765)" - id="path4543" /> - </g> - </g> - </g> - </g> - <g - id="g5217" - transform="translate(-14.553052,-1.68647)"> - <rect - y="91.285309" - x="155.43925" - height="7.7508163" - width="23.252449" - id="rect4518-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - style="fill:#000000" - transform="matrix(0.69119549,0,0,0.69119549,63.942242,2.746152)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nprog.s\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g4769"> - <g - style="fill:#000000" - id="g4767"> - <g - style="fill:#000000;fill-opacity:1" - id="g4765"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path4753" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path4755" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path4757" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(149.45909,134.765)" - id="path4759" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path4761" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - transform="translate(159.91982,134.765)" - id="path4763" /> - </g> - </g> - </g> - </g> - <g - id="g5205" - transform="translate(-3.3270498,1.3373413)"> - <rect - y="88.261497" - x="101.76663" - height="7.7508163" - width="23.252449" - id="rect4518-3" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - style="fill:#000000" - transform="matrix(0.64357431,0,0,0.64357431,17.389567,6.6324273)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nprog.i\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g4852"> - <g - style="fill:#000000" - id="g4850"> - <g - style="fill:#000000;fill-opacity:1" - id="g4848"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path4836" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path4838" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path4840" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(149.45909,134.765)" - id="path4842" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path4844" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(159.91982,134.765)" - id="path4846" /> - </g> - </g> - </g> - </g> - <g - id="g5229" - transform="translate(-15.573678,-1.68647)"> - <rect - y="91.285309" - x="198.90651" - height="7.7508163" - width="23.252449" - id="rect4518-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - style="fill:#000000" - transform="matrix(0.68943546,0,0,0.68943546,107.64515,2.9814724)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nprog.o\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g5018"> - <g - style="fill:#000000" - id="g5016"> - <g - style="fill:#000000;fill-opacity:1" - id="g5014"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path5002" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path5004" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path5006" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(149.45909,134.765)" - id="path5008" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path5010" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(159.91982,134.765)" - id="path5012" /> - </g> - </g> - </g> - </g> - <g - id="g5239" - transform="translate(-30.201457,-0.55253601)"> - <rect - y="90.151375" - x="255.98091" - height="7.7508163" - width="23.252449" - id="rect4518-8" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - style="fill:#000000" - transform="matrix(0.68949533,0,0,0.68949533,168.17149,1.8395336)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nprog\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g5097"> - <g - style="fill:#000000" - id="g5095"> - <g - style="fill:#000000;fill-opacity:1" - id="g5093"> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path5085" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path5087" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path5089" /> - <path - inkscape:connector-curvature="0" - style="stroke:none" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(149.45909,134.765)" - id="path5091" /> - </g> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" - d="M 81.003817,93.478915 H 96.238182" - id="path5251" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6)" - d="m 123.45045,93.478915 h 15.23436" - id="path5251-5" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5)" - d="m 165.89705,93.478915 h 15.23437" - id="path5251-7" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-3)" - d="m 208.34368,93.478915 h 15.23437" - id="path5251-7-4" - inkscape:connector-curvature="0" /> - <g - id="g6303" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{verbatim}\ngcc -o prog prog.c\n\\end{verbatim}" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="translate(-28.182416,-63.275323)"> - <g - id="g6301"> - <g - id="g6269" - style="fill:#000000;fill-opacity:1"> - <path - id="path6263" - transform="translate(133.768,134.765)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6265" - transform="translate(138.99836,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6267" - transform="translate(144.22873,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g6275" - style="fill:#000000;fill-opacity:1"> - <path - id="path6271" - transform="translate(154.68946,134.765)" - d="m 4.203125,-2.703125 c 0.109375,0 0.46875,0 0.46875,-0.34375 0,-0.359375 -0.359375,-0.359375 -0.46875,-0.359375 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.34375,0.34375 0.46875,0.34375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6273" - transform="translate(159.91982,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g6285" - style="fill:#000000;fill-opacity:1"> - <path - id="path6277" - transform="translate(170.38055,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6279" - transform="translate(175.61092,134.765)" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6281" - transform="translate(180.84128,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6283" - transform="translate(186.07165,134.765)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g6299" - style="fill:#000000;fill-opacity:1"> - <path - id="path6287" - transform="translate(196.53238,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6289" - transform="translate(201.76274,134.765)" - d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6291" - transform="translate(206.99311,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6293" - transform="translate(212.22347,134.765)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6295" - transform="translate(217.45384,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path6297" - transform="translate(222.6842,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g6580" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{verbatim}\ncpp\n\\end{verbatim}\n" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="translate(-52.95274,-49.799345)" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6578" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6576" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path - id="path6570" - transform="translate(133.768,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6572" - transform="translate(138.99836,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6574" - transform="translate(144.22873,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g6736" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{verbatim}\nas\n\\end{verbatim}" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="translate(34.790056,-48.72122)" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6734" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6732" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path - id="path6728" - transform="translate(133.768,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6730" - transform="translate(138.99836,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g6866" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{verbatim}\nld\n\\end{verbatim}" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="translate(76.955436,-47.869657)" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6864" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6862" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path - id="path6858" - transform="translate(133.768,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6860" - transform="translate(138.99836,134.765)" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g7003" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{verbatim}\ngcc\n\\end{verbatim}" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="translate(-10.177984,-49.822782)" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g7001" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <g - id="g6999" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1"> - <path - id="path6993" - transform="translate(133.768,134.765)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6995" - transform="translate(138.99836,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <path - id="path6997" - transform="translate(144.22873,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g7491" - ns1:scale="1.0" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:text="\\begin{enumerate}\n\\item Pr\\\'eprocesseur\n\\item Compilation assembleur\n\\item Compilation code objet\n\\item \\\'Edition des liens\n\\end{enumerate}" - ns1:converter="pdf2svg" - ns1:textextver="0.8" - transform="matrix(0.85733819,0,0,0.85733819,-69.504674,5.324288)"> - <g - id="g7489"> - <g - id="g7295" - style="fill:#000000;fill-opacity:1"> - <path - id="path7291" - transform="translate(145.945,134.765)" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7293" - transform="translate(150.9263,134.765)" - d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7301" - style="fill:#000000;fill-opacity:1"> - <path - id="path7297" - transform="translate(158.67521,134.765)" - d="m 2.265625,-3.15625 h 1.6875 c 1.1875,0 2.265625,-0.796875 2.265625,-1.796875 C 6.21875,-5.9375 5.234375,-6.8125 3.875,-6.8125 H 0.34375 V -6.5 h 0.25 c 0.765625,0 0.78125,0.109375 0.78125,0.46875 v 5.25 c 0,0.359375 -0.015625,0.46875 -0.78125,0.46875 h -0.25 V 0 c 0.359375,-0.03125 1.09375,-0.03125 1.46875,-0.03125 0.375,0 1.125,0 1.484375,0.03125 v -0.3125 h -0.25 c -0.765625,0 -0.78125,-0.109375 -0.78125,-0.46875 z m -0.03125,-0.25 v -2.6875 C 2.234375,-6.4375 2.25,-6.5 2.71875,-6.5 h 0.890625 c 1.578125,0 1.578125,1.0625 1.578125,1.546875 0,0.46875 0,1.546875 -1.578125,1.546875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7299" - transform="translate(165.45576,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7305" - style="fill:#000000;fill-opacity:1"> - <path - id="path7303" - transform="translate(169.07915,134.765)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7315" - style="fill:#000000;fill-opacity:1"> - <path - id="path7307" - transform="translate(169.35811,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7309" - transform="translate(173.78549,134.765)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7311" - transform="translate(179.32071,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7313" - transform="translate(183.22306,134.765)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7331" - style="fill:#000000;fill-opacity:1"> - <path - id="path7317" - transform="translate(188.48331,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7319" - transform="translate(192.91069,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7321" - transform="translate(197.33807,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7323" - transform="translate(201.26732,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7325" - transform="translate(205.19657,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7327" - transform="translate(209.62395,134.765)" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7329" - transform="translate(215.15917,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7337" - style="fill:#000000;fill-opacity:1"> - <path - id="path7333" - transform="translate(145.945,154.69)" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7335" - transform="translate(150.9263,154.69)" - d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7361" - style="fill:#000000;fill-opacity:1"> - <path - id="path7339" - transform="translate(158.67521,154.69)" - d="m 0.5625,-3.40625 c 0,2.0625 1.609375,3.625 3.46875,3.625 1.625,0 2.59375,-1.390625 2.59375,-2.546875 C 6.625,-2.421875 6.625,-2.5 6.5,-2.5 6.390625,-2.5 6.390625,-2.4375 6.375,-2.328125 6.296875,-0.90625 5.234375,-0.09375 4.140625,-0.09375 c -0.609375,0 -2.5625,-0.328125 -2.5625,-3.3125 0,-2.96875 1.953125,-3.3125 2.5625,-3.3125 1.078125,0 1.96875,0.90625 2.171875,2.359375 C 6.328125,-4.21875 6.328125,-4.1875 6.46875,-4.1875 6.625,-4.1875 6.625,-4.21875 6.625,-4.421875 V -6.78125 c 0,-0.171875 0,-0.25 -0.109375,-0.25 -0.03125,0 -0.078125,0 -0.15625,0.125 l -0.5,0.734375 C 5.5,-6.53125 4.984375,-7.03125 4.03125,-7.03125 c -1.875,0 -3.46875,1.59375 -3.46875,3.625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7341" - transform="translate(165.8702,154.69)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7343" - transform="translate(170.8515,154.69)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7345" - transform="translate(179.15333,154.69)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7347" - transform="translate(184.68855,154.69)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7349" - transform="translate(187.45616,154.69)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7351" - transform="translate(190.22378,154.69)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7353" - transform="translate(195.20508,154.69)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7355" - transform="translate(199.07953,154.69)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7357" - transform="translate(201.84714,154.69)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7359" - transform="translate(206.82844,154.69)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7373" - style="fill:#000000;fill-opacity:1"> - <path - id="path7363" - transform="translate(215.68121,154.69)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7365" - transform="translate(220.66251,154.69)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7367" - transform="translate(224.59176,154.69)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7369" - transform="translate(228.52101,154.69)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7371" - transform="translate(232.94839,154.69)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7385" - style="fill:#000000;fill-opacity:1"> - <path - id="path7375" - transform="translate(240.98123,154.69)" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7377" - transform="translate(246.51645,154.69)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7379" - transform="translate(249.28406,154.69)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7381" - transform="translate(253.71144,154.69)" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7383" - transform="translate(259.24666,154.69)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7391" - style="fill:#000000;fill-opacity:1"> - <path - id="path7387" - transform="translate(145.945,174.615)" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7389" - transform="translate(150.9263,174.615)" - d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7415" - style="fill:#000000;fill-opacity:1"> - <path - id="path7393" - transform="translate(158.67521,174.615)" - d="m 0.5625,-3.40625 c 0,2.0625 1.609375,3.625 3.46875,3.625 1.625,0 2.59375,-1.390625 2.59375,-2.546875 C 6.625,-2.421875 6.625,-2.5 6.5,-2.5 6.390625,-2.5 6.390625,-2.4375 6.375,-2.328125 6.296875,-0.90625 5.234375,-0.09375 4.140625,-0.09375 c -0.609375,0 -2.5625,-0.328125 -2.5625,-3.3125 0,-2.96875 1.953125,-3.3125 2.5625,-3.3125 1.078125,0 1.96875,0.90625 2.171875,2.359375 C 6.328125,-4.21875 6.328125,-4.1875 6.46875,-4.1875 6.625,-4.1875 6.625,-4.21875 6.625,-4.421875 V -6.78125 c 0,-0.171875 0,-0.25 -0.109375,-0.25 -0.03125,0 -0.078125,0 -0.15625,0.125 l -0.5,0.734375 C 5.5,-6.53125 4.984375,-7.03125 4.03125,-7.03125 c -1.875,0 -3.46875,1.59375 -3.46875,3.625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7395" - transform="translate(165.8702,174.615)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7397" - transform="translate(170.8515,174.615)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.65625,0 -0.765625,0 -0.765625,-0.4375 v -1.84375 c 0,-1.03125 0.703125,-1.59375 1.34375,-1.59375 0.625,0 0.734375,0.53125 0.734375,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.265625,0 0.78125,0.015625 1.125,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.78125,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 -0.828125,0 -1.28125,0.59375 -1.4375,0.984375 C 4.390625,-4.296875 3.65625,-4.40625 3.203125,-4.40625 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7399" - transform="translate(179.15333,174.615)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7401" - transform="translate(184.68855,174.615)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7403" - transform="translate(187.45616,174.615)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7405" - transform="translate(190.22378,174.615)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7407" - transform="translate(195.20508,174.615)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7409" - transform="translate(199.07953,174.615)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7411" - transform="translate(201.84714,174.615)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7413" - transform="translate(206.82844,174.615)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7421" - style="fill:#000000;fill-opacity:1"> - <path - id="path7417" - transform="translate(215.68121,174.615)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7419" - transform="translate(220.10859,174.615)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7427" - style="fill:#000000;fill-opacity:1"> - <path - id="path7423" - transform="translate(225.36884,174.615)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7425" - transform="translate(230.90406,174.615)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7433" - style="fill:#000000;fill-opacity:1"> - <path - id="path7429" - transform="translate(238.64899,174.615)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7431" - transform="translate(243.63029,174.615)" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7441" - style="fill:#000000;fill-opacity:1"> - <path - id="path7435" - transform="translate(249.72341,174.615)" - d="m 2.09375,-4.40625 -1.515625,0.109375 v 0.3125 c 0.765625,0 0.859375,0.0625 0.859375,0.5625 v 3.9375 c 0,0.453125 -0.09375,1.3125 -0.734375,1.3125 -0.046875,0 -0.28125,0 -0.53125,-0.140625 C 0.3125,1.65625 0.515625,1.515625 0.515625,1.25 0.515625,0.984375 0.34375,0.78125 0.0625,0.78125 c -0.28125,0 -0.46875,0.203125 -0.46875,0.46875 0,0.515625 0.5625,0.796875 1.140625,0.796875 C 1.46875,2.046875 2.09375,1.40625 2.09375,0.5 Z m 0,-1.734375 c 0,-0.296875 -0.234375,-0.53125 -0.53125,-0.53125 -0.28125,0 -0.53125,0.234375 -0.53125,0.53125 0,0.28125 0.25,0.53125 0.53125,0.53125 0.296875,0 0.53125,-0.25 0.53125,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7437" - transform="translate(252.76798,174.615)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7439" - transform="translate(257.19536,174.615)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7447" - style="fill:#000000;fill-opacity:1"> - <path - id="path7443" - transform="translate(145.945,194.541)" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7445" - transform="translate(150.9263,194.541)" - d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7451" - style="fill:#000000;fill-opacity:1"> - <path - id="path7449" - transform="translate(159.574,192.022)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7467" - style="fill:#000000;fill-opacity:1"> - <path - id="path7453" - transform="translate(158.675,194.541)" - d="m 1.359375,-0.78125 c 0,0.359375 -0.03125,0.46875 -0.796875,0.46875 H 0.328125 V 0 h 5.75 L 6.5,-2.578125 H 6.25 C 6,-1.03125 5.765625,-0.3125 4.0625,-0.3125 H 2.734375 C 2.265625,-0.3125 2.25,-0.375 2.25,-0.703125 V -3.375 h 0.890625 c 0.96875,0 1.078125,0.328125 1.078125,1.171875 h 0.25 V -4.84375 h -0.25 c 0,0.859375 -0.109375,1.171875 -1.078125,1.171875 H 2.25 v -2.40625 c 0,-0.328125 0.015625,-0.390625 0.484375,-0.390625 h 1.28125 c 1.53125,0 1.796875,0.546875 1.953125,1.9375 h 0.25 l -0.28125,-2.25 H 0.328125 v 0.3125 H 0.5625 c 0.765625,0 0.796875,0.109375 0.796875,0.46875 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7455" - transform="translate(165.45555,194.541)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7457" - transform="translate(170.99077,194.541)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7459" - transform="translate(173.75838,194.541)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7461" - transform="translate(177.63283,194.541)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7463" - transform="translate(180.40044,194.541)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7465" - transform="translate(185.38174,194.541)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7475" - style="fill:#000000;fill-opacity:1"> - <path - id="path7469" - transform="translate(194.23451,194.541)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7471" - transform="translate(199.76973,194.541)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7473" - transform="translate(204.19711,194.541)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - <g - id="g7487" - style="fill:#000000;fill-opacity:1"> - <path - id="path7477" - transform="translate(211.45387,194.541)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7479" - transform="translate(214.22148,194.541)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7481" - transform="translate(216.98909,194.541)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7483" - transform="translate(221.41647,194.541)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - <path - id="path7485" - transform="translate(226.95169,194.541)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/compilation_plusieurs.svg b/slides/figs/compilation_plusieurs.svg deleted file mode 100644 index 29e644518092755cbe2d0bdc8f958b00e3a5e19e..0000000000000000000000000000000000000000 --- a/slides/figs/compilation_plusieurs.svg +++ /dev/null @@ -1,1513 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="compilation_plusieurs.svg" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - id="svg8" - version="1.1" - viewBox="0 0 200.44448 96.390798" - height="96.3908mm" - width="200.44447mm"> - <sodipodi:namedview - fit-margin-bottom="0" - fit-margin-right="0" - fit-margin-left="0" - fit-margin-top="0" - showguides="false" - inkscape:window-maximized="1" - inkscape:window-y="24" - inkscape:window-x="0" - inkscape:window-height="1028" - inkscape:window-width="1920" - showgrid="false" - inkscape:current-layer="layer1" - inkscape:document-units="mm" - inkscape:cy="232.62524" - inkscape:cx="277.6883" - inkscape:zoom="1.4" - inkscape:pageshadow="2" - inkscape:pageopacity="0.0" - borderopacity="1.0" - bordercolor="#666666" - pagecolor="#ffffff" - id="base" /> - <defs - id="defs2"> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-6" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-1" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-65" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-6" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-3" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-7" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-3-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-7-0" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-3" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-6-6" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-1-0" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-62" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-61" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-6-68" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-1-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-4" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-3" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-4-0" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-3-9" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-6-68-1" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-1-8-7" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-7-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-8-1" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-4-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-3-8" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-6-68-4" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-1-8-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-7-1" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-8-0" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-3-8" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-7-6" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-3-4" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-7-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-5-3-89" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path5274-4-7-7" - inkscape:connector-curvature="0" /> - </marker> - </defs> - <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(-48.71971,-80.535968)" - id="layer1" - inkscape:groupmode="layer" - inkscape:label="Layer 1"> - <rect - y="169.04366" - x="183.33282" - height="7.7508163" - width="23.252449" - id="rect4518-78" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5251-9" - d="m 209.64346,172.36274 23.46227,-70.69998" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-65)" /> - <rect - y="89.598839" - x="225.77945" - height="7.7508163" - width="23.252449" - id="rect4518-8" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <path - inkscape:connector-curvature="0" - id="path5251-7-4" - d="m 208.34368,93.478915 h 15.23437" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-3)" /> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - transform="translate(-52.95274,-49.799345)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\ncpp\n\\end{verbatim}\n" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g6580"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6578"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6576"> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(133.768,134.765)" - id="path6570" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(138.99836,134.765)" - id="path6572" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(144.22873,134.765)" - id="path6574" /> - </g> - </g> - </g> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - transform="translate(34.790056,-48.72122)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nas\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g6736"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6734"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6732"> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - transform="translate(133.768,134.765)" - id="path6728" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path6730" /> - </g> - </g> - </g> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - transform="translate(76.955436,-47.869657)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\nld\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g6866"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6864"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6862"> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(133.768,134.765)" - id="path6858" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0" - transform="translate(138.99836,134.765)" - id="path6860" /> - </g> - </g> - </g> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - transform="translate(-10.177984,-49.822782)" - ns1:textextver="0.8" - ns1:converter="pdf2svg" - ns1:text="\\begin{verbatim}\ngcc\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/default_packages.tex" - ns1:scale="1.0" - id="g7003"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g7001"> - <g - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - id="g6999"> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - transform="translate(133.768,134.765)" - id="path6993" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path6995" /> - <path - inkscape:connector-curvature="0" - style="fill:#0000bd;fill-opacity:1;stroke:none;stroke-opacity:1" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(144.22873,134.765)" - id="path6997" /> - </g> - </g> - </g> - <g - id="g2763" - style="fill:#000000" - ns1:jacobian_sqrt="0.689495" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nexec\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.689495,0,0,0.689495,137.97547,2.046566)"> - <g - style="fill:#000000" - id="g2761"> - <g - id="g2759" - style="fill:#000000;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - id="path2751" - transform="translate(133.768,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" /> - <path - inkscape:connector-curvature="0" - id="path2753" - transform="translate(138.99836,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" /> - <path - inkscape:connector-curvature="0" - id="path2755" - transform="translate(144.22873,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" /> - <path - inkscape:connector-curvature="0" - id="path2757" - transform="translate(149.45909,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" /> - </g> - </g> - </g> - <g - id="g5386"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect4518" - width="23.252449" - height="7.7508163" - x="55.992966" - y="89.598839" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect4518-2" - width="23.252449" - height="7.7508163" - x="140.8862" - y="89.598839" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect4518-3" - width="23.252449" - height="7.7508163" - x="98.439583" - y="89.598839" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect4518-7" - width="23.252449" - height="7.7508163" - x="183.33282" - y="89.598839" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" - d="M 81.003817,93.478915 H 96.238182" - id="path5251" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6)" - d="m 123.45045,93.478915 h 15.23436" - id="path5251-5" - inkscape:connector-curvature="0" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5)" - d="m 165.89705,93.478915 h 15.23437" - id="path5251-7" - inkscape:connector-curvature="0" /> - <rect - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" - id="rect4518-6" - width="23.252449" - height="7.7508163" - x="48.852001" - y="95.328064" /> - <g - id="g3608" - ns1:jacobian_sqrt="0.689792" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.c\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.689792,0,0,0.689792,-28.936151,2.0071824)"> - <g - id="surface1"> - <g - id="g3605" - style="fill:#000000;fill-opacity:1"> - <path - id="path3601" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3603" - transform="translate(138.99836,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.689792,0,0,0.689792,-36.238783,8.345361)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.h\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689792" - id="g3991"> - <g - id="g3989"> - <g - style="fill:#000000;fill-opacity:1" - id="g3987"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path3983" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path3985" /> - </g> - </g> - </g> - <g - id="g4417" - style="fill:#000000" - ns1:jacobian_sqrt="0.643574" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.i\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.643574,0,0,0.643574,20.191465,8.703888)"> - <g - style="fill:#000000" - id="g4415"> - <g - id="g4413" - style="fill:#000000;fill-opacity:1"> - <path - id="path4409" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4411" - transform="translate(138.99836,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.691195,0,0,0.691195,55.97167,1.8211442)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.s\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.691195" - style="fill:#000000" - id="g4778"> - <g - id="g4776" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g4774"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path4770" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path4772" /> - </g> - </g> - </g> - <g - id="g5131" - style="fill:#000000" - ns1:jacobian_sqrt="0.689435" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.o\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.689435,0,0,0.689435,98.637187,2.0545225)"> - <g - style="fill:#000000" - id="g5129"> - <g - id="g5127" - style="fill:#000000;fill-opacity:1"> - <path - id="path5123" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path5125" - transform="translate(138.99836,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> - <rect - y="109.89868" - x="55.992962" - height="7.7508163" - width="23.252449" - id="rect4518-1" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="109.89868" - x="140.88618" - height="7.7508163" - width="23.252449" - id="rect4518-2-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="109.89868" - x="98.43959" - height="7.7508163" - width="23.252449" - id="rect4518-3-9" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="109.89868" - x="183.33281" - height="7.7508163" - width="23.252449" - id="rect4518-7-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <path - inkscape:connector-curvature="0" - id="path5251-0" - d="m 81.003819,113.77875 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4)" /> - <path - inkscape:connector-curvature="0" - id="path5251-5-6" - d="m 123.45045,113.77875 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6-68)" /> - <path - inkscape:connector-curvature="0" - id="path5251-7-8" - d="m 165.89705,113.77875 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-7)" /> - <rect - y="115.62791" - x="48.852001" - height="7.7508163" - width="23.252449" - id="rect4518-6-9" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - transform="matrix(0.68979201,0,0,0.68979201,-28.936154,22.307024)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.c\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689792" - id="g3608-2"> - <g - id="surface1-6"> - <g - style="fill:#000000;fill-opacity:1" - id="g3605-6"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path3601-4" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path3603-9" /> - </g> - </g> - </g> - <g - id="g3991-5" - ns1:jacobian_sqrt="0.689792" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.h\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.68979201,0,0,0.68979201,-36.238786,28.645202)"> - <g - id="g3989-0"> - <g - id="g3987-4" - style="fill:#000000;fill-opacity:1"> - <path - id="path3983-8" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3985-7" - transform="translate(138.99836,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.64357401,0,0,0.64357401,20.191463,29.003729)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.i\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.643574" - style="fill:#000000" - id="g4417-1"> - <g - id="g4415-7" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g4413-2"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path4409-7" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path4411-2" /> - </g> - </g> - </g> - <g - id="g4778-2" - style="fill:#000000" - ns1:jacobian_sqrt="0.691195" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.s\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.69119501,0,0,0.69119501,55.971669,22.120985)"> - <g - style="fill:#000000" - id="g4776-6"> - <g - id="g4774-1" - style="fill:#000000;fill-opacity:1"> - <path - id="path4770-0" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4772-6" - transform="translate(138.99836,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.689435,0,0,0.689435,98.637179,22.354363)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.o\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689435" - style="fill:#000000" - id="g5131-1"> - <g - id="g5129-5" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g5127-9"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path5123-4" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path5125-9" /> - </g> - </g> - </g> - <rect - y="130.19853" - x="55.992962" - height="7.7508163" - width="23.252449" - id="rect4518-1-5" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="130.19853" - x="140.88618" - height="7.7508163" - width="23.252449" - id="rect4518-2-4-9" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="130.19853" - x="98.43959" - height="7.7508163" - width="23.252449" - id="rect4518-3-9-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="130.19853" - x="183.33281" - height="7.7508163" - width="23.252449" - id="rect4518-7-2-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <path - inkscape:connector-curvature="0" - id="path5251-0-6" - d="m 81.003819,134.0786 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4-0)" /> - <path - inkscape:connector-curvature="0" - id="path5251-5-6-7" - d="m 123.45045,134.0786 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6-68-1)" /> - <path - inkscape:connector-curvature="0" - id="path5251-7-8-3" - d="m 165.89705,134.0786 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-7-7)" /> - <rect - y="135.92775" - x="48.852001" - height="7.7508163" - width="23.252449" - id="rect4518-6-9-6" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - transform="matrix(0.68979201,0,0,0.68979201,-28.936154,42.60687)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.c\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689792" - id="g3608-2-5"> - <g - id="surface1-6-6"> - <g - style="fill:#000000;fill-opacity:1" - id="g3605-6-3"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path3601-4-9" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path3603-9-4" /> - </g> - </g> - </g> - <g - id="g3991-5-8" - ns1:jacobian_sqrt="0.689792" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.h\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.68979201,0,0,0.68979201,-36.238786,48.945048)"> - <g - id="g3989-0-1"> - <g - id="g3987-4-2" - style="fill:#000000;fill-opacity:1"> - <path - id="path3983-8-9" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3985-7-3" - transform="translate(138.99836,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.64357401,0,0,0.64357401,20.191463,49.303575)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.i\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.643574" - style="fill:#000000" - id="g4417-1-9"> - <g - id="g4415-7-0" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g4413-2-8"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path4409-7-8" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path4411-2-5" /> - </g> - </g> - </g> - <g - id="g4778-2-0" - style="fill:#000000" - ns1:jacobian_sqrt="0.691195" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.s\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.69119501,0,0,0.69119501,55.971669,42.420831)"> - <g - style="fill:#000000" - id="g4776-6-9"> - <g - id="g4774-1-6" - style="fill:#000000;fill-opacity:1"> - <path - id="path4770-0-3" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4772-6-8" - transform="translate(138.99836,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.689435,0,0,0.689435,98.637179,42.654209)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.o\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689435" - style="fill:#000000" - id="g5131-1-5"> - <g - id="g5129-5-6" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g5127-9-1"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path5123-4-1" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path5125-9-5" /> - </g> - </g> - </g> - <rect - y="150.49838" - x="55.992962" - height="7.7508163" - width="23.252449" - id="rect4518-1-0" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="150.49838" - x="140.88618" - height="7.7508163" - width="23.252449" - id="rect4518-2-4-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="150.49838" - x="98.43959" - height="7.7508163" - width="23.252449" - id="rect4518-3-9-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <rect - y="150.49838" - x="183.33281" - height="7.7508163" - width="23.252449" - id="rect4518-7-2-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <path - inkscape:connector-curvature="0" - id="path5251-0-4" - d="m 81.003819,154.37844 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-4-9)" /> - <path - inkscape:connector-curvature="0" - id="path5251-5-6-76" - d="m 123.45045,154.37844 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-6-68-4)" /> - <path - inkscape:connector-curvature="0" - id="path5251-7-8-31" - d="m 165.89705,154.37844 h 15.23436" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-7-1)" /> - <rect - y="156.2276" - x="48.852001" - height="7.7508163" - width="23.252449" - id="rect4518-6-9-7" - style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:normal" /> - <g - transform="matrix(0.68979201,0,0,0.68979201,-28.936154,62.906714)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.c\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689792" - id="g3608-2-59"> - <g - id="surface1-6-62"> - <g - style="fill:#000000;fill-opacity:1" - id="g3605-6-1"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path3601-4-7" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path3603-9-8" /> - </g> - </g> - </g> - <g - id="g3991-5-5" - ns1:jacobian_sqrt="0.689792" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.h\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.68979201,0,0,0.68979201,-36.238786,69.244892)"> - <g - id="g3989-0-7"> - <g - id="g3987-4-4" - style="fill:#000000;fill-opacity:1"> - <path - id="path3983-8-1" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3985-7-8" - transform="translate(138.99836,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.64357401,0,0,0.64357401,20.191463,69.603419)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.i\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.643574" - style="fill:#000000" - id="g4417-1-5"> - <g - id="g4415-7-9" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g4413-2-7"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path4409-7-5" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path4411-2-3" /> - </g> - </g> - </g> - <g - id="g4778-2-8" - style="fill:#000000" - ns1:jacobian_sqrt="0.691195" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n.s\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.69119501,0,0,0.69119501,55.971669,62.720675)"> - <g - style="fill:#000000" - id="g4776-6-8"> - <g - id="g4774-1-3" - style="fill:#000000;fill-opacity:1"> - <path - id="path4770-0-1" - transform="translate(133.768,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4772-6-89" - transform="translate(138.99836,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.689435,0,0,0.689435,98.637179,62.954053)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n.o\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.689435" - style="fill:#000000" - id="g5131-1-6"> - <g - id="g5129-5-4" - style="fill:#000000"> - <g - style="fill:#000000;fill-opacity:1" - id="g5127-9-3"> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(133.768,134.765)" - id="path5123-4-3" /> - <path - inkscape:connector-curvature="0" - style="fill:#000000;stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path5125-9-3" /> - </g> - </g> - </g> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5251-7-4-0" - d="M 208.34368,113.77875 223.81811,99.324155" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-3-8)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5251-7-4-8" - d="m 208.34368,134.0786 17.90706,-32.60689" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-3-4)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path5251-7-4-7" - d="m 208.34368,154.37844 21.71565,-52.90673" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-5-3-89)" /> - <g - id="g8771" - style="fill:#000000" - ns1:jacobian_sqrt="0.748995" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nlibs\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.748995,0,0,0.748995,86.960211,74.239437)"> - <g - style="fill:#000000" - id="g8769"> - <g - id="g8767" - style="fill:#000000;fill-opacity:1"> - <path - id="path8759" - transform="translate(133.768,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8761" - transform="translate(138.99836,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8763" - transform="translate(144.22873,134.765)" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8765" - transform="translate(149.45909,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="fill:#000000;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/complex_makefile.svg b/slides/figs/complex_makefile.svg deleted file mode 100644 index d54a91199a03719996c1c3f8508848f1c0ed6ac5..0000000000000000000000000000000000000000 --- a/slides/figs/complex_makefile.svg +++ /dev/null @@ -1,403 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="277.53931mm" - height="175.28888mm" - viewBox="0 0 277.53931 175.28888" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="complex_makefile.svg"> - <defs - id="defs2" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="39.609303" - inkscape:cy="161.65496" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1884" - inkscape:window-height="1052" - inkscape:window-x="36" - inkscape:window-y="0" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-19.203678,-16.084042)"> - <g - id="g925" - transform="translate(0,25.339999)"> - <rect - y="68.010948" - x="60.948757" - height="20.543156" - width="77.617569" - id="rect815-7" - style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="68.222862" - x="174.48186" - height="20.543156" - width="77.617569" - id="rect815-5" - style="opacity:1;fill:#ff4900;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(1.968835,0,0,1.968835,-193.89144,-251.72253)" - style="fill:#000000;fill-opacity:1" - id="g879"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - transform="translate(133.768,170.63)" - id="path867" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - transform="translate(138.99836,170.63)" - id="path869" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(144.22873,170.63)" - id="path871" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - transform="translate(149.45909,170.63)" - id="path873" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,170.63)" - id="path875" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(159.91982,170.63)" - id="path877" /> - </g> - <g - transform="matrix(1.968835,0,0,1.968835,-85.67641,-275.04803)" - style="fill:#000000;fill-opacity:1" - id="g895"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(133.768,182.585)" - id="path881" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(138.99836,182.585)" - id="path883" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(144.22873,182.585)" - id="path885" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(149.45909,182.585)" - id="path887" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(154.68946,182.585)" - id="path889" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(159.91982,182.585)" - id="path891" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(165.15019,182.585)" - id="path893" /> - </g> - </g> - <g - id="g906" - transform="translate(0,8.0744425e-6)"> - <rect - y="17.017817" - x="218.19165" - height="20.543156" - width="77.617569" - id="rect815-6" - style="opacity:1;fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="17.017813" - x="122.16571" - height="20.543156" - width="77.617569" - id="rect815-3" - style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(1.968835,0,0,1.968835,-42.41267,-279.17822)" - style="fill:#000000;fill-opacity:1" - id="g865"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(133.768,158.675)" - id="path851" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(138.99836,158.675)" - id="path853" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(144.22873,158.675)" - id="path855" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(149.45909,158.675)" - id="path857" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(154.68946,158.675)" - id="path859" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(159.91982,158.675)" - id="path861" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(165.15019,158.675)" - id="path863" /> - </g> - <rect - y="17.017813" - x="20.137457" - height="20.543156" - width="77.617561" - id="rect815" - style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(1.968835,0,0,1.968835,-234.68736,-232.10339)" - style="fill:#000000;fill-opacity:1" - id="g833"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - transform="translate(133.768,134.765)" - id="path821" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path823" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(144.22873,134.765)" - id="path825" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - transform="translate(149.45909,134.765)" - id="path827" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path829" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(159.91982,134.765)" - id="path831" /> - </g> - <g - transform="matrix(1.968835,0,0,1.968835,-137.97717,-255.64081)" - style="fill:#000000;fill-opacity:1" - id="g849"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(133.768,146.72)" - id="path835" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(138.99836,146.72)" - id="path837" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(144.22873,146.72)" - id="path839" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(149.45909,146.72)" - id="path841" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(154.68946,146.72)" - id="path843" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - transform="translate(159.91982,146.72)" - id="path845" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(165.15019,146.72)" - id="path847" /> - </g> - </g> - <g - id="g878" - transform="translate(0,51.850288)"> - <rect - y="118.0457" - x="122.16571" - height="20.543156" - width="77.617569" - id="rect815-35" - style="opacity:1;fill:#ff9d00;fill-opacity:1;stroke:#000000;stroke-width:1.86755812;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(1.968835,0,0,1.968835,-127.69482,-248.76459)" - style="fill:#000000;fill-opacity:1" - id="g907"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - transform="translate(133.768,194.541)" - id="path897" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(138.99836,194.541)" - id="path899" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(144.22873,194.541)" - id="path901" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - transform="translate(149.45909,194.541)" - id="path903" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - transform="translate(154.68946,194.541)" - id="path905" /> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 116.82238,113.9295 27.34676,55.76327" - id="path1231-6-2-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 198.99759,114.28683 171.65083,170.0501" - id="path1231-6-2-1-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 80.936549,37.179688 108.28331,92.942959" - id="path1231-6-2-1-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 235.09432,37.557663 207.74756,93.320934" - id="path1231-6-2-1-3-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 172.59578,37.557662 27.34676,55.763273" - id="path1231-6-2-1-3-7-5-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - </g> -</svg> diff --git a/slides/figs/double_pointeur.svg b/slides/figs/double_pointeur.svg deleted file mode 100644 index f5d9e0ce990c493c23632624953dc22418a5f7dc..0000000000000000000000000000000000000000 --- a/slides/figs/double_pointeur.svg +++ /dev/null @@ -1,1038 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="117.85585mm" - height="69.457565mm" - viewBox="0 0 117.85585 69.457565" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="double_pointeur.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="315.8288" - inkscape:cy="-61.564781" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - id="grid819" - type="xygrid" - originx="12.371789" - originy="-153.88771" /> - </sodipodi:namedview> - <defs - id="defs2"> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3034" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3314" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3312" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lstart" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lstart" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(1.1,0,0,1.1,1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path8951" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7-2" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-3" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-4" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-2" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-8" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-27" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-7-2" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-27-6" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-0" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-0" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-11" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-5" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-6" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-6" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-56" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-6" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-2" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3034-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" - inkscape:connector-curvature="0" /> - </marker> - </defs> - <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="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(12.37179,-73.654735)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7" - width="14.198196" - height="9.260417" - x="79.160576" - y="78.20607" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-29-6" - width="14.198196" - height="9.260417" - x="79.160576" - y="103.03862" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-3-2" - width="14.198196" - height="9.260417" - x="79.160576" - y="128.4003" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend)" - d="m 79.160575,103.0386 c -5.07547,-6.032767 -4.54955,-9.858637 -0.42243,-15.042937" - id="path2993-9-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - transform="matrix(0.553583,0,0,0.553583,10.76347,9.9496393)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n2\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.56921106203" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.553583" - id="g20880"> - <g - id="g20878"> - <g - style="fill:#000000;fill-opacity:1" - id="g20876"> - <path - style="stroke:none;stroke-width:0" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - transform="translate(133.768,134.765)" - id="path20874" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g21228" - ns1:jacobian_sqrt="1.0" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nint a = 2;\nint *b = &a;\nint **c = &b;\n...\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.86022839,0,0,0.86022839,-128.11487,-32.111373)"> - <g - id="g21226"> - <g - id="g21148" - style="fill:#000000;fill-opacity:1"> - <path - id="path21142" - transform="translate(133.768,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21144" - transform="translate(138.99836,134.765)" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21146" - transform="translate(144.22873,134.765)" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21152" - style="fill:#000000;fill-opacity:1"> - <path - id="path21150" - transform="translate(154.68946,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21156" - style="fill:#000000;fill-opacity:1"> - <path - id="path21154" - transform="translate(165.15019,134.765)" - d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21162" - style="fill:#000000;fill-opacity:1"> - <path - id="path21158" - transform="translate(175.61092,134.765)" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21160" - transform="translate(180.84128,134.765)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21170" - style="fill:#000000;fill-opacity:1"> - <path - id="path21164" - transform="translate(133.768,146.72)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21166" - transform="translate(138.99836,146.72)" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21168" - transform="translate(144.22873,146.72)" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21176" - style="fill:#000000;fill-opacity:1"> - <path - id="path21172" - transform="translate(154.68946,146.72)" - d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21174" - transform="translate(159.91982,146.72)" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21180" - style="fill:#000000;fill-opacity:1"> - <path - id="path21178" - transform="translate(170.38055,146.72)" - d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21188" - style="fill:#000000;fill-opacity:1"> - <path - id="path21182" - transform="translate(180.84128,146.72)" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21184" - transform="translate(186.07165,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21186" - transform="translate(191.30201,146.72)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21196" - style="fill:#000000;fill-opacity:1"> - <path - id="path21190" - transform="translate(133.768,158.675)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21192" - transform="translate(138.99836,158.675)" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21194" - transform="translate(144.22873,158.675)" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21204" - style="fill:#000000;fill-opacity:1"> - <path - id="path21198" - transform="translate(154.68946,158.675)" - d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21200" - transform="translate(159.91982,158.675)" - d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21202" - transform="translate(165.15019,158.675)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21208" - style="fill:#000000;fill-opacity:1"> - <path - id="path21206" - transform="translate(175.61092,158.675)" - d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21216" - style="fill:#000000;fill-opacity:1"> - <path - id="path21210" - transform="translate(186.07165,158.675)" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21212" - transform="translate(191.30201,158.675)" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21214" - transform="translate(196.53238,158.675)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g21224" - style="fill:#000000;fill-opacity:1"> - <path - id="path21218" - transform="translate(133.768,170.63)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21220" - transform="translate(138.99836,170.63)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path21222" - transform="translate(144.22873,170.63)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.718988,0,0,0.718988,-2.1578655,-20.082876)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\na\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807537012" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g21542"> - <g - id="surface1"> - <g - style="fill:#000000;fill-opacity:1" - id="g21539"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - transform="translate(133.768,134.765)" - id="path21537" /> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-9)" - d="m 79.160575,128.40028 c -5.07547,-6.03277 -4.54955,-9.85864 -0.422431,-15.04294" - id="path2993-9-2-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - id="g22822" - ns1:jacobian_sqrt="0.553583" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="1.56921106203" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n10\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.553583,0,0,0.553583,9.164378,18.97642)"> - <g - id="g22820"> - <g - id="g22818" - style="fill:#000000;fill-opacity:1"> - <path - id="path22814" - transform="translate(133.768,134.765)" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path22816" - transform="translate(138.99836,134.765)" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g22822-3" - ns1:jacobian_sqrt="0.553583" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="1.56921106203" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n10\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.553583,0,0,0.553583,9.164378,34.751914)"> - <g - id="g22820-0"> - <g - id="g22818-9" - style="fill:#000000;fill-opacity:1"> - <path - id="path22814-2" - transform="translate(133.768,134.765)" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path22816-5" - transform="translate(138.99836,134.765)" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.553583,0,0,0.553583,9.3114234,60.113593)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n20\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.56921106203" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.553583" - id="g23192"> - <g - id="g23190"> - <g - style="fill:#000000;fill-opacity:1" - id="g23188"> - <path - style="stroke:none;stroke-width:0" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - transform="translate(133.768,134.765)" - id="path23184" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path23186" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.553583,0,0,0.553583,9.3114234,42.539117)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n20\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.56921106203" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.553583" - id="g23192-2"> - <g - id="g23190-2"> - <g - style="fill:#000000;fill-opacity:1" - id="g23188-4"> - <path - style="stroke:none;stroke-width:0" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - transform="translate(133.768,134.765)" - id="path23184-7" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path23186-7" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g23550" - ns1:jacobian_sqrt="0.718988" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.03807539847" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n&a\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.718988,0,0,0.718988,-1.9668848,4.6623863)"> - <g - id="g23548"> - <g - id="g23546" - style="fill:#000000;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - id="path23542" - transform="translate(133.768,134.765)" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - style="stroke:none;stroke-width:0" /> - <path - inkscape:connector-curvature="0" - id="path23544" - transform="translate(138.99836,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" /> - </g> - </g> - </g> - <g - transform="matrix(0.718988,0,0,0.718988,-1.9668848,30.085223)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n&&a\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807542682" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g23859"> - <g - id="g23857"> - <g - style="fill:#000000;fill-opacity:1" - id="g23855"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(133.768,134.765)" - id="path23849" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path23851" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - transform="translate(144.22873,134.765)" - id="path23853" /> - </g> - </g> - </g> - <g - id="g24178" - ns1:jacobian_sqrt="0.553583" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="1.56921106203" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\n30\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.553583,0,0,0.553583,9.3330478,68.448138)"> - <g - id="g24176"> - <g - id="g24174" - style="fill:#000000;fill-opacity:1"> - <path - id="path24170" - transform="translate(133.768,134.765)" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path24172" - transform="translate(138.99836,134.765)" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.718988,0,0,0.718988,-27.844316,5.9870105)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\nb\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807539847" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g24502"> - <g - id="g24500"> - <g - style="fill:#000000;fill-opacity:1" - id="g24498"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-3.875 v -1.8125 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 V -0.40625 C 0.96875,-0.203125 0.96875,0 1.3125,0 1.65625,0 1.65625,-0.203125 1.65625,-0.453125 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 Z m 0,1.96875 V -2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,0" - transform="translate(133.768,134.765)" - id="path24496" /> - </g> - </g> - </g> - <g - id="g24834" - ns1:jacobian_sqrt="0.718988" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.03807542682" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nc\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.718988,0,0,0.718988,-26.915665,33.972586)"> - <g - id="g24832"> - <g - id="g24830" - style="fill:#000000;fill-opacity:1"> - <path - id="path24828" - transform="translate(133.768,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/ex_makefile.svg b/slides/figs/ex_makefile.svg deleted file mode 100644 index faae17f6cab7b6ea662513ee13180bea61cbec0e..0000000000000000000000000000000000000000 --- a/slides/figs/ex_makefile.svg +++ /dev/null @@ -1,387 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="287.02142mm" - height="40.026417mm" - viewBox="0 0 287.02142 40.026416" - version="1.1" - id="svg8" - inkscape:version="0.92.4 5da689c313, 2019-01-14" - sodipodi:docname="ex_makefile.svg"> - <defs - id="defs2" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="438.52005" - inkscape:cy="186.68853" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(38.510703,-128.48679)"> - <g - id="g930" - ns1:jacobian_sqrt="1.968835" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nexample: example.c example.h\n gcc example.c -o example\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-302.95453,-124.84567)"> - <g - id="surface1"> - <g - id="g837" - style="fill:#000000;fill-opacity:1"> - <path - id="path821" - transform="translate(133.768,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path823" - transform="translate(138.99836,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path825" - transform="translate(144.22873,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path827" - transform="translate(149.45909,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path829" - transform="translate(154.68946,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path831" - transform="translate(159.91982,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path833" - transform="translate(165.15019,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path835" - transform="translate(170.38055,134.765)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,3.046875 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g857" - style="fill:#000000;fill-opacity:1"> - <path - id="path839" - transform="translate(180.84128,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path841" - transform="translate(186.07165,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path843" - transform="translate(191.30201,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path845" - transform="translate(196.53238,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path847" - transform="translate(201.76274,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path849" - transform="translate(206.99311,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path851" - transform="translate(212.22347,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path853" - transform="translate(217.45384,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path855" - transform="translate(222.6842,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g877" - style="fill:#000000;fill-opacity:1"> - <path - id="path859" - transform="translate(233.14493,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path861" - transform="translate(238.3753,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path863" - transform="translate(243.60566,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path865" - transform="translate(248.83603,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path867" - transform="translate(254.06639,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path869" - transform="translate(259.29676,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path871" - transform="translate(264.52712,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path873" - transform="translate(269.75749,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path875" - transform="translate(274.98786,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g885" - style="fill:#000000;fill-opacity:1"> - <path - id="path879" - transform="translate(154.69,146.72)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path881" - transform="translate(159.92036,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path883" - transform="translate(165.15073,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g905" - style="fill:#000000;fill-opacity:1"> - <path - id="path887" - transform="translate(175.61146,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path889" - transform="translate(180.84182,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path891" - transform="translate(186.07219,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path893" - transform="translate(191.30255,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path895" - transform="translate(196.53292,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path897" - transform="translate(201.76328,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path899" - transform="translate(206.99365,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path901" - transform="translate(212.22401,146.72)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path903" - transform="translate(217.45438,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g911" - style="fill:#000000;fill-opacity:1"> - <path - id="path907" - transform="translate(227.91511,146.72)" - d="m 4.203125,-2.703125 c 0.109375,0 0.46875,0 0.46875,-0.34375 0,-0.359375 -0.359375,-0.359375 -0.46875,-0.359375 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.34375,0.34375 0.46875,0.34375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path909" - transform="translate(233.14547,146.72)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g927" - style="fill:#000000;fill-opacity:1"> - <path - id="path913" - transform="translate(243.6062,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path915" - transform="translate(248.83657,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path917" - transform="translate(254.06693,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path919" - transform="translate(259.2973,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path921" - transform="translate(264.52767,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path923" - transform="translate(269.75803,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path925" - transform="translate(274.9884,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/ex_makefile_cible.svg b/slides/figs/ex_makefile_cible.svg deleted file mode 100644 index 8797ff219b0a61196dd5946cff4261a4d0ed3a75..0000000000000000000000000000000000000000 --- a/slides/figs/ex_makefile_cible.svg +++ /dev/null @@ -1,498 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="307.34586mm" - height="74.418083mm" - viewBox="0 0 307.34585 74.418081" - version="1.1" - id="svg8" - inkscape:version="0.92.4 5da689c313, 2019-01-14" - sodipodi:docname="ex_makefile_cible.svg"> - <defs - id="defs2" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="515.33679" - inkscape:cy="186.68853" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(58.835132,-94.095119)"> - <g - id="g930" - ns1:jacobian_sqrt="1.968835" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nexample: example.c example.h\n gcc example.c -o example\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-302.95453,-124.84567)"> - <g - id="surface1"> - <g - id="g837" - style="fill:#000000;fill-opacity:1"> - <path - id="path821" - transform="translate(133.768,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path823" - transform="translate(138.99836,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path825" - transform="translate(144.22873,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path827" - transform="translate(149.45909,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path829" - transform="translate(154.68946,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path831" - transform="translate(159.91982,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path833" - transform="translate(165.15019,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path835" - transform="translate(170.38055,134.765)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,3.046875 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g857" - style="fill:#000000;fill-opacity:1"> - <path - id="path839" - transform="translate(180.84128,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path841" - transform="translate(186.07165,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path843" - transform="translate(191.30201,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path845" - transform="translate(196.53238,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path847" - transform="translate(201.76274,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path849" - transform="translate(206.99311,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path851" - transform="translate(212.22347,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path853" - transform="translate(217.45384,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path855" - transform="translate(222.6842,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g877" - style="fill:#000000;fill-opacity:1"> - <path - id="path859" - transform="translate(233.14493,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path861" - transform="translate(238.3753,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path863" - transform="translate(243.60566,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path865" - transform="translate(248.83603,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path867" - transform="translate(254.06639,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path869" - transform="translate(259.29676,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path871" - transform="translate(264.52712,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path873" - transform="translate(269.75749,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path875" - transform="translate(274.98786,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g885" - style="fill:#000000;fill-opacity:1"> - <path - id="path879" - transform="translate(154.69,146.72)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path881" - transform="translate(159.92036,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path883" - transform="translate(165.15073,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g905" - style="fill:#000000;fill-opacity:1"> - <path - id="path887" - transform="translate(175.61146,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path889" - transform="translate(180.84182,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path891" - transform="translate(186.07219,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path893" - transform="translate(191.30255,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path895" - transform="translate(196.53292,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path897" - transform="translate(201.76328,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path899" - transform="translate(206.99365,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path901" - transform="translate(212.22401,146.72)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path903" - transform="translate(217.45438,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g911" - style="fill:#000000;fill-opacity:1"> - <path - id="path907" - transform="translate(227.91511,146.72)" - d="m 4.203125,-2.703125 c 0.109375,0 0.46875,0 0.46875,-0.34375 0,-0.359375 -0.359375,-0.359375 -0.46875,-0.359375 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.34375,0.34375 0.46875,0.34375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path909" - transform="translate(233.14547,146.72)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g927" - style="fill:#000000;fill-opacity:1"> - <path - id="path913" - transform="translate(243.6062,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path915" - transform="translate(248.83657,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path917" - transform="translate(254.06693,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path919" - transform="translate(259.2973,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path921" - transform="translate(264.52767,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path923" - transform="translate(269.75803,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path925" - transform="translate(274.9884,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <ellipse - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path1053" - cx="-4.0132303" - cy="135.45824" - rx="38.413925" - ry="14.706731" /> - <g - id="g1252" - style="fill:#ff0100;fill-opacity:1" - ns1:jacobian_sqrt="1.968835" - inkscapeversion="0.92.4" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="cible (target)" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-352.30131,-156.49943)"> - <g - style="fill:#ff0100;fill-opacity:1" - id="g1250"> - <g - id="g1230" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1220" - transform="translate(148.712,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1222" - transform="translate(153.13938,134.765)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1224" - transform="translate(155.90699,134.765)" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1226" - transform="translate(161.44221,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1228" - transform="translate(164.20982,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1248" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1232" - transform="translate(171.95475,134.765)" - d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1234" - transform="translate(175.8292,134.765)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1236" - transform="translate(179.70366,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1238" - transform="translate(184.68496,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1240" - transform="translate(188.58731,134.765)" - d="m 2.21875,-1.71875 c -0.875,0 -0.875,-1 -0.875,-1.21875 0,-0.265625 0.015625,-0.59375 0.15625,-0.84375 0.078125,-0.109375 0.3125,-0.390625 0.71875,-0.390625 0.859375,0 0.859375,0.984375 0.859375,1.21875 0,0.265625 0,0.59375 -0.15625,0.84375 C 2.84375,-2 2.609375,-1.71875 2.21875,-1.71875 Z M 1.0625,-1.328125 c 0,-0.03125 0,-0.265625 0.15625,-0.46875 0.390625,0.28125 0.8125,0.3125 1,0.3125 0.921875,0 1.609375,-0.6875 1.609375,-1.453125 0,-0.375 -0.15625,-0.734375 -0.40625,-0.96875 C 3.78125,-4.25 4.140625,-4.296875 4.3125,-4.296875 c 0.03125,0 0.078125,0 0.109375,0.015625 C 4.3125,-4.25 4.25,-4.140625 4.25,-4.015625 c 0,0.171875 0.140625,0.28125 0.296875,0.28125 0.09375,0 0.28125,-0.0625 0.28125,-0.296875 0,-0.171875 -0.109375,-0.484375 -0.5,-0.484375 -0.203125,0 -0.640625,0.0625 -1.0625,0.46875 C 2.84375,-4.375 2.4375,-4.40625 2.21875,-4.40625 c -0.9375,0 -1.625,0.6875 -1.625,1.453125 0,0.4375 0.21875,0.8125 0.46875,1.03125 -0.125,0.140625 -0.3125,0.46875 -0.3125,0.828125 0,0.3125 0.140625,0.6875 0.453125,0.890625 -0.609375,0.15625 -0.921875,0.59375 -0.921875,0.984375 0,0.71875 0.984375,1.265625 2.203125,1.265625 1.171875,0 2.203125,-0.5 2.203125,-1.28125 0,-0.34375 -0.125,-0.859375 -0.640625,-1.140625 -0.53125,-0.265625 -1.109375,-0.265625 -1.71875,-0.265625 -0.25,0 -0.671875,0 -0.75,-0.015625 C 1.265625,-0.703125 1.0625,-1 1.0625,-1.328125 Z M 2.5,1.828125 c -1.015625,0 -1.703125,-0.515625 -1.703125,-1.046875 0,-0.453125 0.375,-0.828125 0.8125,-0.84375 h 0.59375 c 0.859375,0 1.96875,0 1.96875,0.84375 0,0.546875 -0.703125,1.046875 -1.671875,1.046875 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1242" - transform="translate(193.56861,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1244" - transform="translate(197.99599,134.765)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1246" - transform="translate(201.87044,134.765)" - d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/ex_makefile_dep.svg b/slides/figs/ex_makefile_dep.svg deleted file mode 100644 index 7d71df4edfaa0d246ff45d891bfd68f3decbeb0d..0000000000000000000000000000000000000000 --- a/slides/figs/ex_makefile_dep.svg +++ /dev/null @@ -1,592 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="312.44781mm" - height="74.418083mm" - viewBox="0 0 312.44781 74.418081" - version="1.1" - id="svg8" - inkscape:version="0.92.4 5da689c313, 2019-01-14" - sodipodi:docname="ex_makefile_dep.svg"> - <defs - id="defs2" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="438.52005" - inkscape:cy="186.68854" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(38.510703,-94.095119)"> - <g - id="g930" - ns1:jacobian_sqrt="1.968835" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nexample: example.c example.h\n gcc example.c -o example\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-302.95453,-124.84567)"> - <g - id="surface1"> - <g - id="g837" - style="fill:#000000;fill-opacity:1"> - <path - id="path821" - transform="translate(133.768,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path823" - transform="translate(138.99836,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path825" - transform="translate(144.22873,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path827" - transform="translate(149.45909,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path829" - transform="translate(154.68946,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path831" - transform="translate(159.91982,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path833" - transform="translate(165.15019,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path835" - transform="translate(170.38055,134.765)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,3.046875 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g857" - style="fill:#000000;fill-opacity:1"> - <path - id="path839" - transform="translate(180.84128,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path841" - transform="translate(186.07165,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path843" - transform="translate(191.30201,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path845" - transform="translate(196.53238,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path847" - transform="translate(201.76274,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path849" - transform="translate(206.99311,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path851" - transform="translate(212.22347,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path853" - transform="translate(217.45384,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path855" - transform="translate(222.6842,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g877" - style="fill:#000000;fill-opacity:1"> - <path - id="path859" - transform="translate(233.14493,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path861" - transform="translate(238.3753,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path863" - transform="translate(243.60566,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path865" - transform="translate(248.83603,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path867" - transform="translate(254.06639,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path869" - transform="translate(259.29676,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path871" - transform="translate(264.52712,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path873" - transform="translate(269.75749,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path875" - transform="translate(274.98786,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g885" - style="fill:#000000;fill-opacity:1"> - <path - id="path879" - transform="translate(154.69,146.72)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path881" - transform="translate(159.92036,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path883" - transform="translate(165.15073,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g905" - style="fill:#000000;fill-opacity:1"> - <path - id="path887" - transform="translate(175.61146,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path889" - transform="translate(180.84182,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path891" - transform="translate(186.07219,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path893" - transform="translate(191.30255,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path895" - transform="translate(196.53292,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path897" - transform="translate(201.76328,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path899" - transform="translate(206.99365,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path901" - transform="translate(212.22401,146.72)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path903" - transform="translate(217.45438,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g911" - style="fill:#000000;fill-opacity:1"> - <path - id="path907" - transform="translate(227.91511,146.72)" - d="m 4.203125,-2.703125 c 0.109375,0 0.46875,0 0.46875,-0.34375 0,-0.359375 -0.359375,-0.359375 -0.46875,-0.359375 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.34375,0.34375 0.46875,0.34375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path909" - transform="translate(233.14547,146.72)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g927" - style="fill:#000000;fill-opacity:1"> - <path - id="path913" - transform="translate(243.6062,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path915" - transform="translate(248.83657,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path917" - transform="translate(254.06693,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path919" - transform="translate(259.2973,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path921" - transform="translate(264.52767,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path923" - transform="translate(269.75803,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path925" - transform="translate(274.9884,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <ellipse - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path1053" - cx="154.73677" - cy="135.45824" - rx="111.45485" - ry="14.042299" /> - <g - id="g1418" - style="fill:#ff0100;fill-opacity:1" - ns1:jacobian_sqrt="1.968835" - inkscapeversion="0.92.4" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="d\xc3\xa9pendances (dependencies)" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-257.92975,-156.49943)"> - <g - style="fill:#ff0100;fill-opacity:1" - id="g1416"> - <g - id="g1354" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1352" - transform="translate(148.712,134.765)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1358" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1356" - transform="translate(153.96827,134.765)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1364" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1360" - transform="translate(154.24722,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1362" - transform="translate(158.6746,134.765)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1382" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1366" - transform="translate(164.48877,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1368" - transform="translate(168.91615,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1370" - transform="translate(174.45137,134.765)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1372" - transform="translate(179.98659,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1374" - transform="translate(184.96789,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1376" - transform="translate(190.50311,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1378" - transform="translate(194.93049,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1380" - transform="translate(199.35787,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1392" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1384" - transform="translate(206.60467,134.765)" - d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1386" - transform="translate(210.47912,134.765)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1388" - transform="translate(216.01434,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1390" - transform="translate(220.44172,134.765)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1414" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1394" - transform="translate(226.2559,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1396" - transform="translate(230.68328,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1398" - transform="translate(236.2185,134.765)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1400" - transform="translate(241.75372,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1402" - transform="translate(246.1811,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1404" - transform="translate(251.71632,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1406" - transform="translate(256.1437,134.765)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1408" - transform="translate(258.91131,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1410" - transform="translate(263.33869,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1412" - transform="translate(267.26794,134.765)" - d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/ex_makefile_regle.svg b/slides/figs/ex_makefile_regle.svg deleted file mode 100644 index baf9a38682723f467ef5a275834de17eaf96c0ac..0000000000000000000000000000000000000000 --- a/slides/figs/ex_makefile_regle.svg +++ /dev/null @@ -1,500 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="298.89874mm" - height="72.578415mm" - viewBox="0 0 298.89874 72.578413" - version="1.1" - id="svg8" - inkscape:version="0.92.4 5da689c313, 2019-01-14" - sodipodi:docname="ex_makefile_regle.svg"> - <defs - id="defs2" /> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="438.52005" - inkscape:cy="309.71974" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" /> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(38.510703,-128.48679)"> - <g - id="g930" - ns1:jacobian_sqrt="1.968835" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nexample: example.c example.h\n gcc example.c -o example\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-302.95453,-124.84567)"> - <g - id="surface1"> - <g - id="g837" - style="fill:#000000;fill-opacity:1"> - <path - id="path821" - transform="translate(133.768,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path823" - transform="translate(138.99836,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path825" - transform="translate(144.22873,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path827" - transform="translate(149.45909,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path829" - transform="translate(154.68946,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path831" - transform="translate(159.91982,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path833" - transform="translate(165.15019,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path835" - transform="translate(170.38055,134.765)" - d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,3.046875 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g857" - style="fill:#000000;fill-opacity:1"> - <path - id="path839" - transform="translate(180.84128,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path841" - transform="translate(186.07165,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path843" - transform="translate(191.30201,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path845" - transform="translate(196.53238,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path847" - transform="translate(201.76274,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path849" - transform="translate(206.99311,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path851" - transform="translate(212.22347,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path853" - transform="translate(217.45384,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path855" - transform="translate(222.6842,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g877" - style="fill:#000000;fill-opacity:1"> - <path - id="path859" - transform="translate(233.14493,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path861" - transform="translate(238.3753,134.765)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path863" - transform="translate(243.60566,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path865" - transform="translate(248.83603,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path867" - transform="translate(254.06639,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path869" - transform="translate(259.29676,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path871" - transform="translate(264.52712,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path873" - transform="translate(269.75749,134.765)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path875" - transform="translate(274.98786,134.765)" - d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g885" - style="fill:#000000;fill-opacity:1"> - <path - id="path879" - transform="translate(154.69,146.72)" - d="m 2.328125,-1.75 c -0.546875,0 -0.96875,-0.46875 -0.96875,-1 0,-0.5625 0.4375,-1.015625 0.96875,-1.015625 0.53125,0 0.953125,0.46875 0.953125,1 0,0.578125 -0.4375,1.015625 -0.953125,1.015625 z m -0.90625,0.34375 c 0.03125,0.015625 0.40625,0.25 0.90625,0.25 0.90625,0 1.640625,-0.71875 1.640625,-1.609375 C 3.96875,-3.0625 3.875,-3.34375 3.703125,-3.625 3.921875,-3.75 4.15625,-3.78125 4.28125,-3.796875 c 0.0625,0.265625 0.296875,0.34375 0.390625,0.34375 0.171875,0 0.40625,-0.125 0.40625,-0.421875 0,-0.21875 -0.1875,-0.53125 -0.734375,-0.53125 -0.109375,0 -0.59375,0.015625 -1.046875,0.34375 C 3.125,-4.171875 2.78125,-4.359375 2.328125,-4.359375 c -0.9375,0 -1.65625,0.75 -1.65625,1.59375 C 0.671875,-2.328125 0.84375,-2 1,-1.8125 c -0.109375,0.15625 -0.203125,0.375 -0.203125,0.671875 0,0.359375 0.140625,0.609375 0.234375,0.71875 -0.734375,0.453125 -0.734375,1.125 -0.734375,1.234375 0,0.859375 1.03125,1.46875 2.3125,1.46875 C 3.890625,2.28125 4.9375,1.671875 4.9375,0.8125 4.9375,0.453125 4.75,-0.046875 4.25,-0.3125 4.109375,-0.390625 3.703125,-0.609375 2.796875,-0.609375 h -0.6875 c -0.078125,0 -0.21875,0 -0.296875,-0.015625 -0.140625,0 -0.203125,0 -0.328125,-0.140625 -0.109375,-0.140625 -0.125,-0.34375 -0.125,-0.359375 0,-0.046875 0.03125,-0.1875 0.0625,-0.28125 z m 1.1875,3.09375 c -1,0 -1.734375,-0.4375 -1.734375,-0.875 0,-0.171875 0.078125,-0.5 0.40625,-0.6875 0.25,-0.171875 0.328125,-0.171875 1.0625,-0.171875 0.890625,0 2.015625,0 2.015625,0.859375 0,0.4375 -0.75,0.875 -1.75,0.875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path881" - transform="translate(159.92036,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path883" - transform="translate(165.15073,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g905" - style="fill:#000000;fill-opacity:1"> - <path - id="path887" - transform="translate(175.61146,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path889" - transform="translate(180.84182,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path891" - transform="translate(186.07219,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path893" - transform="translate(191.30255,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path895" - transform="translate(196.53292,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path897" - transform="translate(201.76328,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path899" - transform="translate(206.99365,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path901" - transform="translate(212.22401,146.72)" - d="M 3.234375,-0.625 C 3.234375,-0.984375 2.9375,-1.25 2.625,-1.25 2.25,-1.25 2,-0.9375 2,-0.625 2,-0.265625 2.296875,0 2.609375,0 c 0.375,0 0.625,-0.3125 0.625,-0.625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path903" - transform="translate(217.45438,146.72)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g911" - style="fill:#000000;fill-opacity:1"> - <path - id="path907" - transform="translate(227.91511,146.72)" - d="m 4.203125,-2.703125 c 0.109375,0 0.46875,0 0.46875,-0.34375 0,-0.359375 -0.359375,-0.359375 -0.46875,-0.359375 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.34375,0.34375 0.46875,0.34375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path909" - transform="translate(233.14547,146.72)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g927" - style="fill:#000000;fill-opacity:1"> - <path - id="path913" - transform="translate(243.6062,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path915" - transform="translate(248.83657,146.72)" - d="M 2.859375,-2.21875 4,-3.6875 h 0.390625 c 0.140625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 h -1.15625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.21875,0.3125 0.484375,0.3125 l -0.734375,1 -0.75,-1 c 0.25,0 0.46875,0 0.46875,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 H 0.734375 c -0.140625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 0.40625 L 2.3125,-2.21875 1.078125,-0.609375 h -0.40625 c -0.140625,0 -0.40625,0 -0.40625,0.3125 C 0.265625,0 0.53125,0 0.671875,0 H 1.84375 C 2,0 2.25,0 2.25,-0.296875 c 0,-0.3125 -0.21875,-0.3125 -0.53125,-0.3125 l 0.859375,-1.21875 0.890625,1.21875 c -0.28125,0 -0.5,0 -0.5,0.3125 C 2.96875,0 3.21875,0 3.375,0 h 1.15625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 4.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path917" - transform="translate(254.06693,146.72)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path919" - transform="translate(259.2973,146.72)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path921" - transform="translate(264.52767,146.72)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path923" - transform="translate(269.75803,146.72)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path925" - transform="translate(274.9884,146.72)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <ellipse - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:2.50145388;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path1053" - cx="121.28587" - cy="160.21567" - rx="137.85144" - ry="17.760324" /> - <g - id="g1569" - style="fill:#ff0100;fill-opacity:1" - ns1:jacobian_sqrt="1.968835" - inkscapeversion="0.92.4" - ns1:alignment="middle center" - ns1:scale="5.58095094442" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:text="r\xc3\xa8gle (rule)" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.11.0" - transform="matrix(1.968835,0,0,1.968835,-218.25038,-69.18693)"> - <g - style="fill:#ff0100;fill-opacity:1" - id="g1567"> - <g - id="g1537" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1535" - transform="translate(148.712,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1541" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1539" - transform="translate(152.3354,134.765)" - d="M 2.734375,-5.078125 2.921875,-5.25 1.71875,-6.78125 C 1.6875,-6.828125 1.578125,-6.953125 1.421875,-6.953125 1.25,-6.953125 1.0625,-6.78125 1.0625,-6.59375 c 0,0.109375 0.078125,0.21875 0.171875,0.296875 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1551" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1543" - transform="translate(152.61435,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1545" - transform="translate(157.04173,134.765)" - d="m 2.21875,-1.71875 c -0.875,0 -0.875,-1 -0.875,-1.21875 0,-0.265625 0.015625,-0.59375 0.15625,-0.84375 0.078125,-0.109375 0.3125,-0.390625 0.71875,-0.390625 0.859375,0 0.859375,0.984375 0.859375,1.21875 0,0.265625 0,0.59375 -0.15625,0.84375 C 2.84375,-2 2.609375,-1.71875 2.21875,-1.71875 Z M 1.0625,-1.328125 c 0,-0.03125 0,-0.265625 0.15625,-0.46875 0.390625,0.28125 0.8125,0.3125 1,0.3125 0.921875,0 1.609375,-0.6875 1.609375,-1.453125 0,-0.375 -0.15625,-0.734375 -0.40625,-0.96875 C 3.78125,-4.25 4.140625,-4.296875 4.3125,-4.296875 c 0.03125,0 0.078125,0 0.109375,0.015625 C 4.3125,-4.25 4.25,-4.140625 4.25,-4.015625 c 0,0.171875 0.140625,0.28125 0.296875,0.28125 0.09375,0 0.28125,-0.0625 0.28125,-0.296875 0,-0.171875 -0.109375,-0.484375 -0.5,-0.484375 -0.203125,0 -0.640625,0.0625 -1.0625,0.46875 C 2.84375,-4.375 2.4375,-4.40625 2.21875,-4.40625 c -0.9375,0 -1.625,0.6875 -1.625,1.453125 0,0.4375 0.21875,0.8125 0.46875,1.03125 -0.125,0.140625 -0.3125,0.46875 -0.3125,0.828125 0,0.3125 0.140625,0.6875 0.453125,0.890625 -0.609375,0.15625 -0.921875,0.59375 -0.921875,0.984375 0,0.71875 0.984375,1.265625 2.203125,1.265625 1.171875,0 2.203125,-0.5 2.203125,-1.28125 0,-0.34375 -0.125,-0.859375 -0.640625,-1.140625 -0.53125,-0.265625 -1.109375,-0.265625 -1.71875,-0.265625 -0.25,0 -0.671875,0 -0.75,-0.015625 C 1.265625,-0.703125 1.0625,-1 1.0625,-1.328125 Z M 2.5,1.828125 c -1.015625,0 -1.703125,-0.515625 -1.703125,-1.046875 0,-0.453125 0.375,-0.828125 0.8125,-0.84375 h 0.59375 c 0.859375,0 1.96875,0 1.96875,0.84375 0,0.546875 -0.703125,1.046875 -1.671875,1.046875 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1547" - transform="translate(162.02303,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1549" - transform="translate(164.79064,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g1565" - style="fill:#ff0100;fill-opacity:1"> - <path - id="path1553" - transform="translate(172.53556,134.765)" - d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1555" - transform="translate(176.41002,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1557" - transform="translate(180.31237,134.765)" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1559" - transform="translate(185.84759,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1561" - transform="translate(188.6152,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path1563" - transform="translate(193.04258,134.765)" - d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" - style="fill:#ff0100;fill-opacity:1;stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/git_meme.png b/slides/figs/git_meme.png deleted file mode 100644 index 3bc50ece2ae81420ba6f72dd5c5722a7e5f546bb..0000000000000000000000000000000000000000 Binary files a/slides/figs/git_meme.png and /dev/null differ diff --git a/slides/figs/memory.svg b/slides/figs/memory.svg deleted file mode 100644 index 59ebd94c31e8eca503393db4788da6dec4695628..0000000000000000000000000000000000000000 --- a/slides/figs/memory.svg +++ /dev/null @@ -1,2428 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="238.11147mm" - height="148.58089mm" - viewBox="0 0 238.11147 148.58089" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="memory.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="415.66567" - inkscape:cy="322.01054" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - originy="-32.431134" - originx="5.1458338" - type="xygrid" - id="grid819" /> - </sodipodi:namedview> - <defs - id="defs2"> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-5" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-7-2" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-5-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-1" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-3" - inkscape:connector-curvature="0" /> - </marker> - </defs> - <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.1458337,-115.98798)" - id="layer1" - inkscape:groupmode="layer" - inkscape:label="Layer 1"> - <rect - y="127.66666" - x="2.6458321" - height="9.260417" - width="29.104166" - id="rect821" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(0.752941,0,0,0.752941,-106.25257,21.78725)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="1 octet" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432142682" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g968"> - <g - id="surface1"> - <g - style="fill:#000000;fill-opacity:1" - id="g951"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - transform="translate(148.712,134.765)" - id="path949" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g955"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(157.01085,134.765)" - id="path953" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g965"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - transform="translate(162.2711,134.765)" - id="path957" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(166.69848,134.765)" - id="path959" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(170.57293,134.765)" - id="path961" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(175.00031,134.765)" - id="path963" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-102.45821,44.471564)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="1000" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432151187" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1670"> - <g - id="g1668"> - <g - style="fill:#000000;fill-opacity:1" - id="g1666"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - transform="translate(148.712,134.765)" - id="path1658" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path1660" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path1662" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path1664" /> - </g> - </g> - </g> - <rect - y="156.77083" - x="38.364582" - height="9.260417" - width="29.104166" - id="rect821-3" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="67.46875" - height="9.260417" - width="29.104166" - id="rect821-6" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <g - transform="matrix(0.752941,0,0,0.752941,-57.399181,52.21432)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="2 octets" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432145517" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1268"> - <g - id="g1266"> - <g - style="fill:#000000;fill-opacity:1" - id="g1248"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - transform="translate(148.712,134.765)" - id="path1246" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1252"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(157.01085,134.765)" - id="path1250" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1264"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - transform="translate(162.2711,134.765)" - id="path1254" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(166.69848,134.765)" - id="path1256" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(170.57293,134.765)" - id="path1258" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(175.00031,134.765)" - id="path1260" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - transform="translate(178.87477,134.765)" - id="path1262" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-66.592399,72.2528)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="2000" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432154022" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1811"> - <g - id="g1809"> - <g - style="fill:#000000;fill-opacity:1" - id="g1807"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - transform="translate(148.712,134.765)" - id="path1799" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path1801" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path1803" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path1805" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-37.33529,72.2528)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="2001" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1959"> - <g - id="g1957"> - <g - style="fill:#000000;fill-opacity:1" - id="g1955"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - transform="translate(148.712,134.765)" - id="path1947" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path1949" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path1951" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - transform="translate(163.6559,134.765)" - id="path1953" /> - </g> - </g> - </g> - <g - transform="translate(0,21.166667)" - id="g4625"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5" - width="29.104166" - height="9.260417" - x="154.78125" - y="171.32292" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3" - width="29.104166" - height="9.260417" - x="183.88541" - y="171.32292" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6" - width="29.104166" - height="9.260417" - x="96.572914" - y="171.32292" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2" - width="29.104166" - height="9.260417" - x="125.67708" - y="171.32292" /> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,29.995666,85.757839)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4 octets" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432148352" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1345"> - <g - id="g1343"> - <g - style="fill:#000000;fill-opacity:1" - id="g1325"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path1323" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1329"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(157.01085,134.765)" - id="path1327" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1341"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - transform="translate(162.2711,134.765)" - id="path1331" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(166.69848,134.765)" - id="path1333" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(170.57293,134.765)" - id="path1335" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(175.00031,134.765)" - id="path1337" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - transform="translate(178.87477,134.765)" - id="path1339" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-8.3546549,107.97156)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="3000" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g2374"> - <g - id="g2372"> - <g - style="fill:#000000;fill-opacity:1" - id="g2370"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(148.712,134.765)" - id="path2362" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path2364" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path2366" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path2368" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,20.90246,107.97156)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="3001" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g2573"> - <g - id="g2571"> - <g - style="fill:#000000;fill-opacity:1" - id="g2569"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(148.712,134.765)" - id="path2561" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path2563" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path2565" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - transform="translate(163.6559,134.765)" - id="path2567" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,49.894847,107.97156)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="3002" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g2772"> - <g - id="g2770"> - <g - style="fill:#000000;fill-opacity:1" - id="g2768"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(148.712,134.765)" - id="path2760" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path2762" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path2764" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path2766" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,78.96372,107.97156)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="3003" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g2971"> - <g - id="g2969"> - <g - style="fill:#000000;fill-opacity:1" - id="g2967"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(148.712,134.765)" - id="path2959" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path2961" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path2963" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(163.6559,134.765)" - id="path2965" /> - </g> - </g> - </g> - <g - transform="translate(0,20.391422)" - id="g4637"> - <g - transform="translate(-41.010422,56.885408)" - id="g846-7-2"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7" - width="29.104166" - height="9.260417" - x="-3.3706056e-06" - y="213.65623" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3" - width="29.104166" - height="9.260417" - x="29.10416" - y="213.65623" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-29" - width="29.104166" - height="9.260417" - x="174.625" - y="213.65623" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-3" - width="29.104166" - height="9.260417" - x="203.72917" - y="213.65623" /> - <g - transform="translate(17.197909,56.885413)" - id="g846-5-1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-6-9" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-2-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26458332;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-8.4218522,127.31593)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="8 octets" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432151187" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g1564"> - <g - id="g1562"> - <g - style="fill:#000000;fill-opacity:1" - id="g1544"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.625,-4.5625 c -0.453125,-0.296875 -0.5,-0.625 -0.5,-0.796875 0,-0.609375 0.65625,-1.03125 1.359375,-1.03125 0.71875,0 1.359375,0.515625 1.359375,1.234375 0,0.578125 -0.390625,1.046875 -0.984375,1.390625 z m 1.453125,0.953125 C 3.796875,-3.984375 4.28125,-4.5 4.28125,-5.15625 c 0,-0.921875 -0.875,-1.484375 -1.78125,-1.484375 -1,0 -1.8125,0.734375 -1.8125,1.671875 0,0.171875 0.015625,0.625 0.4375,1.09375 0.109375,0.109375 0.484375,0.359375 0.734375,0.53125 C 1.28125,-3.046875 0.421875,-2.5 0.421875,-1.5 c 0,1.046875 1.015625,1.71875 2.0625,1.71875 1.125,0 2.078125,-0.828125 2.078125,-1.890625 0,-0.359375 -0.109375,-0.8125 -0.5,-1.234375 C 3.875,-3.109375 3.71875,-3.203125 3.078125,-3.609375 Z m -1,0.421875 1.234375,0.78125 c 0.28125,0.1875 0.75,0.484375 0.75,1.09375 0,0.734375 -0.75,1.25 -1.5625,1.25 -0.859375,0 -1.578125,-0.609375 -1.578125,-1.4375 0,-0.578125 0.3125,-1.21875 1.15625,-1.6875 z m 0,0" - transform="translate(148.712,134.765)" - id="path1542" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1548"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(157.01085,134.765)" - id="path1546" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g1560"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - transform="translate(162.2711,134.765)" - id="path1550" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(166.69848,134.765)" - id="path1552" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(170.57293,134.765)" - id="path1554" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(175.00031,134.765)" - id="path1556" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - transform="translate(178.87477,134.765)" - id="path1558" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-104.87463,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4000" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g3170"> - <g - id="g3168"> - <g - style="fill:#000000;fill-opacity:1" - id="g3166"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path3158" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path3160" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path3162" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path3164" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-75.617518,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4001" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g3369"> - <g - id="g3367"> - <g - style="fill:#000000;fill-opacity:1" - id="g3365"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path3357" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path3359" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path3361" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0" - transform="translate(163.6559,134.765)" - id="path3363" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-46.625121,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4002" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g3568"> - <g - id="g3566"> - <g - style="fill:#000000;fill-opacity:1" - id="g3564"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path3556" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path3558" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path3560" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path3562" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-17.556248,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4003" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g3767"> - <g - id="g3765"> - <g - style="fill:#000000;fill-opacity:1" - id="g3763"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path3755" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path3757" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path3759" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.890625,-3.515625 c 0.8125,-0.265625 1.390625,-0.953125 1.390625,-1.75 0,-0.8125 -0.875,-1.375 -1.828125,-1.375 -1,0 -1.765625,0.59375 -1.765625,1.359375 0,0.328125 0.21875,0.515625 0.515625,0.515625 0.296875,0 0.5,-0.21875 0.5,-0.515625 0,-0.484375 -0.46875,-0.484375 -0.609375,-0.484375 0.296875,-0.5 0.953125,-0.625 1.3125,-0.625 0.421875,0 0.96875,0.21875 0.96875,1.109375 0,0.125 -0.03125,0.703125 -0.28125,1.140625 C 2.796875,-3.65625 2.453125,-3.625 2.203125,-3.625 2.125,-3.609375 1.890625,-3.59375 1.8125,-3.59375 c -0.078125,0.015625 -0.140625,0.03125 -0.140625,0.125 0,0.109375 0.0625,0.109375 0.234375,0.109375 h 0.4375 c 0.8125,0 1.1875,0.671875 1.1875,1.65625 0,1.359375 -0.6875,1.640625 -1.125,1.640625 -0.4375,0 -1.1875,-0.171875 -1.53125,-0.75 0.34375,0.046875 0.65625,-0.171875 0.65625,-0.546875 0,-0.359375 -0.265625,-0.5625 -0.546875,-0.5625 -0.25,0 -0.5625,0.140625 -0.5625,0.578125 0,0.90625 0.921875,1.5625 2.015625,1.5625 1.21875,0 2.125,-0.90625 2.125,-1.921875 0,-0.8125 -0.640625,-1.59375 -1.671875,-1.8125 z m 0,0" - transform="translate(163.6559,134.765)" - id="path3761" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,11.50086,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4004" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g3966"> - <g - id="g3964"> - <g - style="fill:#000000;fill-opacity:1" - id="g3962"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path3954" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path3956" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path3958" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(163.6559,134.765)" - id="path3960" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,40.687387,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4005" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g4165"> - <g - id="g4163"> - <g - style="fill:#000000;fill-opacity:1" - id="g4161"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path4153" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path4155" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path4157" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.46875,-2 c 0,-1.1875 -0.8125,-2.1875 -1.890625,-2.1875 -0.46875,0 -0.90625,0.15625 -1.265625,0.515625 V -5.625 c 0.203125,0.0625 0.53125,0.125 0.84375,0.125 1.234375,0 1.9375,-0.90625 1.9375,-1.03125 0,-0.0625 -0.03125,-0.109375 -0.109375,-0.109375 0,0 -0.03125,0 -0.078125,0.03125 C 3.703125,-6.515625 3.21875,-6.3125 2.546875,-6.3125 2.15625,-6.3125 1.6875,-6.390625 1.21875,-6.59375 1.140625,-6.625 1.125,-6.625 1.109375,-6.625 1,-6.625 1,-6.546875 1,-6.390625 V -3.4375 c 0,0.171875 0,0.25 0.140625,0.25 0.078125,0 0.09375,-0.015625 0.140625,-0.078125 C 1.390625,-3.421875 1.75,-3.96875 2.5625,-3.96875 c 0.515625,0 0.765625,0.453125 0.84375,0.640625 0.15625,0.375 0.1875,0.75 0.1875,1.25 0,0.359375 0,0.953125 -0.25,1.375 C 3.109375,-0.3125 2.734375,-0.0625 2.28125,-0.0625 c -0.71875,0 -1.296875,-0.53125 -1.46875,-1.109375 0.03125,0 0.0625,0.015625 0.171875,0.015625 0.328125,0 0.5,-0.25 0.5,-0.484375 0,-0.25 -0.171875,-0.5 -0.5,-0.5 C 0.84375,-2.140625 0.5,-2.0625 0.5,-1.609375 0.5,-0.75 1.1875,0.21875 2.296875,0.21875 3.453125,0.21875 4.46875,-0.734375 4.46875,-2 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path4159" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,69.75626,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4006" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g4364"> - <g - id="g4362"> - <g - style="fill:#000000;fill-opacity:1" - id="g4360"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path4352" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path4354" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path4356" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.3125,-3.265625 v -0.25 c 0,-2.515625 1.234375,-2.875 1.75,-2.875 0.234375,0 0.65625,0.0625 0.875,0.40625 -0.15625,0 -0.546875,0 -0.546875,0.4375 0,0.3125 0.234375,0.46875 0.453125,0.46875 0.15625,0 0.46875,-0.09375 0.46875,-0.484375 0,-0.59375 -0.4375,-1.078125 -1.265625,-1.078125 -1.28125,0 -2.625,1.28125 -2.625,3.484375 0,2.671875 1.15625,3.375 2.078125,3.375 1.109375,0 2.0625,-0.9375 2.0625,-2.25 0,-1.265625 -0.890625,-2.21875 -2,-2.21875 -0.671875,0 -1.046875,0.5 -1.25,0.984375 z M 2.5,-0.0625 c -0.625,0 -0.921875,-0.59375 -0.984375,-0.75 -0.1875,-0.46875 -0.1875,-1.265625 -0.1875,-1.4375 0,-0.78125 0.328125,-1.78125 1.21875,-1.78125 0.171875,0 0.625,0 0.9375,0.625 0.171875,0.359375 0.171875,0.875 0.171875,1.359375 0,0.484375 0,0.984375 -0.171875,1.34375 C 3.1875,-0.109375 2.734375,-0.0625 2.5,-0.0625 Z m 0,0" - transform="translate(163.6559,134.765)" - id="path4358" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,98.760426,149.52965)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="4007" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432156857" - ns1:alignment="middle center" - ns1:jacobian_sqrt="0.752941" - id="g4563"> - <g - id="g4561"> - <g - style="fill:#000000;fill-opacity:1" - id="g4559"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.9375,-1.640625 v 0.859375 c 0,0.359375 -0.03125,0.46875 -0.765625,0.46875 H 1.96875 V 0 C 2.375,-0.03125 2.890625,-0.03125 3.3125,-0.03125 c 0.421875,0 0.9375,0 1.359375,0.03125 v -0.3125 h -0.21875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -1.640625 H 4.6875 v -0.3125 H 3.703125 v -4.53125 c 0,-0.203125 0,-0.265625 -0.171875,-0.265625 -0.078125,0 -0.109375,0 -0.1875,0.125 l -3.0625,4.671875 v 0.3125 z m 0.046875,-0.3125 H 0.5625 l 2.421875,-3.71875 z m 0,0" - transform="translate(148.712,134.765)" - id="path4551" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(153.6933,134.765)" - id="path4553" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0" - transform="translate(158.6746,134.765)" - id="path4555" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.75,-6.078125 c 0.078125,-0.109375 0.078125,-0.125 0.078125,-0.34375 H 2.40625 c -1.203125,0 -1.234375,-0.125 -1.265625,-0.3125 h -0.25 L 0.5625,-4.6875 h 0.25 c 0.03125,-0.15625 0.109375,-0.78125 0.25,-0.90625 0.0625,-0.0625 0.84375,-0.0625 0.96875,-0.0625 h 2.0625 C 3.984375,-5.5 3.203125,-4.40625 2.984375,-4.078125 2.078125,-2.734375 1.75,-1.34375 1.75,-0.328125 c 0,0.09375 0,0.546875 0.46875,0.546875 0.453125,0 0.453125,-0.453125 0.453125,-0.546875 V -0.84375 c 0,-0.546875 0.03125,-1.09375 0.109375,-1.625 0.046875,-0.234375 0.171875,-1.09375 0.625,-1.703125 z m 0,0" - transform="translate(163.6559,134.765)" - id="path4557" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-106.35348,32.456183)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\nc\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432159692" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g5979"> - <g - id="g5977"> - <g - style="fill:#000000;fill-opacity:1" - id="g5975"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(133.768,134.765)" - id="path5973" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-71.934117,62.225057)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\ni\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432162527" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g6310"> - <g - id="g6308"> - <g - style="fill:#000000;fill-opacity:1" - id="g6306"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(133.768,134.765)" - id="path6304" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-16.499234,97.108527)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\npi\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432162527" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g6595"> - <g - id="g6593"> - <g - style="fill:#000000;fill-opacity:1" - id="g6591"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path6587" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path6589" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-106.27701,138.83719)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\ne\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432162527" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g6880"> - <g - id="g6878"> - <g - style="fill:#000000;fill-opacity:1" - id="g6876"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(133.768,134.765)" - id="path6874" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-46.791636,32.347054)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n&c\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432162527" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g8918"> - <g - id="g8916"> - <g - style="fill:#000000;fill-opacity:1" - id="g8914"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(133.768,134.765)" - id="path8910" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path8912" /> - </g> - </g> - </g> - <path - inkscape:connector-curvature="0" - id="path8928" - d="m 50.270833,132.95832 -23.8125,10.58334" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend)" /> - <g - transform="matrix(0.752941,0,0,0.752941,-89.537303,85.604897)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n&i\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432165362" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g9528"> - <g - id="g9526"> - <g - style="fill:#000000;fill-opacity:1" - id="g9524"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(133.768,134.765)" - id="path9520" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(138.99836,134.765)" - id="path9522" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-34.467126,120.7772)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n&pi\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432165362" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g9844"> - <g - id="g9842"> - <g - style="fill:#000000;fill-opacity:1" - id="g9840"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(133.768,134.765)" - id="path9834" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(138.99836,134.765)" - id="path9836" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - transform="translate(144.22873,134.765)" - id="path9838" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-52.693838,163.01642)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n&e\n\\end{verbatim}\n" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432168197" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g10155"> - <g - id="g10153"> - <g - style="fill:#000000;fill-opacity:1" - id="g10151"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0" - transform="translate(133.768,134.765)" - id="path10147" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - transform="translate(138.99836,134.765)" - id="path10149" /> - </g> - </g> - </g> - <path - inkscape:connector-curvature="0" - id="path8928-6" - d="m 21.166667,183.22916 23.8125,-10.58334" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7)" /> - <path - inkscape:connector-curvature="0" - id="path8928-7" - d="M 79.374997,217.625 103.1875,207.04166" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-9)" /> - <path - inkscape:connector-curvature="0" - id="path8928-6-2" - d="M 47.625,259.95832 23.303467,250.60389" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-7-2)" /> - <g - transform="matrix(0.66068107,0,0,0.66068107,-84.895413,45.273193)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n01100001\n\\end{verbatim}" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432154022" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g12196"> - <g - id="g12194"> - <g - style="fill:#000000;fill-opacity:1" - id="g12192"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(133.768,134.765)" - id="path12176" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path12178" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - transform="translate(144.22873,134.765)" - id="path12180" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path12182" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path12184" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(159.91982,134.765)" - id="path12186" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(165.15019,134.765)" - id="path12188" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - transform="translate(170.38055,134.765)" - id="path12190" /> - </g> - </g> - </g> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path8928-2" - d="m 52.916667,119.72916 c -14.455085,-0.64874 -18.827312,5.63915 -25.135417,9.26041" - style="fill:none;stroke:#000000;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Lend-1)" /> - <g - transform="matrix(0.660681,0,0,0.660681,-20.175716,74.377374)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n00000010\n\\end{verbatim}" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.87279725625" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.660681" - id="g13876"> - <g - id="g13874"> - <g - style="fill:#000000;fill-opacity:1" - id="g13872"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(133.768,134.765)" - id="path13856" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path13858" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(144.22873,134.765)" - id="path13860" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path13862" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path13864" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(159.91982,134.765)" - id="path13866" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - transform="translate(165.15019,134.765)" - id="path13868" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(170.38055,134.765)" - id="path13870" /> - </g> - </g> - </g> - <g - transform="matrix(0.660681,0,0,0.660681,-49.279883,74.377374)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\n00000000\n\\end{verbatim}" - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.87279725625" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.660681" - id="g14277"> - <g - id="g14275"> - <g - style="fill:#000000;fill-opacity:1" - id="g14273"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(133.768,134.765)" - id="path14257" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(138.99836,134.765)" - id="path14259" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(144.22873,134.765)" - id="path14261" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path14263" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(154.68946,134.765)" - id="path14265" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(159.91982,134.765)" - id="path14267" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(165.15019,134.765)" - id="path14269" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(170.38055,134.765)" - id="path14271" /> - </g> - </g> - </g> - <g - transform="matrix(0.752941,0,0,0.752941,-53.869675,20.153182)" - ns1:version="0.11.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="code binaire pour \'a\' (97)\nsur 8 bits." - ns1:preamble="/usr/share/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.13432154022" - ns1:alignment="middle center" - inkscapeversion="0.92.4" - ns1:jacobian_sqrt="0.752941" - id="g16216"> - <g - id="g16214"> - <g - style="fill:#000000;fill-opacity:1" - id="g16136"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - transform="translate(148.712,134.765)" - id="path16132" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(153.13938,134.765)" - id="path16134" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16142"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - transform="translate(158.39963,134.765)" - id="path16138" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(163.93485,134.765)" - id="path16140" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16158"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - transform="translate(171.67978,134.765)" - id="path16144" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - transform="translate(177.215,134.765)" - id="path16146" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - transform="translate(179.98261,134.765)" - id="path16148" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - transform="translate(185.51783,134.765)" - id="path16150" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - transform="translate(190.49913,134.765)" - id="path16152" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - transform="translate(193.26674,134.765)" - id="path16154" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - transform="translate(197.16909,134.765)" - id="path16156" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16162"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - transform="translate(204.91401,134.765)" - id="path16160" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16170"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - transform="translate(210.72819,134.765)" - id="path16164" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - transform="translate(215.70949,134.765)" - id="path16166" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - transform="translate(221.24471,134.765)" - id="path16168" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16178"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.046875,-5.875 c 0,-0.59375 -0.234375,-1.046875 -0.65625,-1.046875 -0.359375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.1875,0 0.328125,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.015625,-0.03125 0.03125,-0.03125 0.015625,0 0.015625,0.140625 0.015625,0.171875 0,0.328125 -0.0625,1.046875 -0.6875,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 0,0" - transform="translate(228.46461,134.765)" - id="path16172" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - transform="translate(231.23222,134.765)" - id="path16174" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.046875,-5.875 c 0,-0.59375 -0.234375,-1.046875 -0.65625,-1.046875 -0.359375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.1875,0 0.328125,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.015625,-0.03125 0.03125,-0.03125 0.015625,0 0.015625,0.140625 0.015625,0.171875 0,0.328125 -0.0625,1.046875 -0.6875,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 0,0" - transform="translate(236.21352,134.765)" - id="path16176" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16188"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.296875,2.390625 c 0,-0.03125 0,-0.046875 -0.171875,-0.21875 C 1.890625,0.921875 1.5625,-0.96875 1.5625,-2.5 c 0,-1.734375 0.375,-3.46875 1.609375,-4.703125 0.125,-0.125 0.125,-0.140625 0.125,-0.171875 0,-0.078125 -0.03125,-0.109375 -0.09375,-0.109375 -0.109375,0 -1,0.6875 -1.59375,1.953125 -0.5,1.09375 -0.625,2.203125 -0.625,3.03125 0,0.78125 0.109375,1.984375 0.65625,3.125 C 2.25,1.84375 3.09375,2.5 3.203125,2.5 c 0.0625,0 0.09375,-0.03125 0.09375,-0.109375 z m 0,0" - transform="translate(242.30863,134.765)" - id="path16180" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.65625,-3.171875 v 0.328125 c 0,2.328125 -1.03125,2.78125 -1.609375,2.78125 -0.171875,0 -0.71875,-0.015625 -0.984375,-0.359375 0.4375,0 0.515625,-0.28125 0.515625,-0.453125 0,-0.3125 -0.234375,-0.453125 -0.453125,-0.453125 -0.15625,0 -0.453125,0.078125 -0.453125,0.46875 0,0.671875 0.53125,1.078125 1.375,1.078125 1.296875,0 2.515625,-1.359375 2.515625,-3.5 0,-2.6875 -1.15625,-3.359375 -2.046875,-3.359375 -0.546875,0 -1.03125,0.1875 -1.453125,0.625 -0.421875,0.453125 -0.640625,0.875 -0.640625,1.625 0,1.234375 0.875,2.21875 1.984375,2.21875 0.609375,0 1.015625,-0.421875 1.25,-1 z M 2.421875,-2.40625 c -0.15625,0 -0.625,0 -0.921875,-0.625 -0.1875,-0.375 -0.1875,-0.859375 -0.1875,-1.359375 0,-0.53125 0,-1 0.21875,-1.375 0.265625,-0.5 0.640625,-0.625 0.984375,-0.625 0.46875,0 0.796875,0.34375 0.96875,0.78125 0.109375,0.328125 0.15625,0.953125 0.15625,1.40625 0,0.828125 -0.34375,1.796875 -1.21875,1.796875 z m 0,0" - transform="translate(246.18309,134.765)" - id="path16182" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.75,-6.078125 c 0.078125,-0.109375 0.078125,-0.125 0.078125,-0.34375 H 2.40625 c -1.203125,0 -1.234375,-0.125 -1.265625,-0.3125 h -0.25 L 0.5625,-4.6875 h 0.25 c 0.03125,-0.15625 0.109375,-0.78125 0.25,-0.90625 0.0625,-0.0625 0.84375,-0.0625 0.96875,-0.0625 h 2.0625 C 3.984375,-5.5 3.203125,-4.40625 2.984375,-4.078125 2.078125,-2.734375 1.75,-1.34375 1.75,-0.328125 c 0,0.09375 0,0.546875 0.46875,0.546875 0.453125,0 0.453125,-0.453125 0.453125,-0.546875 V -0.84375 c 0,-0.546875 0.03125,-1.09375 0.109375,-1.625 0.046875,-0.234375 0.171875,-1.09375 0.625,-1.703125 z m 0,0" - transform="translate(251.16439,134.765)" - id="path16184" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.875,-2.5 c 0,-0.765625 -0.109375,-1.96875 -0.65625,-3.109375 -0.59375,-1.21875 -1.453125,-1.875 -1.546875,-1.875 -0.0625,0 -0.109375,0.046875 -0.109375,0.109375 0,0.03125 0,0.046875 0.1875,0.234375 0.984375,0.984375 1.546875,2.5625 1.546875,4.640625 0,1.71875 -0.359375,3.46875 -1.59375,4.71875 C 0.5625,2.34375 0.5625,2.359375 0.5625,2.390625 0.5625,2.453125 0.609375,2.5 0.671875,2.5 0.765625,2.5 1.671875,1.8125 2.25,0.546875 2.765625,-0.546875 2.875,-1.65625 2.875,-2.5 Z m 0,0" - transform="translate(256.14569,134.765)" - id="path16186" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16196"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - transform="translate(263.33769,134.765)" - id="path16190" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - transform="translate(267.26694,134.765)" - id="path16192" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - transform="translate(272.80216,134.765)" - id="path16194" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16200"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.625,-4.5625 c -0.453125,-0.296875 -0.5,-0.625 -0.5,-0.796875 0,-0.609375 0.65625,-1.03125 1.359375,-1.03125 0.71875,0 1.359375,0.515625 1.359375,1.234375 0,0.578125 -0.390625,1.046875 -0.984375,1.390625 z m 1.453125,0.953125 C 3.796875,-3.984375 4.28125,-4.5 4.28125,-5.15625 c 0,-0.921875 -0.875,-1.484375 -1.78125,-1.484375 -1,0 -1.8125,0.734375 -1.8125,1.671875 0,0.171875 0.015625,0.625 0.4375,1.09375 0.109375,0.109375 0.484375,0.359375 0.734375,0.53125 C 1.28125,-3.046875 0.421875,-2.5 0.421875,-1.5 c 0,1.046875 1.015625,1.71875 2.0625,1.71875 1.125,0 2.078125,-0.828125 2.078125,-1.890625 0,-0.359375 -0.109375,-0.8125 -0.5,-1.234375 C 3.875,-3.109375 3.71875,-3.203125 3.078125,-3.609375 Z m -1,0.421875 1.234375,0.78125 c 0.28125,0.1875 0.75,0.484375 0.75,1.09375 0,0.734375 -0.75,1.25 -1.5625,1.25 -0.859375,0 -1.578125,-0.609375 -1.578125,-1.4375 0,-0.578125 0.3125,-1.21875 1.15625,-1.6875 z m 0,0" - transform="translate(280.02206,134.765)" - id="path16198" /> - </g> - <g - style="fill:#000000;fill-opacity:1" - id="g16212"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - transform="translate(288.33087,134.765)" - id="path16202" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - transform="translate(293.86609,134.765)" - id="path16204" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - transform="translate(296.6337,134.765)" - id="path16206" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - transform="translate(300.50815,134.765)" - id="path16208" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0" - transform="translate(304.4374,134.765)" - id="path16210" /> - </g> - </g> - </g> - <g - id="g1683" - ns1:jacobian_sqrt="0.752941" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.13432156857" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nchar c = \'a\';\nint16_t i = 2;\nfloat pi;\ndouble e = 2.7182818284;\n\\end{verbatim}\n" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.752941,0.000000,0.000000,0.752941,14.184908,37.638721)"> - <g - id="g1681"> - <g - id="g1561" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1553" - transform="translate(133.768,134.765)" - d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 " - style="stroke:none;stroke-width:0" /> - <path - id="path1555" - transform="translate(138.998365,134.765)" - d="M 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 Z M 4.25 -2.921875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1557" - transform="translate(144.22873,134.765)" - d="M 3.65625 -0.3125 C 3.875 -0.015625 4.34375 0 4.71875 0 C 5 0 5.21875 0 5.21875 -0.3125 C 5.21875 -0.609375 4.96875 -0.609375 4.828125 -0.609375 C 4.40625 -0.609375 4.3125 -0.65625 4.234375 -0.6875 L 4.234375 -2.84375 C 4.234375 -3.546875 3.6875 -4.390625 2.25 -4.390625 C 1.828125 -4.390625 0.8125 -4.390625 0.8125 -3.65625 C 0.8125 -3.359375 1.015625 -3.203125 1.25 -3.203125 C 1.40625 -3.203125 1.6875 -3.296875 1.6875 -3.65625 C 1.6875 -3.734375 1.703125 -3.75 1.90625 -3.765625 C 2.046875 -3.78125 2.171875 -3.78125 2.265625 -3.78125 C 3.015625 -3.78125 3.53125 -3.46875 3.53125 -2.765625 C 1.78125 -2.734375 0.546875 -2.234375 0.546875 -1.28125 C 0.546875 -0.59375 1.171875 0.0625 2.1875 0.0625 C 2.5625 0.0625 3.1875 -0.015625 3.65625 -0.3125 Z M 3.53125 -2.171875 L 3.53125 -1.328125 C 3.53125 -1.109375 3.53125 -0.890625 3.15625 -0.71875 C 2.796875 -0.546875 2.34375 -0.546875 2.265625 -0.546875 C 1.640625 -0.546875 1.234375 -0.890625 1.234375 -1.28125 C 1.234375 -1.765625 2.09375 -2.140625 3.53125 -2.171875 Z M 3.53125 -2.171875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1559" - transform="translate(149.459095,134.765)" - d="M 2.21875 -1.859375 C 2.21875 -2.796875 2.796875 -3.75 4 -3.75 C 4.015625 -3.515625 4.1875 -3.3125 4.4375 -3.3125 C 4.65625 -3.3125 4.859375 -3.46875 4.859375 -3.734375 C 4.859375 -3.9375 4.734375 -4.359375 3.90625 -4.359375 C 3.40625 -4.359375 2.765625 -4.171875 2.21875 -3.546875 L 2.21875 -3.890625 C 2.21875 -4.203125 2.15625 -4.296875 1.8125 -4.296875 L 0.71875 -4.296875 C 0.5625 -4.296875 0.3125 -4.296875 0.3125 -4 C 0.3125 -3.6875 0.5625 -3.6875 0.71875 -3.6875 L 1.53125 -3.6875 L 1.53125 -0.609375 L 0.71875 -0.609375 C 0.5625 -0.609375 0.3125 -0.609375 0.3125 -0.3125 C 0.3125 0 0.5625 0 0.71875 0 L 3.3125 0 C 3.46875 0 3.734375 0 3.734375 -0.296875 C 3.734375 -0.609375 3.46875 -0.609375 3.3125 -0.609375 L 2.21875 -0.609375 Z M 2.21875 -1.859375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1565" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1563" - transform="translate(159.919825,134.765)" - d="M 4.640625 -1.09375 C 4.640625 -1.359375 4.359375 -1.359375 4.296875 -1.359375 C 4.140625 -1.359375 4.03125 -1.34375 3.96875 -1.140625 C 3.90625 -1.015625 3.71875 -0.546875 2.984375 -0.546875 C 2.140625 -0.546875 1.421875 -1.25 1.421875 -2.15625 C 1.421875 -2.625 1.6875 -3.78125 3.046875 -3.78125 C 3.25 -3.78125 3.640625 -3.78125 3.640625 -3.6875 C 3.65625 -3.34375 3.84375 -3.203125 4.078125 -3.203125 C 4.3125 -3.203125 4.53125 -3.375 4.53125 -3.65625 C 4.53125 -4.390625 3.484375 -4.390625 3.046875 -4.390625 C 1.328125 -4.390625 0.734375 -3.03125 0.734375 -2.15625 C 0.734375 -0.953125 1.671875 0.0625 2.921875 0.0625 C 4.3125 0.0625 4.640625 -0.921875 4.640625 -1.09375 Z M 4.640625 -1.09375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1569" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1567" - transform="translate(170.380555,134.765)" - d="M 4.390625 -3.453125 C 4.515625 -3.453125 4.84375 -3.453125 4.84375 -3.8125 C 4.84375 -4.15625 4.46875 -4.15625 4.34375 -4.15625 L 0.890625 -4.15625 C 0.75 -4.15625 0.375 -4.15625 0.375 -3.8125 C 0.375 -3.453125 0.703125 -3.453125 0.828125 -3.453125 Z M 4.34375 -1.9375 C 4.46875 -1.9375 4.84375 -1.9375 4.84375 -2.296875 C 4.84375 -2.640625 4.515625 -2.640625 4.390625 -2.640625 L 0.828125 -2.640625 C 0.703125 -2.640625 0.375 -2.640625 0.375 -2.296875 C 0.375 -1.9375 0.75 -1.9375 0.890625 -1.9375 Z M 4.34375 -1.9375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1579" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1571" - transform="translate(180.841285,134.765)" - d="M 3.40625 -4.953125 C 3.40625 -5.71875 3.03125 -6.09375 2.625 -6.09375 C 2.296875 -6.09375 2.109375 -5.828125 2.109375 -5.59375 C 2.109375 -5.328125 2.3125 -5.09375 2.609375 -5.09375 C 2.6875 -5.09375 2.734375 -5.109375 2.75 -5.109375 C 2.796875 -5.109375 2.796875 -5.015625 2.796875 -4.953125 C 2.796875 -4.765625 2.765625 -4.046875 1.96875 -3.59375 C 1.890625 -3.53125 1.796875 -3.484375 1.796875 -3.328125 C 1.796875 -3.15625 1.96875 -3.015625 2.109375 -3.015625 C 2.34375 -3.015625 3.40625 -3.703125 3.40625 -4.953125 Z M 3.40625 -4.953125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1573" - transform="translate(186.07165,134.765)" - d="M 3.65625 -0.3125 C 3.875 -0.015625 4.34375 0 4.71875 0 C 5 0 5.21875 0 5.21875 -0.3125 C 5.21875 -0.609375 4.96875 -0.609375 4.828125 -0.609375 C 4.40625 -0.609375 4.3125 -0.65625 4.234375 -0.6875 L 4.234375 -2.84375 C 4.234375 -3.546875 3.6875 -4.390625 2.25 -4.390625 C 1.828125 -4.390625 0.8125 -4.390625 0.8125 -3.65625 C 0.8125 -3.359375 1.015625 -3.203125 1.25 -3.203125 C 1.40625 -3.203125 1.6875 -3.296875 1.6875 -3.65625 C 1.6875 -3.734375 1.703125 -3.75 1.90625 -3.765625 C 2.046875 -3.78125 2.171875 -3.78125 2.265625 -3.78125 C 3.015625 -3.78125 3.53125 -3.46875 3.53125 -2.765625 C 1.78125 -2.734375 0.546875 -2.234375 0.546875 -1.28125 C 0.546875 -0.59375 1.171875 0.0625 2.1875 0.0625 C 2.5625 0.0625 3.1875 -0.015625 3.65625 -0.3125 Z M 3.53125 -2.171875 L 3.53125 -1.328125 C 3.53125 -1.109375 3.53125 -0.890625 3.15625 -0.71875 C 2.796875 -0.546875 2.34375 -0.546875 2.265625 -0.546875 C 1.640625 -0.546875 1.234375 -0.890625 1.234375 -1.28125 C 1.234375 -1.765625 2.09375 -2.140625 3.53125 -2.171875 Z M 3.53125 -2.171875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1575" - transform="translate(191.302015,134.765)" - d="M 3.40625 -4.953125 C 3.40625 -5.71875 3.03125 -6.09375 2.625 -6.09375 C 2.296875 -6.09375 2.109375 -5.828125 2.109375 -5.59375 C 2.109375 -5.328125 2.3125 -5.09375 2.609375 -5.09375 C 2.6875 -5.09375 2.734375 -5.109375 2.75 -5.109375 C 2.796875 -5.109375 2.796875 -5.015625 2.796875 -4.953125 C 2.796875 -4.765625 2.765625 -4.046875 1.96875 -3.59375 C 1.890625 -3.53125 1.796875 -3.484375 1.796875 -3.328125 C 1.796875 -3.15625 1.96875 -3.015625 2.109375 -3.015625 C 2.34375 -3.015625 3.40625 -3.703125 3.40625 -4.953125 Z M 3.40625 -4.953125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1577" - transform="translate(196.53238,134.765)" - d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 Z M 2.65625 0 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1595" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1581" - transform="translate(133.768,146.72)" - d="M 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 Z M 3.078125 -5.609375 C 3.078125 -5.875 2.859375 -6.09375 2.578125 -6.09375 C 2.296875 -6.09375 2.078125 -5.875 2.078125 -5.609375 C 2.078125 -5.328125 2.296875 -5.109375 2.578125 -5.109375 C 2.859375 -5.109375 3.078125 -5.328125 3.078125 -5.609375 Z M 3.078125 -5.609375 " - style="stroke:none;stroke-width:0" /> - <path - id="path1583" - transform="translate(138.998365,146.72)" - d="M 1.65625 -3.828125 C 1.65625 -4.140625 1.65625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -0.609375 L 0.53125 -0.609375 C 0.375 -0.609375 0.125 -0.609375 0.125 -0.296875 C 0.125 0 0.375 0 0.515625 0 L 2.109375 0 C 2.25 0 2.5 0 2.5 -0.296875 C 2.5 -0.609375 2.25 -0.609375 2.09375 -0.609375 L 1.65625 -0.609375 L 1.65625 -2.375 C 1.65625 -3.375 2.390625 -3.75 2.90625 -3.75 C 3.421875 -3.75 3.5625 -3.46875 3.5625 -2.875 L 3.5625 -0.609375 L 3.1875 -0.609375 C 3.015625 -0.609375 2.765625 -0.609375 2.765625 -0.296875 C 2.765625 0 3.046875 0 3.1875 0 L 4.703125 0 C 4.84375 0 5.109375 0 5.109375 -0.296875 C 5.109375 -0.609375 4.859375 -0.609375 4.6875 -0.609375 L 4.25 -0.609375 L 4.25 -2.921875 C 4.25 -3.921875 3.75 -4.359375 2.953125 -4.359375 C 2.296875 -4.359375 1.84375 -4.015625 1.65625 -3.828125 Z M 1.65625 -3.828125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1585" - transform="translate(144.22873,146.72)" - d="M 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 Z M 2.21875 -3.6875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1587" - transform="translate(149.459095,146.72)" - d="M 3.09375 -5.796875 C 3.09375 -5.953125 3.09375 -6.203125 2.796875 -6.203125 C 2.609375 -6.203125 2.546875 -6.078125 2.5 -5.96875 C 2.125 -5.109375 1.609375 -5 1.421875 -4.984375 C 1.25 -4.96875 1.046875 -4.953125 1.046875 -4.671875 C 1.046875 -4.421875 1.21875 -4.375 1.375 -4.375 C 1.5625 -4.375 1.96875 -4.4375 2.40625 -4.8125 L 2.40625 -0.609375 L 1.5 -0.609375 C 1.34375 -0.609375 1.109375 -0.609375 1.109375 -0.296875 C 1.109375 0 1.359375 0 1.5 0 L 4 0 C 4.15625 0 4.40625 0 4.40625 -0.296875 C 4.40625 -0.609375 4.171875 -0.609375 4 -0.609375 L 3.09375 -0.609375 Z M 3.09375 -5.796875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1589" - transform="translate(154.68946,146.72)" - d="M 1.234375 -3.375 C 1.375 -4.78125 2.3125 -5.59375 3.1875 -5.59375 C 3.53125 -5.59375 3.6875 -5.484375 3.734375 -5.4375 C 3.6875 -5.390625 3.640625 -5.328125 3.640625 -5.140625 C 3.640625 -4.90625 3.8125 -4.703125 4.078125 -4.703125 C 4.328125 -4.703125 4.53125 -4.875 4.53125 -5.171875 C 4.53125 -5.65625 4.171875 -6.203125 3.203125 -6.203125 C 1.859375 -6.203125 0.53125 -5 0.53125 -2.984375 C 0.53125 -0.625 1.640625 0.109375 2.625 0.109375 C 3.71875 0.109375 4.6875 -0.734375 4.6875 -1.921875 C 4.6875 -3.0625 3.8125 -3.953125 2.71875 -3.953125 C 2.203125 -3.953125 1.6875 -3.78125 1.234375 -3.375 Z M 2.625 -0.5 C 1.984375 -0.5 1.59375 -0.984375 1.390625 -1.59375 C 1.375 -1.65625 1.359375 -1.71875 1.34375 -1.78125 C 1.34375 -1.78125 1.328125 -1.8125 1.328125 -1.8125 C 1.328125 -1.8125 1.34375 -1.90625 1.34375 -1.90625 C 1.328125 -1.96875 1.3125 -2.140625 1.3125 -2.21875 C 1.3125 -2.828125 1.90625 -3.328125 2.671875 -3.328125 C 3.484375 -3.328125 4 -2.65625 4 -1.921875 C 4 -1.0625 3.34375 -0.5 2.625 -0.5 Z M 2.625 -0.5 " - style="stroke:none;stroke-width:0" /> - <path - id="path1591" - transform="translate(159.919825,146.72)" - d="M 4.203125 0.953125 C 4.3125 0.953125 4.671875 0.953125 4.671875 0.59375 C 4.671875 0.25 4.3125 0.25 4.203125 0.25 L 1.03125 0.25 C 0.90625 0.25 0.5625 0.25 0.5625 0.59375 C 0.5625 0.953125 0.90625 0.953125 1.03125 0.953125 Z M 4.203125 0.953125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1593" - transform="translate(165.15019,146.72)" - d="M 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 Z M 2.21875 -3.6875 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1599" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1597" - transform="translate(175.61092,146.72)" - d="M 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 Z M 3.078125 -5.609375 C 3.078125 -5.875 2.859375 -6.09375 2.578125 -6.09375 C 2.296875 -6.09375 2.078125 -5.875 2.078125 -5.609375 C 2.078125 -5.328125 2.296875 -5.109375 2.578125 -5.109375 C 2.859375 -5.109375 3.078125 -5.328125 3.078125 -5.609375 Z M 3.078125 -5.609375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1603" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1601" - transform="translate(186.07165,146.72)" - d="M 4.390625 -3.453125 C 4.515625 -3.453125 4.84375 -3.453125 4.84375 -3.8125 C 4.84375 -4.15625 4.46875 -4.15625 4.34375 -4.15625 L 0.890625 -4.15625 C 0.75 -4.15625 0.375 -4.15625 0.375 -3.8125 C 0.375 -3.453125 0.703125 -3.453125 0.828125 -3.453125 Z M 4.34375 -1.9375 C 4.46875 -1.9375 4.84375 -1.9375 4.84375 -2.296875 C 4.84375 -2.640625 4.515625 -2.640625 4.390625 -2.640625 L 0.828125 -2.640625 C 0.703125 -2.640625 0.375 -2.640625 0.375 -2.296875 C 0.375 -1.9375 0.75 -1.9375 0.890625 -1.9375 Z M 4.34375 -1.9375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1609" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1605" - transform="translate(196.53238,146.72)" - d="M 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 Z M 0.671875 -0.578125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1607" - transform="translate(201.762745,146.72)" - d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 Z M 2.65625 0 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1621" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1611" - transform="translate(133.768,158.675)" - d="M 2.515625 -3.6875 L 3.734375 -3.6875 C 3.890625 -3.6875 4.140625 -3.6875 4.140625 -3.984375 C 4.140625 -4.296875 3.890625 -4.296875 3.734375 -4.296875 L 2.515625 -4.296875 L 2.515625 -4.765625 C 2.515625 -5.546875 3.1875 -5.546875 3.484375 -5.546875 C 3.484375 -5.5 3.578125 -5.109375 3.921875 -5.109375 C 4.125 -5.109375 4.359375 -5.28125 4.359375 -5.546875 C 4.359375 -6.15625 3.5625 -6.15625 3.40625 -6.15625 C 2.609375 -6.15625 1.828125 -5.6875 1.828125 -4.828125 L 1.828125 -4.296875 L 0.84375 -4.296875 C 0.671875 -4.296875 0.421875 -4.296875 0.421875 -3.984375 C 0.421875 -3.6875 0.671875 -3.6875 0.828125 -3.6875 L 1.828125 -3.6875 L 1.828125 -0.609375 L 0.828125 -0.609375 C 0.671875 -0.609375 0.421875 -0.609375 0.421875 -0.3125 C 0.421875 0 0.671875 0 0.828125 0 L 3.53125 0 C 3.671875 0 3.9375 0 3.9375 -0.296875 C 3.9375 -0.609375 3.671875 -0.609375 3.53125 -0.609375 L 2.515625 -0.609375 Z M 2.515625 -3.6875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1613" - transform="translate(138.998365,158.675)" - d="M 2.953125 -5.6875 C 2.953125 -5.984375 2.90625 -6.09375 2.5625 -6.09375 L 0.984375 -6.09375 C 0.828125 -6.09375 0.578125 -6.09375 0.578125 -5.78125 C 0.578125 -5.484375 0.84375 -5.484375 0.984375 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 0.984375 -0.609375 C 0.828125 -0.609375 0.578125 -0.609375 0.578125 -0.296875 C 0.578125 0 0.84375 0 0.984375 0 L 4.25 0 C 4.40625 0 4.65625 0 4.65625 -0.296875 C 4.65625 -0.609375 4.421875 -0.609375 4.25 -0.609375 L 2.953125 -0.609375 Z M 2.953125 -5.6875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1615" - transform="translate(144.22873,158.675)" - d="M 4.65625 -2.15625 C 4.65625 -3.40625 3.734375 -4.390625 2.609375 -4.390625 C 1.5 -4.390625 0.5625 -3.40625 0.5625 -2.15625 C 0.5625 -0.890625 1.515625 0.0625 2.609375 0.0625 C 3.703125 0.0625 4.65625 -0.890625 4.65625 -2.15625 Z M 2.609375 -0.546875 C 1.875 -0.546875 1.25 -1.296875 1.25 -2.21875 C 1.25 -3.125 1.90625 -3.78125 2.609375 -3.78125 C 3.328125 -3.78125 3.96875 -3.125 3.96875 -2.21875 C 3.96875 -1.296875 3.34375 -0.546875 2.609375 -0.546875 Z M 2.609375 -0.546875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1617" - transform="translate(149.459095,158.675)" - d="M 3.65625 -0.3125 C 3.875 -0.015625 4.34375 0 4.71875 0 C 5 0 5.21875 0 5.21875 -0.3125 C 5.21875 -0.609375 4.96875 -0.609375 4.828125 -0.609375 C 4.40625 -0.609375 4.3125 -0.65625 4.234375 -0.6875 L 4.234375 -2.84375 C 4.234375 -3.546875 3.6875 -4.390625 2.25 -4.390625 C 1.828125 -4.390625 0.8125 -4.390625 0.8125 -3.65625 C 0.8125 -3.359375 1.015625 -3.203125 1.25 -3.203125 C 1.40625 -3.203125 1.6875 -3.296875 1.6875 -3.65625 C 1.6875 -3.734375 1.703125 -3.75 1.90625 -3.765625 C 2.046875 -3.78125 2.171875 -3.78125 2.265625 -3.78125 C 3.015625 -3.78125 3.53125 -3.46875 3.53125 -2.765625 C 1.78125 -2.734375 0.546875 -2.234375 0.546875 -1.28125 C 0.546875 -0.59375 1.171875 0.0625 2.1875 0.0625 C 2.5625 0.0625 3.1875 -0.015625 3.65625 -0.3125 Z M 3.53125 -2.171875 L 3.53125 -1.328125 C 3.53125 -1.109375 3.53125 -0.890625 3.15625 -0.71875 C 2.796875 -0.546875 2.34375 -0.546875 2.265625 -0.546875 C 1.640625 -0.546875 1.234375 -0.890625 1.234375 -1.28125 C 1.234375 -1.765625 2.09375 -2.140625 3.53125 -2.171875 Z M 3.53125 -2.171875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1619" - transform="translate(154.68946,158.675)" - d="M 2.21875 -3.6875 L 3.84375 -3.6875 C 4 -3.6875 4.25 -3.6875 4.25 -3.984375 C 4.25 -4.296875 4 -4.296875 3.84375 -4.296875 L 2.21875 -4.296875 L 2.21875 -5.109375 C 2.21875 -5.296875 2.21875 -5.515625 1.875 -5.515625 C 1.53125 -5.515625 1.53125 -5.3125 1.53125 -5.109375 L 1.53125 -4.296875 L 0.65625 -4.296875 C 0.5 -4.296875 0.25 -4.296875 0.25 -3.984375 C 0.25 -3.6875 0.5 -3.6875 0.640625 -3.6875 L 1.53125 -3.6875 L 1.53125 -1.25 C 1.53125 -0.296875 2.203125 0.0625 2.9375 0.0625 C 3.671875 0.0625 4.46875 -0.375 4.46875 -1.25 C 4.46875 -1.4375 4.46875 -1.640625 4.125 -1.640625 C 3.796875 -1.640625 3.78125 -1.4375 3.78125 -1.265625 C 3.78125 -0.640625 3.203125 -0.546875 2.984375 -0.546875 C 2.21875 -0.546875 2.21875 -1.0625 2.21875 -1.3125 Z M 2.21875 -3.6875 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1629" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1623" - transform="translate(165.15019,158.675)" - d="M 1.65625 -2.625 C 1.65625 -3.21875 2.234375 -3.75 2.859375 -3.75 C 3.59375 -3.75 4.171875 -3.015625 4.171875 -2.15625 C 4.171875 -1.203125 3.484375 -0.546875 2.78125 -0.546875 C 2 -0.546875 1.65625 -1.421875 1.65625 -1.90625 Z M 1.65625 -0.453125 C 2.0625 -0.03125 2.5 0.0625 2.8125 0.0625 C 3.890625 0.0625 4.859375 -0.890625 4.859375 -2.15625 C 4.859375 -3.375 3.984375 -4.359375 2.921875 -4.359375 C 2.4375 -4.359375 2 -4.171875 1.65625 -3.875 C 1.65625 -4.15625 1.640625 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 1.609375 L 0.53125 1.609375 C 0.375 1.609375 0.125 1.609375 0.125 1.90625 C 0.125 2.21875 0.375 2.21875 0.515625 2.21875 L 2.109375 2.21875 C 2.25 2.21875 2.5 2.21875 2.5 1.90625 C 2.5 1.609375 2.25 1.609375 2.09375 1.609375 L 1.65625 1.609375 Z M 1.65625 -0.453125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1625" - transform="translate(170.380555,158.675)" - d="M 3.078125 -3.890625 C 3.078125 -4.203125 3.015625 -4.296875 2.6875 -4.296875 L 1.265625 -4.296875 C 1.109375 -4.296875 0.859375 -4.296875 0.859375 -4 C 0.859375 -3.6875 1.109375 -3.6875 1.265625 -3.6875 L 2.390625 -3.6875 L 2.390625 -0.609375 L 1.1875 -0.609375 C 1.03125 -0.609375 0.78125 -0.609375 0.78125 -0.296875 C 0.78125 0 1.03125 0 1.1875 0 L 4.125 0 C 4.28125 0 4.53125 0 4.53125 -0.296875 C 4.53125 -0.609375 4.28125 -0.609375 4.125 -0.609375 L 3.078125 -0.609375 Z M 3.078125 -5.609375 C 3.078125 -5.875 2.859375 -6.09375 2.578125 -6.09375 C 2.296875 -6.09375 2.078125 -5.875 2.078125 -5.609375 C 2.078125 -5.328125 2.296875 -5.109375 2.578125 -5.109375 C 2.859375 -5.109375 3.078125 -5.328125 3.078125 -5.609375 Z M 3.078125 -5.609375 " - style="stroke:none;stroke-width:0" /> - <path - id="path1627" - transform="translate(175.61092,158.675)" - d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 Z M 2.65625 0 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1643" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1631" - transform="translate(133.768,170.63)" - d="M 3.5625 -0.5 C 3.5625 -0.140625 3.5625 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -5.6875 C 4.25 -5.984375 4.203125 -6.09375 3.859375 -6.09375 L 3.125 -6.09375 C 2.96875 -6.09375 2.71875 -6.09375 2.71875 -5.78125 C 2.71875 -5.484375 2.984375 -5.484375 3.125 -5.484375 L 3.5625 -5.484375 L 3.5625 -3.90625 C 3.234375 -4.203125 2.828125 -4.359375 2.40625 -4.359375 C 1.3125 -4.359375 0.359375 -3.40625 0.359375 -2.140625 C 0.359375 -0.90625 1.25 0.0625 2.3125 0.0625 C 2.875 0.0625 3.296875 -0.203125 3.5625 -0.5 Z M 3.5625 -2.640625 L 3.5625 -1.9375 C 3.5625 -1.375 3.125 -0.546875 2.359375 -0.546875 C 1.640625 -0.546875 1.046875 -1.25 1.046875 -2.140625 C 1.046875 -3.09375 1.75 -3.75 2.4375 -3.75 C 3.078125 -3.75 3.5625 -3.1875 3.5625 -2.640625 Z M 3.5625 -2.640625 " - style="stroke:none;stroke-width:0" /> - <path - id="path1633" - transform="translate(138.998365,170.63)" - d="M 4.65625 -2.15625 C 4.65625 -3.40625 3.734375 -4.390625 2.609375 -4.390625 C 1.5 -4.390625 0.5625 -3.40625 0.5625 -2.15625 C 0.5625 -0.890625 1.515625 0.0625 2.609375 0.0625 C 3.703125 0.0625 4.65625 -0.890625 4.65625 -2.15625 Z M 2.609375 -0.546875 C 1.875 -0.546875 1.25 -1.296875 1.25 -2.21875 C 1.25 -3.125 1.90625 -3.78125 2.609375 -3.78125 C 3.328125 -3.78125 3.96875 -3.125 3.96875 -2.21875 C 3.96875 -1.296875 3.34375 -0.546875 2.609375 -0.546875 Z M 2.609375 -0.546875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1635" - transform="translate(144.22873,170.63)" - d="M 3.5625 -0.3125 C 3.578125 0 3.78125 0 3.96875 0 L 4.6875 0 C 4.859375 0 5.109375 0 5.109375 -0.3125 C 5.109375 -0.609375 4.84375 -0.609375 4.703125 -0.609375 L 4.25 -0.609375 L 4.25 -3.890625 C 4.25 -4.203125 4.203125 -4.296875 3.859375 -4.296875 L 3.125 -4.296875 C 2.96875 -4.296875 2.71875 -4.296875 2.71875 -3.984375 C 2.71875 -3.6875 2.984375 -3.6875 3.125 -3.6875 L 3.5625 -3.6875 L 3.5625 -1.5625 C 3.5625 -0.671875 2.765625 -0.546875 2.4375 -0.546875 C 1.65625 -0.546875 1.65625 -0.875 1.65625 -1.203125 L 1.65625 -3.890625 C 1.65625 -4.203125 1.59375 -4.296875 1.25 -4.296875 L 0.53125 -4.296875 C 0.375 -4.296875 0.125 -4.296875 0.125 -3.984375 C 0.125 -3.6875 0.375 -3.6875 0.515625 -3.6875 L 0.96875 -3.6875 L 0.96875 -1.140625 C 0.96875 -0.171875 1.65625 0.0625 2.375 0.0625 C 2.796875 0.0625 3.203125 -0.046875 3.5625 -0.3125 Z M 3.5625 -0.3125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1637" - transform="translate(149.459095,170.63)" - d="M 1.65625 -3.875 L 1.65625 -5.6875 C 1.65625 -5.984375 1.59375 -6.09375 1.25 -6.09375 L 0.53125 -6.09375 C 0.375 -6.09375 0.125 -6.09375 0.125 -5.78125 C 0.125 -5.484375 0.375 -5.484375 0.515625 -5.484375 L 0.96875 -5.484375 L 0.96875 -0.40625 C 0.96875 -0.203125 0.96875 0 1.3125 0 C 1.65625 0 1.65625 -0.203125 1.65625 -0.453125 C 2.0625 -0.03125 2.5 0.0625 2.8125 0.0625 C 3.890625 0.0625 4.859375 -0.890625 4.859375 -2.15625 C 4.859375 -3.375 3.984375 -4.359375 2.921875 -4.359375 C 2.4375 -4.359375 2 -4.171875 1.65625 -3.875 Z M 1.65625 -1.90625 L 1.65625 -2.625 C 1.65625 -3.21875 2.234375 -3.75 2.859375 -3.75 C 3.59375 -3.75 4.171875 -3.015625 4.171875 -2.15625 C 4.171875 -1.203125 3.484375 -0.546875 2.78125 -0.546875 C 2 -0.546875 1.65625 -1.421875 1.65625 -1.90625 Z M 1.65625 -1.90625 " - style="stroke:none;stroke-width:0" /> - <path - id="path1639" - transform="translate(154.68946,170.63)" - d="M 2.953125 -5.6875 C 2.953125 -5.984375 2.90625 -6.09375 2.5625 -6.09375 L 0.984375 -6.09375 C 0.828125 -6.09375 0.578125 -6.09375 0.578125 -5.78125 C 0.578125 -5.484375 0.84375 -5.484375 0.984375 -5.484375 L 2.265625 -5.484375 L 2.265625 -0.609375 L 0.984375 -0.609375 C 0.828125 -0.609375 0.578125 -0.609375 0.578125 -0.296875 C 0.578125 0 0.84375 0 0.984375 0 L 4.25 0 C 4.40625 0 4.65625 0 4.65625 -0.296875 C 4.65625 -0.609375 4.421875 -0.609375 4.25 -0.609375 L 2.953125 -0.609375 Z M 2.953125 -5.6875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1641" - transform="translate(159.919825,170.63)" - d="M 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 Z M 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 1.265625 -2.5 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1647" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1645" - transform="translate(170.380555,170.63)" - d="M 4.234375 -1.90625 C 4.4375 -1.90625 4.625 -1.90625 4.625 -2.265625 C 4.625 -3.40625 3.984375 -4.390625 2.6875 -4.390625 C 1.5 -4.390625 0.546875 -3.390625 0.546875 -2.15625 C 0.546875 -0.953125 1.5625 0.0625 2.84375 0.0625 C 4.15625 0.0625 4.625 -0.84375 4.625 -1.09375 C 4.625 -1.359375 4.34375 -1.359375 4.28125 -1.359375 C 4.09375 -1.359375 4.015625 -1.328125 3.953125 -1.140625 C 3.734375 -0.640625 3.1875 -0.546875 2.90625 -0.546875 C 2.15625 -0.546875 1.421875 -1.046875 1.25 -1.90625 Z M 1.265625 -2.5 C 1.40625 -3.234375 2 -3.78125 2.6875 -3.78125 C 3.203125 -3.78125 3.828125 -3.53125 3.921875 -2.5 Z M 1.265625 -2.5 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1651" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1649" - transform="translate(180.841285,170.63)" - d="M 4.390625 -3.453125 C 4.515625 -3.453125 4.84375 -3.453125 4.84375 -3.8125 C 4.84375 -4.15625 4.46875 -4.15625 4.34375 -4.15625 L 0.890625 -4.15625 C 0.75 -4.15625 0.375 -4.15625 0.375 -3.8125 C 0.375 -3.453125 0.703125 -3.453125 0.828125 -3.453125 Z M 4.34375 -1.9375 C 4.46875 -1.9375 4.84375 -1.9375 4.84375 -2.296875 C 4.84375 -2.640625 4.515625 -2.640625 4.390625 -2.640625 L 0.828125 -2.640625 C 0.703125 -2.640625 0.375 -2.640625 0.375 -2.296875 C 0.375 -1.9375 0.75 -1.9375 0.890625 -1.9375 Z M 4.34375 -1.9375 " - style="stroke:none;stroke-width:0" /> - </g> - <g - id="g1679" - style="fill:rgb(0%,0%,0%);fill-opacity:1;"> - <path - id="path1653" - transform="translate(191.302015,170.63)" - d="M 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 Z M 0.671875 -0.578125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1655" - transform="translate(196.53238,170.63)" - d="M 3.234375 -0.625 C 3.234375 -0.984375 2.9375 -1.25 2.625 -1.25 C 2.25 -1.25 2 -0.9375 2 -0.625 C 2 -0.265625 2.296875 0 2.609375 0 C 2.984375 0 3.234375 -0.3125 3.234375 -0.625 Z M 3.234375 -0.625 " - style="stroke:none;stroke-width:0" /> - <path - id="path1657" - transform="translate(201.762745,170.63)" - d="M 3.765625 -5.484375 C 2.03125 -3.65625 1.6875 -1.453125 1.6875 -0.359375 C 1.6875 -0.21875 1.6875 0.109375 2.046875 0.109375 C 2.21875 0.109375 2.375 0 2.375 -0.296875 C 2.4375 -3.125 3.953125 -4.859375 4.5625 -5.4375 C 4.765625 -5.625 4.78125 -5.640625 4.78125 -5.78125 C 4.78125 -6.09375 4.546875 -6.09375 4.390625 -6.09375 L 1.09375 -6.09375 C 1.03125 -6.25 0.859375 -6.25 0.78125 -6.25 C 0.4375 -6.25 0.4375 -6.03125 0.4375 -5.84375 L 0.4375 -5.421875 C 0.4375 -5.234375 0.4375 -5.015625 0.78125 -5.015625 C 1.125 -5.015625 1.125 -5.203125 1.125 -5.484375 Z M 3.765625 -5.484375 " - style="stroke:none;stroke-width:0" /> - <path - id="path1659" - transform="translate(206.99311,170.63)" - d="M 3.09375 -5.796875 C 3.09375 -5.953125 3.09375 -6.203125 2.796875 -6.203125 C 2.609375 -6.203125 2.546875 -6.078125 2.5 -5.96875 C 2.125 -5.109375 1.609375 -5 1.421875 -4.984375 C 1.25 -4.96875 1.046875 -4.953125 1.046875 -4.671875 C 1.046875 -4.421875 1.21875 -4.375 1.375 -4.375 C 1.5625 -4.375 1.96875 -4.4375 2.40625 -4.8125 L 2.40625 -0.609375 L 1.5 -0.609375 C 1.34375 -0.609375 1.109375 -0.609375 1.109375 -0.296875 C 1.109375 0 1.359375 0 1.5 0 L 4 0 C 4.15625 0 4.40625 0 4.40625 -0.296875 C 4.40625 -0.609375 4.171875 -0.609375 4 -0.609375 L 3.09375 -0.609375 Z M 3.09375 -5.796875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1661" - transform="translate(212.223475,170.63)" - d="M 2.609375 -3.59375 C 1.890625 -3.59375 1.265625 -4.03125 1.265625 -4.59375 C 1.265625 -5.109375 1.828125 -5.59375 2.609375 -5.59375 C 3.390625 -5.59375 3.953125 -5.109375 3.953125 -4.59375 C 3.953125 -4.03125 3.34375 -3.59375 2.609375 -3.59375 Z M 3.40625 -3.28125 C 4.203125 -3.546875 4.640625 -4.03125 4.640625 -4.609375 C 4.640625 -5.421875 3.796875 -6.203125 2.609375 -6.203125 C 1.421875 -6.203125 0.578125 -5.40625 0.578125 -4.609375 C 0.578125 -4.03125 1.03125 -3.53125 1.828125 -3.28125 C 1.078125 -3.078125 0.4375 -2.484375 0.4375 -1.734375 C 0.4375 -0.765625 1.359375 0.109375 2.609375 0.109375 C 3.875 0.109375 4.78125 -0.765625 4.78125 -1.734375 C 4.78125 -2.484375 4.140625 -3.078125 3.40625 -3.28125 Z M 2.609375 -0.5 C 1.78125 -0.5 1.125 -1.0625 1.125 -1.75 C 1.125 -2.359375 1.703125 -2.984375 2.609375 -2.984375 C 3.53125 -2.984375 4.09375 -2.359375 4.09375 -1.75 C 4.09375 -1.0625 3.4375 -0.5 2.609375 -0.5 Z M 2.609375 -0.5 " - style="stroke:none;stroke-width:0" /> - <path - id="path1663" - transform="translate(217.45384,170.63)" - d="M 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 Z M 0.671875 -0.578125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1665" - transform="translate(222.684205,170.63)" - d="M 2.609375 -3.59375 C 1.890625 -3.59375 1.265625 -4.03125 1.265625 -4.59375 C 1.265625 -5.109375 1.828125 -5.59375 2.609375 -5.59375 C 3.390625 -5.59375 3.953125 -5.109375 3.953125 -4.59375 C 3.953125 -4.03125 3.34375 -3.59375 2.609375 -3.59375 Z M 3.40625 -3.28125 C 4.203125 -3.546875 4.640625 -4.03125 4.640625 -4.609375 C 4.640625 -5.421875 3.796875 -6.203125 2.609375 -6.203125 C 1.421875 -6.203125 0.578125 -5.40625 0.578125 -4.609375 C 0.578125 -4.03125 1.03125 -3.53125 1.828125 -3.28125 C 1.078125 -3.078125 0.4375 -2.484375 0.4375 -1.734375 C 0.4375 -0.765625 1.359375 0.109375 2.609375 0.109375 C 3.875 0.109375 4.78125 -0.765625 4.78125 -1.734375 C 4.78125 -2.484375 4.140625 -3.078125 3.40625 -3.28125 Z M 2.609375 -0.5 C 1.78125 -0.5 1.125 -1.0625 1.125 -1.75 C 1.125 -2.359375 1.703125 -2.984375 2.609375 -2.984375 C 3.53125 -2.984375 4.09375 -2.359375 4.09375 -1.75 C 4.09375 -1.0625 3.4375 -0.5 2.609375 -0.5 Z M 2.609375 -0.5 " - style="stroke:none;stroke-width:0" /> - <path - id="path1667" - transform="translate(227.91457,170.63)" - d="M 3.09375 -5.796875 C 3.09375 -5.953125 3.09375 -6.203125 2.796875 -6.203125 C 2.609375 -6.203125 2.546875 -6.078125 2.5 -5.96875 C 2.125 -5.109375 1.609375 -5 1.421875 -4.984375 C 1.25 -4.96875 1.046875 -4.953125 1.046875 -4.671875 C 1.046875 -4.421875 1.21875 -4.375 1.375 -4.375 C 1.5625 -4.375 1.96875 -4.4375 2.40625 -4.8125 L 2.40625 -0.609375 L 1.5 -0.609375 C 1.34375 -0.609375 1.109375 -0.609375 1.109375 -0.296875 C 1.109375 0 1.359375 0 1.5 0 L 4 0 C 4.15625 0 4.40625 0 4.40625 -0.296875 C 4.40625 -0.609375 4.171875 -0.609375 4 -0.609375 L 3.09375 -0.609375 Z M 3.09375 -5.796875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1669" - transform="translate(233.144935,170.63)" - d="M 2.609375 -3.59375 C 1.890625 -3.59375 1.265625 -4.03125 1.265625 -4.59375 C 1.265625 -5.109375 1.828125 -5.59375 2.609375 -5.59375 C 3.390625 -5.59375 3.953125 -5.109375 3.953125 -4.59375 C 3.953125 -4.03125 3.34375 -3.59375 2.609375 -3.59375 Z M 3.40625 -3.28125 C 4.203125 -3.546875 4.640625 -4.03125 4.640625 -4.609375 C 4.640625 -5.421875 3.796875 -6.203125 2.609375 -6.203125 C 1.421875 -6.203125 0.578125 -5.40625 0.578125 -4.609375 C 0.578125 -4.03125 1.03125 -3.53125 1.828125 -3.28125 C 1.078125 -3.078125 0.4375 -2.484375 0.4375 -1.734375 C 0.4375 -0.765625 1.359375 0.109375 2.609375 0.109375 C 3.875 0.109375 4.78125 -0.765625 4.78125 -1.734375 C 4.78125 -2.484375 4.140625 -3.078125 3.40625 -3.28125 Z M 2.609375 -0.5 C 1.78125 -0.5 1.125 -1.0625 1.125 -1.75 C 1.125 -2.359375 1.703125 -2.984375 2.609375 -2.984375 C 3.53125 -2.984375 4.09375 -2.359375 4.09375 -1.75 C 4.09375 -1.0625 3.4375 -0.5 2.609375 -0.5 Z M 2.609375 -0.5 " - style="stroke:none;stroke-width:0" /> - <path - id="path1671" - transform="translate(238.3753,170.63)" - d="M 0.671875 -0.578125 C 0.578125 -0.5 0.515625 -0.453125 0.515625 -0.3125 C 0.515625 0 0.765625 0 0.921875 0 L 4.3125 0 C 4.640625 0 4.703125 -0.09375 4.703125 -0.40625 L 4.703125 -0.671875 C 4.703125 -0.859375 4.703125 -1.078125 4.359375 -1.078125 C 4.015625 -1.078125 4.015625 -0.890625 4.015625 -0.609375 L 1.640625 -0.609375 C 2.234375 -1.109375 3.1875 -1.859375 3.625 -2.265625 C 4.25 -2.828125 4.703125 -3.453125 4.703125 -4.25 C 4.703125 -5.453125 3.703125 -6.203125 2.484375 -6.203125 C 1.3125 -6.203125 0.515625 -5.390625 0.515625 -4.53125 C 0.515625 -4.171875 0.796875 -4.0625 0.96875 -4.0625 C 1.171875 -4.0625 1.40625 -4.234375 1.40625 -4.5 C 1.40625 -4.625 1.359375 -4.75 1.265625 -4.828125 C 1.421875 -5.28125 1.890625 -5.59375 2.4375 -5.59375 C 3.25 -5.59375 4.015625 -5.140625 4.015625 -4.25 C 4.015625 -3.5625 3.53125 -2.984375 2.875 -2.4375 Z M 0.671875 -0.578125 " - style="stroke:none;stroke-width:0" /> - <path - id="path1673" - transform="translate(243.605665,170.63)" - d="M 2.609375 -3.59375 C 1.890625 -3.59375 1.265625 -4.03125 1.265625 -4.59375 C 1.265625 -5.109375 1.828125 -5.59375 2.609375 -5.59375 C 3.390625 -5.59375 3.953125 -5.109375 3.953125 -4.59375 C 3.953125 -4.03125 3.34375 -3.59375 2.609375 -3.59375 Z M 3.40625 -3.28125 C 4.203125 -3.546875 4.640625 -4.03125 4.640625 -4.609375 C 4.640625 -5.421875 3.796875 -6.203125 2.609375 -6.203125 C 1.421875 -6.203125 0.578125 -5.40625 0.578125 -4.609375 C 0.578125 -4.03125 1.03125 -3.53125 1.828125 -3.28125 C 1.078125 -3.078125 0.4375 -2.484375 0.4375 -1.734375 C 0.4375 -0.765625 1.359375 0.109375 2.609375 0.109375 C 3.875 0.109375 4.78125 -0.765625 4.78125 -1.734375 C 4.78125 -2.484375 4.140625 -3.078125 3.40625 -3.28125 Z M 2.609375 -0.5 C 1.78125 -0.5 1.125 -1.0625 1.125 -1.75 C 1.125 -2.359375 1.703125 -2.984375 2.609375 -2.984375 C 3.53125 -2.984375 4.09375 -2.359375 4.09375 -1.75 C 4.09375 -1.0625 3.4375 -0.5 2.609375 -0.5 Z M 2.609375 -0.5 " - style="stroke:none;stroke-width:0" /> - <path - id="path1675" - transform="translate(248.83603,170.63)" - d="M 0.375 -2.4375 C 0.296875 -2.296875 0.296875 -2.28125 0.296875 -2.078125 C 0.296875 -1.75 0.375 -1.6875 0.6875 -1.6875 L 3.203125 -1.6875 L 3.203125 -0.609375 L 2.578125 -0.609375 C 2.421875 -0.609375 2.1875 -0.609375 2.1875 -0.296875 C 2.1875 0 2.4375 0 2.578125 0 L 4.375 0 C 4.53125 0 4.78125 0 4.78125 -0.296875 C 4.78125 -0.609375 4.53125 -0.609375 4.375 -0.609375 L 3.765625 -0.609375 L 3.765625 -1.6875 L 4.53125 -1.6875 C 4.6875 -1.6875 4.9375 -1.6875 4.9375 -1.984375 C 4.9375 -2.296875 4.6875 -2.296875 4.53125 -2.296875 L 3.765625 -2.296875 L 3.765625 -5.796875 C 3.765625 -6.125 3.6875 -6.203125 3.34375 -6.203125 L 3.078125 -6.203125 C 2.828125 -6.203125 2.78125 -6.203125 2.65625 -6 Z M 0.984375 -2.296875 L 3.203125 -5.765625 L 3.203125 -2.296875 Z M 0.984375 -2.296875 " - style="stroke:none;stroke-width:0" /> - <path - id="path1677" - transform="translate(254.066395,170.63)" - d="M 3.234375 -3.671875 C 3.234375 -4.03125 2.9375 -4.296875 2.625 -4.296875 C 2.25 -4.296875 2 -3.984375 2 -3.671875 C 2 -3.3125 2.296875 -3.046875 2.609375 -3.046875 C 2.984375 -3.046875 3.234375 -3.359375 3.234375 -3.671875 Z M 2.65625 0 C 2.515625 0.53125 2.140625 0.734375 2 0.8125 C 1.9375 0.84375 1.796875 0.90625 1.796875 1.0625 C 1.796875 1.21875 1.9375 1.390625 2.109375 1.390625 C 2.328125 1.390625 3.296875 0.84375 3.296875 -0.265625 C 3.296875 -0.921875 2.984375 -1.25 2.609375 -1.25 C 2.25 -1.25 2 -0.96875 2 -0.625 C 2 -0.34375 2.15625 0 2.65625 0 Z M 2.65625 0 " - style="stroke:none;stroke-width:0" /> - </g> - </g> - </g> - <g - id="g3472" - ns1:jacobian_sqrt="0.752941" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.13432156857" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="s\\\'equence de bits "al\\\'eatoire"" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.752941,0,0,0.752941,-2.3185561,97.537938)"> - <g - id="g3470"> - <g - id="g3402" - style="fill:#000000;fill-opacity:1"> - <path - id="path3400" - transform="translate(148.712,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3406" - style="fill:#000000;fill-opacity:1"> - <path - id="path3404" - transform="translate(152.3623,134.765)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3422" - style="fill:#000000;fill-opacity:1"> - <path - id="path3408" - transform="translate(152.64125,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3410" - transform="translate(157.06863,134.765)" - d="m 3.78125,-0.609375 v 1.78125 C 3.78125,1.625 3.671875,1.625 3.015625,1.625 V 1.9375 C 3.34375,1.921875 3.875,1.90625 4.125,1.90625 c 0.265625,0 0.78125,0.015625 1.125,0.03125 V 1.625 c -0.671875,0 -0.78125,0 -0.78125,-0.453125 V -4.40625 H 4.25 L 3.875,-3.5 C 3.75,-3.78125 3.34375,-4.40625 2.546875,-4.40625 c -1.15625,0 -2.203125,0.96875 -2.203125,2.265625 0,1.25 0.96875,2.25 2.125,2.25 0.6875,0 1.09375,-0.421875 1.3125,-0.71875 z m 0.03125,-2.15625 v 1.40625 C 3.8125,-1.03125 3.640625,-0.75 3.421875,-0.515625 3.296875,-0.375 2.96875,-0.109375 2.5,-0.109375 1.78125,-0.109375 1.171875,-1 1.171875,-2.140625 c 0,-1.1875 0.6875,-2.015625 1.4375,-2.015625 0.796875,0 1.203125,0.859375 1.203125,1.390625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3412" - transform="translate(162.32689,134.765)" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3414" - transform="translate(167.86211,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3416" - transform="translate(172.28949,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3418" - transform="translate(177.82471,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3420" - transform="translate(182.25209,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3428" - style="fill:#000000;fill-opacity:1"> - <path - id="path3424" - transform="translate(189.99701,134.765)" - d="m 3.78125,-0.546875 v 0.65625 L 5.25,0 v -0.3125 c -0.6875,0 -0.78125,-0.0625 -0.78125,-0.5625 V -6.921875 L 3.046875,-6.8125 V -6.5 c 0.6875,0 0.765625,0.0625 0.765625,0.5625 v 2.15625 c -0.28125,-0.359375 -0.71875,-0.625 -1.25,-0.625 -1.171875,0 -2.21875,0.984375 -2.21875,2.265625 0,1.265625 0.96875,2.25 2.109375,2.25 0.640625,0 1.078125,-0.34375 1.328125,-0.65625 z m 0,-2.671875 v 2.046875 c 0,0.171875 0,0.1875 -0.109375,0.359375 C 3.375,-0.328125 2.9375,-0.109375 2.5,-0.109375 2.046875,-0.109375 1.6875,-0.375 1.453125,-0.75 1.203125,-1.15625 1.171875,-1.71875 1.171875,-2.140625 1.171875,-2.5 1.1875,-3.09375 1.46875,-3.546875 1.6875,-3.859375 2.0625,-4.1875 2.609375,-4.1875 c 0.34375,0 0.765625,0.15625 1.0625,0.59375 0.109375,0.171875 0.109375,0.1875 0.109375,0.375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3426" - transform="translate(195.53223,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3438" - style="fill:#000000;fill-opacity:1"> - <path - id="path3430" - transform="translate(203.28712,134.765)" - d="m 1.71875,-3.765625 v -3.15625 L 0.28125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V 0 h 0.25 c 0,-0.015625 0.078125,-0.15625 0.359375,-0.625 0.140625,0.234375 0.5625,0.734375 1.296875,0.734375 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.96875,-2.25 -2.109375,-2.25 -0.78125,0 -1.203125,0.46875 -1.359375,0.640625 z m 0.03125,2.625 V -3.1875 c 0,-0.1875 0,-0.203125 0.109375,-0.359375 C 2.25,-4.109375 2.796875,-4.1875 3.03125,-4.1875 c 0.453125,0 0.8125,0.265625 1.046875,0.640625 0.265625,0.40625 0.28125,0.96875 0.28125,1.390625 0,0.359375 -0.015625,0.953125 -0.296875,1.40625 -0.21875,0.3125 -0.59375,0.640625 -1.125,0.640625 -0.453125,0 -0.8125,-0.234375 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.953125 1.75,-1.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3432" - transform="translate(208.82234,134.765)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3434" - transform="translate(211.58995,134.765)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3436" - transform="translate(215.46441,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3446" - style="fill:#000000;fill-opacity:1"> - <path - id="path3440" - transform="translate(222.7112,134.765)" - d="m 1.53125,-5.875 c 0,-0.59375 -0.25,-1.046875 -0.671875,-1.046875 -0.34375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.203125,0 0.34375,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.03125,-0.03125 0.03125,-0.03125 0.03125,0 0.03125,0.140625 0.03125,0.171875 0,0.328125 -0.078125,1.046875 -0.703125,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.109375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 1.921875,0 c 0,-0.59375 -0.234375,-1.046875 -0.65625,-1.046875 -0.359375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.1875,0 0.328125,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.015625,-0.03125 0.03125,-0.03125 0.015625,0 0.015625,0.140625 0.015625,0.171875 0,0.328125 -0.0625,1.046875 -0.6875,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3442" - transform="translate(227.6925,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3444" - transform="translate(232.6738,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3450" - style="fill:#000000;fill-opacity:1"> - <path - id="path3448" - transform="translate(235.16246,134.765)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g3468" - style="fill:#000000;fill-opacity:1"> - <path - id="path3452" - transform="translate(235.44141,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3454" - transform="translate(239.86879,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3456" - transform="translate(244.85009,134.765)" - d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3458" - transform="translate(248.72455,134.765)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3460" - transform="translate(253.70585,134.765)" - d="M 1.765625,-4.40625 0.375,-4.296875 v 0.3125 c 0.640625,0 0.734375,0.0625 0.734375,0.546875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.640625,-0.015625 1.1875,-0.03125 1.421875,-0.03125 1.78125,-0.03125 2.125,-0.015625 2.46875,0 v -0.3125 c -0.671875,0 -0.703125,-0.046875 -0.703125,-0.4375 z m 0.03125,-1.734375 c 0,-0.3125 -0.234375,-0.53125 -0.515625,-0.53125 -0.3125,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.21875,0.53125 0.53125,0.53125 0.28125,0 0.515625,-0.21875 0.515625,-0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3462" - transform="translate(256.47346,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3464" - transform="translate(260.37581,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path3466" - transform="translate(264.80319,134.765)" - d="m 1.53125,-5.875 c 0,-0.59375 -0.25,-1.046875 -0.671875,-1.046875 -0.34375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.203125,0 0.34375,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.03125,-0.03125 0.03125,-0.03125 0.03125,0 0.03125,0.140625 0.03125,0.171875 0,0.328125 -0.078125,1.046875 -0.703125,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.109375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 1.921875,0 c 0,-0.59375 -0.234375,-1.046875 -0.65625,-1.046875 -0.359375,0 -0.53125,0.265625 -0.53125,0.53125 0,0.265625 0.171875,0.53125 0.53125,0.53125 0.1875,0 0.328125,-0.109375 0.390625,-0.15625 0.015625,-0.03125 0.015625,-0.03125 0.03125,-0.03125 0.015625,0 0.015625,0.140625 0.015625,0.171875 0,0.328125 -0.0625,1.046875 -0.6875,1.65625 -0.125,0.125 -0.125,0.140625 -0.125,0.171875 0,0.0625 0.046875,0.109375 0.09375,0.109375 0.109375,0 0.9375,-0.75 0.9375,-1.9375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/pointer_arithmetics.svg b/slides/figs/pointer_arithmetics.svg deleted file mode 100644 index 3cbc4f3760cd40887de6026f8da9a6bf2713dffd..0000000000000000000000000000000000000000 --- a/slides/figs/pointer_arithmetics.svg +++ /dev/null @@ -1,1265 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:ns1="http://www.iki.fi/pav/software/textext/" - 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="240.52008mm" - height="57.351295mm" - viewBox="0 0 240.52008 57.351295" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="pointer_arithmetics.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.4" - inkscape:cx="62.564822" - inkscape:cy="1.2976022" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1028" - inkscape:window-x="0" - inkscape:window-y="24" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - id="grid819" - type="xygrid" - originx="12.728429" - originy="-131.87483" /> - </sodipodi:namedview> - <defs - id="defs2"> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3034" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3314" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3312" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lstart" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lstart" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(1.1,0,0,1.1,1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path8951" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7-2" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-3" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-4" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-2" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-8" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-27" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-7-2" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-27-6" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284-1-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028-4-0" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-0" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-7" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-11" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-5" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-6" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-5-6" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-9-56" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - <marker - inkscape:stockid="Arrow2Mend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Mend-6" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path3034-2" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="scale(-0.6)" /> - </marker> - </defs> - <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="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(12.72843,-107.77389)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-2" - width="14.198196" - height="9.260417" - x="28.557999" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-8" - width="14.198196" - height="9.260417" - x="42.756195" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7" - width="14.198196" - height="9.260417" - x="0.16160744" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3" - width="14.198196" - height="9.260417" - x="14.359803" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-29" - width="14.198196" - height="9.260417" - x="85.350792" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-3" - width="14.198196" - height="9.260417" - x="99.548988" - y="136.7381" /> - <g - transform="matrix(0.48784069,0,0,1,8.5514489,-20.032726)" - id="g846-5-1" - style="fill:none;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-6-9" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-2-4" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.4878407,0,0,1,93.949527,-20.032732)" - id="g846-7-2-6" - style="fill:none;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8-5" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7-3" - width="14.198196" - height="9.260417" - x="113.95608" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3-5" - width="14.198196" - height="9.260417" - x="128.15427" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-29-6" - width="14.198196" - height="9.260417" - x="199.14526" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-3-2" - width="14.198196" - height="9.260417" - x="213.34346" - y="136.7381" /> - <g - transform="matrix(0.4878407,0,0,1,122.34592,-20.032727)" - id="g846-5-1-9" - style="fill:none;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-6-9-1" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-2-4-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - id="g8594" - ns1:jacobian_sqrt="1.0" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\nint *p = malloc(16 * sizeof(int))\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="translate(-145.88016,-20.069237)"> - <g - id="g8592"> - <g - id="g8530" - style="fill:#000000;fill-opacity:1"> - <path - id="path8524" - transform="translate(133.768,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8526" - transform="translate(138.99836,134.765)" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8528" - transform="translate(144.22873,134.765)" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g8536" - style="fill:#000000;fill-opacity:1"> - <path - id="path8532" - transform="translate(154.68946,134.765)" - d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8534" - transform="translate(159.91982,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g8540" - style="fill:#000000;fill-opacity:1"> - <path - id="path8538" - transform="translate(170.38055,134.765)" - d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g8560" - style="fill:#000000;fill-opacity:1"> - <path - id="path8542" - transform="translate(180.84128,134.765)" - d="M 1.09375,-4 C 1.0625,-4.296875 0.875,-4.296875 0.6875,-4.296875 H 0.375 c -0.15625,0 -0.421875,0 -0.421875,0.296875 0,0.3125 0.21875,0.3125 0.578125,0.3125 v 3.078125 c -0.359375,0 -0.578125,0 -0.578125,0.3125 C -0.046875,0 0.234375,0 0.375,0 H 1.25 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -1.78125 C 1.09375,-3.28125 1.5,-3.75 1.90625,-3.75 c 0.234375,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 1.828125,0 2.109375,0 2.25,0 h 0.734375 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.21875,-0.3125 -0.578125,-0.3125 v -1.78125 c 0,-0.890625 0.40625,-1.359375 0.828125,-1.359375 0.21875,0 0.359375,0.171875 0.359375,0.8125 v 2.328125 c -0.1875,0 -0.4375,0 -0.4375,0.3125 C 3.578125,0 3.84375,0 3.984375,0 h 0.75 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.203125,-0.3125 -0.5625,-0.3125 v -2.40625 c 0,-0.203125 0,-1.34375 -0.890625,-1.34375 -0.296875,0 -0.703125,0.125 -0.984375,0.515625 C 2.546875,-4.171875 2.265625,-4.359375 1.9375,-4.359375 1.625,-4.359375 1.328125,-4.21875 1.09375,-4 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8544" - transform="translate(186.07165,134.765)" - d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8546" - transform="translate(191.30201,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8548" - transform="translate(196.53238,134.765)" - d="m 2.953125,-5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 0.984375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 h 1.28125 v 4.875 h -1.28125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.578125,0 0.84375,0 0.984375,0 H 4.25 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 2.953125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8550" - transform="translate(201.76274,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8552" - transform="translate(206.99311,134.765)" - d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8554" - transform="translate(212.22347,134.765)" - d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8556" - transform="translate(217.45384,134.765)" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8558" - transform="translate(222.6842,134.765)" - d="M 1.234375,-3.375 C 1.375,-4.78125 2.3125,-5.59375 3.1875,-5.59375 c 0.34375,0 0.5,0.109375 0.546875,0.15625 -0.046875,0.046875 -0.09375,0.109375 -0.09375,0.296875 0,0.234375 0.171875,0.4375 0.4375,0.4375 0.25,0 0.453125,-0.171875 0.453125,-0.46875 0,-0.484375 -0.359375,-1.03125 -1.328125,-1.03125 -1.34375,0 -2.671875,1.203125 -2.671875,3.21875 0,2.359375 1.109375,3.09375 2.09375,3.09375 1.09375,0 2.0625,-0.84375 2.0625,-2.03125 0,-1.140625 -0.875,-2.03125 -1.96875,-2.03125 -0.515625,0 -1.03125,0.171875 -1.484375,0.578125 z M 2.625,-0.5 c -0.640625,0 -1.03125,-0.484375 -1.234375,-1.09375 -0.015625,-0.0625 -0.03125,-0.125 -0.046875,-0.1875 0,0 -0.015625,-0.03125 -0.015625,-0.03125 0,0 0.015625,-0.09375 0.015625,-0.09375 -0.015625,-0.0625 -0.03125,-0.234375 -0.03125,-0.3125 0,-0.609375 0.59375,-1.109375 1.359375,-1.109375 C 3.484375,-3.328125 4,-2.65625 4,-1.921875 4,-1.0625 3.34375,-0.5 2.625,-0.5 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g8564" - style="fill:#000000;fill-opacity:1"> - <path - id="path8562" - transform="translate(233.14493,134.765)" - d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g8590" - style="fill:#000000;fill-opacity:1"> - <path - id="path8566" - transform="translate(243.60566,134.765)" - d="M 2.96875,-2.546875 C 2.734375,-2.578125 2.546875,-2.609375 2.296875,-2.65625 2,-2.703125 1.328125,-2.828125 1.328125,-3.203125 c 0,-0.265625 0.3125,-0.578125 1.265625,-0.578125 0.828125,0 0.96875,0.296875 1,0.5625 0,0.171875 0.03125,0.34375 0.328125,0.34375 0.359375,0 0.359375,-0.21875 0.359375,-0.421875 v -0.6875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.25,0 -0.28125,0.140625 -0.3125,0.21875 -0.4375,-0.21875 -0.875,-0.21875 -1.0625,-0.21875 -1.65625,0 -1.890625,0.828125 -1.890625,1.1875 0,0.90625 1.046875,1.078125 1.96875,1.21875 0.484375,0.078125 1.28125,0.203125 1.28125,0.734375 0,0.375 -0.375,0.703125 -1.28125,0.703125 -0.46875,0 -1.015625,-0.109375 -1.265625,-0.890625 -0.0625,-0.171875 -0.09375,-0.28125 -0.359375,-0.28125 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.96875 c 0,0.15625 0,0.40625 0.296875,0.40625 0.09375,0 0.25,-0.015625 0.375,-0.375 0.484375,0.359375 1.015625,0.375 1.296875,0.375 1.5625,0 1.890625,-0.828125 1.890625,-1.3125 0,-1.03125 -1.28125,-1.25 -1.609375,-1.296875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8568" - transform="translate(248.83603,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8570" - transform="translate(254.06639,134.765)" - d="M 4.46875,-3.5625 C 4.6875,-3.765625 4.6875,-3.78125 4.6875,-3.953125 c 0,-0.34375 -0.21875,-0.34375 -0.40625,-0.34375 H 0.890625 c -0.328125,0 -0.40625,0.078125 -0.40625,0.40625 v 0.46875 c 0,0.1875 0,0.40625 0.34375,0.40625 0.34375,0 0.34375,-0.21875 0.34375,-0.40625 V -3.6875 H 3.65625 L 0.546875,-0.734375 C 0.34375,-0.53125 0.328125,-0.515625 0.328125,-0.34375 0.328125,0 0.546875,0 0.734375,0 h 3.78125 c 0.21875,-0.0625 0.21875,-0.265625 0.21875,-0.40625 v -0.578125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.375 h -2.6875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8572" - transform="translate(259.29676,134.765)" - d="m 4.234375,-1.90625 c 0.203125,0 0.390625,0 0.390625,-0.359375 0,-1.140625 -0.640625,-2.125 -1.9375,-2.125 -1.1875,0 -2.140625,1 -2.140625,2.234375 0,1.203125 1.015625,2.21875 2.296875,2.21875 1.3125,0 1.78125,-0.90625 1.78125,-1.15625 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.1875,0 -0.265625,0.03125 -0.328125,0.21875 -0.21875,0.5 -0.765625,0.59375 -1.046875,0.59375 -0.75,0 -1.484375,-0.5 -1.65625,-1.359375 z M 1.265625,-2.5 C 1.40625,-3.234375 2,-3.78125 2.6875,-3.78125 c 0.515625,0 1.140625,0.25 1.234375,1.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8574" - transform="translate(264.52712,134.765)" - d="m 4.65625,-2.15625 c 0,-1.25 -0.921875,-2.234375 -2.046875,-2.234375 -1.109375,0 -2.046875,0.984375 -2.046875,2.234375 0,1.265625 0.953125,2.21875 2.046875,2.21875 1.09375,0 2.046875,-0.953125 2.046875,-2.21875 z M 2.609375,-0.546875 C 1.875,-0.546875 1.25,-1.296875 1.25,-2.21875 c 0,-0.90625 0.65625,-1.5625 1.359375,-1.5625 0.71875,0 1.359375,0.65625 1.359375,1.5625 0,0.921875 -0.625,1.671875 -1.359375,1.671875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8576" - transform="translate(269.75749,134.765)" - d="m 2.515625,-3.6875 h 1.21875 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.21875 v -0.46875 c 0,-0.78125 0.671875,-0.78125 0.96875,-0.78125 0,0.046875 0.09375,0.4375 0.4375,0.4375 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.609375 -0.796875,-0.609375 -0.953125,-0.609375 -0.796875,0 -1.578125,0.46875 -1.578125,1.328125 v 0.53125 H 0.84375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 0,0.296875 0.25,0.296875 0.40625,0.296875 h 1 v 3.078125 h -1 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.421875,0 0.671875,0 0.828125,0 H 3.53125 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.40625,-0.3125 H 2.515625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8578" - transform="translate(274.98786,134.765)" - d="m 4.359375,0.53125 c 0,-0.140625 -0.078125,-0.1875 -0.25,-0.296875 C 2.875,-0.609375 2.40625,-1.9375 2.40625,-3.046875 c 0,-1 0.390625,-2.390625 1.71875,-3.296875 0.15625,-0.109375 0.234375,-0.140625 0.234375,-0.296875 0,-0.078125 -0.046875,-0.28125 -0.3125,-0.28125 -0.28125,0 -2.328125,1.3125 -2.328125,3.875 0,1.1875 0.46875,2.078125 0.8125,2.578125 0.53125,0.734375 1.28125,1.28125 1.515625,1.28125 0.265625,0 0.3125,-0.1875 0.3125,-0.28125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8580" - transform="translate(280.21822,134.765)" - d="m 3.078125,-3.890625 c 0,-0.3125 -0.0625,-0.40625 -0.390625,-0.40625 H 1.265625 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 1.125 v 3.078125 H 1.1875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.78125,0 1.03125,0 1.1875,0 H 4.125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.078125 Z m 0,-1.71875 c 0,-0.265625 -0.21875,-0.484375 -0.5,-0.484375 -0.28125,0 -0.5,0.21875 -0.5,0.484375 0,0.28125 0.21875,0.5 0.5,0.5 0.28125,0 0.5,-0.21875 0.5,-0.5 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8582" - transform="translate(285.44858,134.765)" - d="m 1.65625,-3.828125 c 0,-0.3125 0,-0.46875 -0.40625,-0.46875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 3.078125 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 v -2.3125 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8584" - transform="translate(290.67895,134.765)" - d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8586" - transform="translate(295.90931,134.765)" - d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path8588" - transform="translate(301.13968,134.765)" - d="m 3.515625,-3.046875 c 0,-1.1875 -0.46875,-2.09375 -0.8125,-2.578125 -0.53125,-0.734375 -1.28125,-1.296875 -1.515625,-1.296875 -0.25,0 -0.3125,0.203125 -0.3125,0.28125 0,0.15625 0.109375,0.21875 0.15625,0.25 1.640625,1.09375 1.796875,2.6875 1.796875,3.34375 0,1 -0.375,2.375 -1.71875,3.28125 C 0.953125,0.34375 0.875,0.390625 0.875,0.53125 c 0,0.09375 0.0625,0.28125 0.3125,0.28125 0.28125,0 2.328125,-1.3125 2.328125,-3.859375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="translate(-146.62143,28.141434)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.83464566935" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="1.0" - id="g9905"> - <g - id="surface1"> - <g - style="fill:#000000;fill-opacity:1" - id="g9902"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path9900" /> - </g> - </g> - </g> - <g - id="g10999" - ns1:jacobian_sqrt="1.0" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np+1\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.7189877,0,0,0.7189877,-91.228156,30.918937)"> - <g - id="g10997"> - <g - id="g10995" - style="fill:#000000;fill-opacity:1"> - <path - id="path10989" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path10991" - transform="translate(138.99836,134.765)" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path10993" - transform="translate(144.22873,134.765)" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend)" - d="m 2.5905179,135.20704 c 6.032772,-5.07547 9.8586391,-4.54955 15.0429401,-0.42243" - id="path2993-9-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5)" - d="m 17.462329,135.20704 c 6.032772,-5.07547 9.858639,-4.54955 15.04294,-0.42243" - id="path2993-9-2-4" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5-9)" - d="m 32.334142,135.20704 c 6.032771,-5.07547 9.858638,-4.54955 15.042939,-0.42243" - id="path2993-9-2-4-9" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5-1)" - d="m 47.205947,135.20704 c 6.032771,-5.07547 9.858638,-4.54955 15.042939,-0.42243" - id="path2993-9-2-4-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5-11)" - d="m 62.077769,135.20704 c 6.032772,-5.07547 9.858639,-4.54955 15.042939,-0.42243" - id="path2993-9-2-4-97" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5-7)" - d="m 76.949581,135.20704 c 6.032772,-5.07547 9.858639,-4.54955 15.042939,-0.42243" - id="path2993-9-2-4-73" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-5-6)" - d="m 91.821399,135.20704 c 6.032772,-5.07547 9.858641,-4.54955 15.042941,-0.42243" - id="path2993-9-2-4-3" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - transform="matrix(0.718988,0,0,0.718988,-76.463112,30.918897)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np+2\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807534177" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g15853"> - <g - id="g15851"> - <g - style="fill:#000000;fill-opacity:1" - id="g15849"> - <path - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path15843" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path15845" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - transform="translate(144.22873,134.765)" - id="path15847" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g16239" - ns1:jacobian_sqrt="0.718988" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.03807537012" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np+7\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.718988,0,0,0.718988,-2.1321271,30.935748)"> - <g - id="g16237"> - <g - id="g16235" - style="fill:#000000;fill-opacity:1"> - <path - id="path16229" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path16231" - transform="translate(138.99836,134.765)" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path16233" - transform="translate(144.22873,134.765)" - d="m 3.765625,-5.484375 c -1.734375,1.828125 -2.078125,4.03125 -2.078125,5.125 0,0.140625 0,0.46875 0.359375,0.46875 C 2.21875,0.109375 2.375,0 2.375,-0.296875 2.4375,-3.125 3.953125,-4.859375 4.5625,-5.4375 4.765625,-5.625 4.78125,-5.640625 4.78125,-5.78125 c 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 H 1.09375 C 1.03125,-6.25 0.859375,-6.25 0.78125,-6.25 0.4375,-6.25 0.4375,-6.03125 0.4375,-5.84375 v 0.421875 c 0,0.1875 0,0.40625 0.34375,0.40625 0.34375,0 0.34375,-0.1875 0.34375,-0.46875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.718988,0,0,0.718988,-16.970246,30.918897)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np+6\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807537012" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g16561"> - <g - id="g16559"> - <g - style="fill:#000000;fill-opacity:1" - id="g16557"> - <path - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path16551" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path16553" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 1.234375,-3.375 C 1.375,-4.78125 2.3125,-5.59375 3.1875,-5.59375 c 0.34375,0 0.5,0.109375 0.546875,0.15625 -0.046875,0.046875 -0.09375,0.109375 -0.09375,0.296875 0,0.234375 0.171875,0.4375 0.4375,0.4375 0.25,0 0.453125,-0.171875 0.453125,-0.46875 0,-0.484375 -0.359375,-1.03125 -1.328125,-1.03125 -1.34375,0 -2.671875,1.203125 -2.671875,3.21875 0,2.359375 1.109375,3.09375 2.09375,3.09375 1.09375,0 2.0625,-0.84375 2.0625,-2.03125 0,-1.140625 -0.875,-2.03125 -1.96875,-2.03125 -0.515625,0 -1.03125,0.171875 -1.484375,0.578125 z M 2.625,-0.5 c -0.640625,0 -1.03125,-0.484375 -1.234375,-1.09375 -0.015625,-0.0625 -0.03125,-0.125 -0.046875,-0.1875 0,0 -0.015625,-0.03125 -0.015625,-0.03125 0,0 0.015625,-0.09375 0.015625,-0.09375 -0.015625,-0.0625 -0.03125,-0.234375 -0.03125,-0.3125 0,-0.609375 0.59375,-1.109375 1.359375,-1.109375 C 3.484375,-3.328125 4,-2.65625 4,-1.921875 4,-1.0625 3.34375,-0.5 2.625,-0.5 Z m 0,0" - transform="translate(144.22873,134.765)" - id="path16555" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g16883" - ns1:jacobian_sqrt="0.718988" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.03807537012" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np+5\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.718988,0,0,0.718988,-31.847679,30.879578)"> - <g - id="g16881"> - <g - id="g16879" - style="fill:#000000;fill-opacity:1"> - <path - id="path16873" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path16875" - transform="translate(138.99836,134.765)" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path16877" - transform="translate(144.22873,134.765)" - d="m 2.765625,-3.875 c -0.359375,0 -0.796875,0.0625 -1.203125,0.28125 v -1.890625 h 2.390625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.28125 C 0.953125,-6.09375 0.875,-6 0.875,-5.6875 v 2.65625 c 0,0.1875 0,0.40625 0.328125,0.40625 0.171875,0 0.21875,-0.046875 0.296875,-0.140625 0.265625,-0.328125 0.671875,-0.5 1.25,-0.5 0.8125,0 1.265625,0.71875 1.265625,1.375 C 4.015625,-1.09375 3.3125,-0.5 2.46875,-0.5 2.1875,-0.5 1.5625,-0.578125 1.28125,-1.125 c 0.046875,-0.046875 0.125,-0.125 0.125,-0.328125 0,-0.28125 -0.234375,-0.4375 -0.4375,-0.4375 -0.15625,0 -0.453125,0.09375 -0.453125,0.46875 0,0.828125 0.84375,1.53125 1.953125,1.53125 1.25,0 2.234375,-0.890625 2.234375,-2 0,-1.015625 -0.765625,-1.984375 -1.9375,-1.984375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.718988,0,0,0.718988,-46.803748,30.918897)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np+4\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807537012" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g17205"> - <g - id="g17203"> - <g - style="fill:#000000;fill-opacity:1" - id="g17201"> - <path - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path17195" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - transform="translate(138.99836,134.765)" - id="path17197" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 0.375,-2.4375 C 0.296875,-2.296875 0.296875,-2.28125 0.296875,-2.078125 0.296875,-1.75 0.375,-1.6875 0.6875,-1.6875 h 2.515625 v 1.078125 h -0.625 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 2.1875,0 2.4375,0 2.578125,0 H 4.375 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.765625 V -1.6875 H 4.53125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.765625 v -3.5 c 0,-0.328125 -0.078125,-0.40625 -0.421875,-0.40625 H 3.078125 c -0.25,0 -0.296875,0 -0.421875,0.203125 z m 0.609375,0.140625 2.21875,-3.46875 v 3.46875 z m 0,0" - transform="translate(144.22873,134.765)" - id="path17199" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g17527" - ns1:jacobian_sqrt="0.718988" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.03807537012" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np+3\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.718988,0,0,0.718988,-61.619382,30.918897)"> - <g - id="g17525"> - <g - id="g17523" - style="fill:#000000;fill-opacity:1"> - <path - id="path17517" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path17519" - transform="translate(138.99836,134.765)" - d="M 2.953125,-2.703125 H 4.375 c 0.125,0 0.46875,0 0.46875,-0.34375 C 4.84375,-3.40625 4.5,-3.40625 4.375,-3.40625 H 2.953125 v -1.421875 c 0,-0.109375 0,-0.46875 -0.34375,-0.46875 -0.34375,0 -0.34375,0.359375 -0.34375,0.46875 V -3.40625 H 0.84375 c -0.109375,0 -0.46875,0 -0.46875,0.359375 0,0.34375 0.359375,0.34375 0.46875,0.34375 h 1.421875 v 1.421875 c 0,0.125 0,0.46875 0.34375,0.46875 0.34375,0 0.34375,-0.34375 0.34375,-0.46875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path17521" - transform="translate(144.22873,134.765)" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-6)" - d="m -10.529002,155.8242 c 0.24176,-7.45235 1.9328649,-10.68434 8.288068,-12.56091" - id="path2993-9-2-1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <g - transform="matrix(0.55358303,0,0,0.55358303,-72.003448,68.066475)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np[0]\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="2.03807534177" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.718988" - id="g19324"> - <g - id="g19322"> - <g - style="fill:#000000;fill-opacity:1" - id="g19320"> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path19312" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.421875,-6.3125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 h -1.8125 c -0.328125,0 -0.390625,0.09375 -0.390625,0.40625 v 6.9375 c 0,0.3125 0.046875,0.40625 0.390625,0.40625 h 1.8125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 H 2.90625 V -6.3125 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path19314" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0" - transform="translate(144.22873,134.765)" - id="path19316" /> - <path - inkscape:connector-curvature="0" - style="stroke:none;stroke-width:0" - d="m 3.015625,-6.515625 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 H 2.328125 V 0.21875 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 h 1.796875 c 0.328125,0 0.40625,-0.09375 0.40625,-0.40625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path19318" /> - </g> - </g> - </g> - <g - id="g19755" - ns1:jacobian_sqrt="0.553583" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="1.56921106203" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np[1]\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.553583,0,0,0.553583,-57.805248,68.066479)"> - <g - id="g19753"> - <g - id="g19751" - style="fill:#000000;fill-opacity:1"> - <path - id="path19743" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path19745" - transform="translate(138.99836,134.765)" - d="m 4.421875,-6.3125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 h -1.8125 c -0.328125,0 -0.390625,0.09375 -0.390625,0.40625 v 6.9375 c 0,0.3125 0.046875,0.40625 0.390625,0.40625 h 1.8125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 H 2.90625 V -6.3125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path19747" - transform="translate(144.22873,134.765)" - d="m 3.09375,-5.796875 c 0,-0.15625 0,-0.40625 -0.296875,-0.40625 -0.1875,0 -0.25,0.125 -0.296875,0.234375 C 2.125,-5.109375 1.609375,-5 1.421875,-4.984375 c -0.171875,0.015625 -0.375,0.03125 -0.375,0.3125 0,0.25 0.171875,0.296875 0.328125,0.296875 0.1875,0 0.59375,-0.0625 1.03125,-0.4375 v 4.203125 H 1.5 c -0.15625,0 -0.390625,0 -0.390625,0.3125 C 1.109375,0 1.359375,0 1.5,0 H 4 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.40625,-0.3125 H 3.09375 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path19749" - transform="translate(149.45909,134.765)" - d="m 3.015625,-6.515625 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 H 2.328125 V 0.21875 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 h 1.796875 c 0.328125,0 0.40625,-0.09375 0.40625,-0.40625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - transform="matrix(0.553583,0,0,0.553583,-43.607053,68.066479)" - ns1:version="0.9.0" - ns1:texconverter="pdflatex" - ns1:pdfconverter="pdf2svg" - ns1:text="\\begin{verbatim}\np[2]\n\\end{verbatim}" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:scale="1.56921106203" - ns1:alignment="middle center" - inkscapeversion="0.92.3" - ns1:jacobian_sqrt="0.553583" - id="g20138"> - <g - id="g20136"> - <g - style="fill:#000000;fill-opacity:1" - id="g20134"> - <path - style="stroke:none;stroke-width:0" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - transform="translate(133.768,134.765)" - id="path20126" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="m 4.421875,-6.3125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 h -1.8125 c -0.328125,0 -0.390625,0.09375 -0.390625,0.40625 v 6.9375 c 0,0.3125 0.046875,0.40625 0.390625,0.40625 h 1.8125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 H 2.90625 V -6.3125 Z m 0,0" - transform="translate(138.99836,134.765)" - id="path20128" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0" - transform="translate(144.22873,134.765)" - id="path20130" - inkscape:connector-curvature="0" /> - <path - style="stroke:none;stroke-width:0" - d="m 3.015625,-6.515625 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 H 2.328125 V 0.21875 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 h 1.796875 c 0.328125,0 0.40625,-0.09375 0.40625,-0.40625 z m 0,0" - transform="translate(149.45909,134.765)" - id="path20132" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <g - id="g20521" - ns1:jacobian_sqrt="0.553583" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="1.56921106203" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="\\begin{verbatim}\np[3]\n\\end{verbatim}" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="matrix(0.553583,0,0,0.553583,-29.408856,68.066479)"> - <g - id="g20519"> - <g - id="g20517" - style="fill:#000000;fill-opacity:1"> - <path - id="path20509" - transform="translate(133.768,134.765)" - d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path20511" - transform="translate(138.99836,134.765)" - d="m 4.421875,-6.3125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 h -1.8125 c -0.328125,0 -0.390625,0.09375 -0.390625,0.40625 v 6.9375 c 0,0.3125 0.046875,0.40625 0.390625,0.40625 h 1.8125 c 0.140625,0 0.390625,0 0.390625,-0.296875 0,-0.3125 -0.234375,-0.3125 -0.390625,-0.3125 H 2.90625 V -6.3125 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path20513" - transform="translate(144.22873,134.765)" - d="M 3.65625,-3.328125 C 4.21875,-3.6875 4.5,-4.25 4.5,-4.796875 c 0,-0.734375 -0.734375,-1.40625 -1.875,-1.40625 -1.203125,0 -1.890625,0.484375 -1.890625,1.171875 0,0.328125 0.25,0.46875 0.4375,0.46875 0.21875,0 0.4375,-0.171875 0.4375,-0.453125 0,-0.140625 -0.046875,-0.234375 -0.078125,-0.265625 0.296875,-0.3125 1.015625,-0.3125 1.09375,-0.3125 0.6875,0 1.1875,0.359375 1.1875,0.8125 0,0.296875 -0.15625,0.640625 -0.421875,0.859375 C 3.078125,-3.65625 2.828125,-3.640625 2.46875,-3.625 1.890625,-3.578125 1.75,-3.578125 1.75,-3.296875 c 0,0.3125 0.234375,0.3125 0.390625,0.3125 h 0.46875 c 0.984375,0 1.484375,0.671875 1.484375,1.25 C 4.09375,-1.125 3.53125,-0.5 2.625,-0.5 2.234375,-0.5 1.46875,-0.609375 1.203125,-1.078125 1.25,-1.125 1.328125,-1.1875 1.328125,-1.390625 c 0,-0.234375 -0.1875,-0.4375 -0.4375,-0.4375 -0.234375,0 -0.453125,0.15625 -0.453125,0.46875 0,0.890625 0.96875,1.46875 2.1875,1.46875 1.3125,0 2.15625,-0.921875 2.15625,-1.84375 0,-0.703125 -0.46875,-1.296875 -1.125,-1.59375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path20515" - transform="translate(149.45909,134.765)" - d="m 3.015625,-6.515625 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 H 2.328125 V 0.21875 H 0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 h 1.796875 c 0.328125,0 0.40625,-0.09375 0.40625,-0.40625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - </g> -</svg> diff --git a/slides/figs/pointer_struct.svg b/slides/figs/pointer_struct.svg deleted file mode 100644 index d7b41cee31e3bb0571ed0e0cf447cccc8729af33..0000000000000000000000000000000000000000 --- a/slides/figs/pointer_struct.svg +++ /dev/null @@ -1,454 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - width="169.70569mm" - height="96.099983mm" - viewBox="0 0 169.70569 96.099986" - version="1.1" - id="svg8" - inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" - sodipodi:docname="pointer_struct.svg" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns="http://www.w3.org/2000/svg" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:ns1="http://www.iki.fi/pav/software/textext/"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.9899495" - inkscape:cx="169.70563" - inkscape:cy="110.6117" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="944" - inkscape:window-height="1022" - inkscape:window-x="962" - inkscape:window-y="44" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:pagecheckerboard="0"> - <inkscape:grid - id="grid819" - type="xygrid" - originx="22.40475" - originy="-104.72045" /> - </sodipodi:namedview> - <defs - id="defs2"> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3314" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3312" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="marker3284" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3028" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lstart" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lstart" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path3025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(1.1,0,0,1.1,1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend" - style="overflow:visible" - inkscape:isstock="true"> - <path - id="path8951" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-9" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-7-2" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-5-8" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - <marker - inkscape:stockid="Arrow2Lend" - orient="auto" - refY="0" - refX="0" - id="Arrow2Lend-1" - style="overflow:visible" - inkscape:isstock="true"> - <path - inkscape:connector-curvature="0" - id="path8951-3" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" /> - </marker> - </defs> - <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" /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(22.404752,-95.547514)"> - <g - transform="matrix(0.48784069,0,0,1,-19.844943,-20.032731)" - id="g846-7-2" - style="fill:none;stroke:#0000ff;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8" - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.5, 1.5;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7" - width="14.198196" - height="9.260417" - x="0.16160744" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.5, 1.5;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3" - width="14.198196" - height="9.260417" - x="14.359803" - y="136.7381" /> - <g - id="g1424" - transform="translate(-49.091184)"> - <g - transform="matrix(0.4878407,0,0,1,85.797382,-20.032732)" - id="g846-7-2-6" - style="fill:none;stroke:#ff0007;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8-5" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.715865;stroke-miterlimit:4;stroke-dasharray:0.715865, 2.14759;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.5, 1.5;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7-3" - width="14.198196" - height="9.260417" - x="105.80393" - y="136.7381" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.5, 1.5;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3-5" - width="14.198196" - height="9.260417" - x="120.00212" - y="136.7381" /> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3284)" - d="M -1.3502974,187.19792 C -11.771154,175.55249 -19.079084,167.53113 0.16160744,145.99852" - id="path2993" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc" /> - <ellipse - style="fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.404612;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path3710" - cx="62.44809" - cy="138.51381" - rx="84.650536" - ry="32.742634" /> - <g - id="g4075" - ns1:jacobian_sqrt="1.0" - inkscapeversion="0.92.3" - ns1:alignment="middle center" - ns1:scale="2.83464566935" - ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex" - ns1:text="pas encore allou\\\'ee" - ns1:pdfconverter="pdf2svg" - ns1:texconverter="pdflatex" - ns1:version="0.9.0" - transform="translate(-128.64259,-32.264361)"> - <g - id="g4073"> - <g - id="g4035" - style="fill:#000000;fill-opacity:1"> - <path - id="path4029" - transform="translate(148.712,134.765)" - d="m 1.71875,-3.75 v -0.65625 l -1.4375,0.109375 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5 v 4.65625 C 1.0625,1.625 0.953125,1.625 0.28125,1.625 V 1.9375 C 0.625,1.921875 1.140625,1.90625 1.390625,1.90625 c 0.28125,0 0.78125,0.015625 1.125,0.03125 V 1.625 C 1.859375,1.625 1.75,1.625 1.75,1.171875 V -0.59375 c 0.046875,0.171875 0.46875,0.703125 1.21875,0.703125 1.1875,0 2.21875,-0.984375 2.21875,-2.265625 0,-1.265625 -0.953125,-2.25 -2.078125,-2.25 -0.78125,0 -1.203125,0.4375 -1.390625,0.65625 z M 1.75,-1.140625 v -2.21875 C 2.03125,-3.875 2.515625,-4.15625 3.03125,-4.15625 c 0.734375,0 1.328125,0.875 1.328125,2 0,1.203125 -0.6875,2.046875 -1.421875,2.046875 -0.40625,0 -0.78125,-0.203125 -1.046875,-0.609375 C 1.75,-0.921875 1.75,-0.9375 1.75,-1.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4031" - transform="translate(154.24722,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4033" - transform="translate(159.22852,134.765)" - d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4049" - style="fill:#000000;fill-opacity:1"> - <path - id="path4037" - transform="translate(166.47532,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4039" - transform="translate(170.90269,134.765)" - d="M 1.09375,-3.421875 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.359375,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.25,0 0.765625,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 V -2.59375 C 1.78125,-3.625 2.5,-4.1875 3.125,-4.1875 c 0.640625,0 0.75,0.53125 0.75,1.109375 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.34375,-0.015625 0.859375,-0.03125 1.125,-0.03125 0.25,0 0.78125,0.015625 1.109375,0.03125 v -0.3125 c -0.515625,0 -0.765625,0 -0.765625,-0.296875 v -1.90625 c 0,-0.859375 0,-1.15625 -0.3125,-1.515625 -0.140625,-0.171875 -0.46875,-0.375 -1.046875,-0.375 C 2.46875,-4.40625 2,-3.984375 1.71875,-3.359375 V -4.40625 L 0.3125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4041" - transform="translate(176.43792,134.765)" - d="m 1.171875,-2.171875 c 0,-1.625 0.8125,-2.046875 1.34375,-2.046875 0.09375,0 0.71875,0.015625 1.0625,0.375 -0.40625,0.03125 -0.46875,0.328125 -0.46875,0.453125 0,0.265625 0.1875,0.453125 0.453125,0.453125 0.265625,0 0.46875,-0.15625 0.46875,-0.46875 0,-0.671875 -0.765625,-1.0625 -1.53125,-1.0625 -1.25,0 -2.15625,1.078125 -2.15625,2.3125 0,1.28125 0.984375,2.265625 2.140625,2.265625 1.328125,0 1.65625,-1.203125 1.65625,-1.296875 0,-0.09375 -0.109375,-0.09375 -0.140625,-0.09375 -0.078125,0 -0.109375,0.03125 -0.125,0.09375 -0.28125,0.921875 -0.9375,1.046875 -1.296875,1.046875 -0.53125,0 -1.40625,-0.421875 -1.40625,-2.03125 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4043" - transform="translate(180.86529,134.765)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4045" - transform="translate(185.84659,134.765)" - d="M 1.671875,-3.3125 V -4.40625 L 0.28125,-4.296875 v 0.3125 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 c 0.390625,-0.015625 0.859375,-0.03125 1.140625,-0.03125 0.390625,0 0.859375,0 1.265625,0.03125 V -0.3125 H 2.46875 c -0.734375,0 -0.75,-0.109375 -0.75,-0.46875 V -2.3125 c 0,-0.984375 0.421875,-1.875 1.171875,-1.875 0.0625,0 0.09375,0 0.109375,0.015625 -0.03125,0 -0.234375,0.125 -0.234375,0.390625 0,0.265625 0.21875,0.421875 0.4375,0.421875 0.171875,0 0.421875,-0.125 0.421875,-0.4375 0,-0.3125 -0.3125,-0.609375 -0.734375,-0.609375 -0.734375,0 -1.09375,0.671875 -1.21875,1.09375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4047" - transform="translate(189.74895,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4061" - style="fill:#000000;fill-opacity:1"> - <path - id="path4051" - transform="translate(197.50383,134.765)" - d="m 3.3125,-0.75 c 0.046875,0.390625 0.3125,0.8125 0.78125,0.8125 0.21875,0 0.828125,-0.140625 0.828125,-0.953125 v -0.5625 h -0.25 v 0.5625 c 0,0.578125 -0.25,0.640625 -0.359375,0.640625 -0.328125,0 -0.375,-0.453125 -0.375,-0.5 v -1.984375 c 0,-0.421875 0,-0.8125 -0.359375,-1.1875 C 3.1875,-4.3125 2.6875,-4.46875 2.21875,-4.46875 c -0.828125,0 -1.515625,0.46875 -1.515625,1.125 0,0.296875 0.203125,0.46875 0.46875,0.46875 0.28125,0 0.453125,-0.203125 0.453125,-0.453125 0,-0.125 -0.046875,-0.453125 -0.515625,-0.453125 C 1.390625,-4.140625 1.875,-4.25 2.1875,-4.25 c 0.5,0 1.0625,0.390625 1.0625,1.28125 v 0.359375 c -0.515625,0.03125 -1.203125,0.0625 -1.828125,0.359375 -0.75,0.34375 -1,0.859375 -1,1.296875 0,0.8125 0.96875,1.0625 1.59375,1.0625 0.65625,0 1.109375,-0.40625 1.296875,-0.859375 z M 3.25,-2.390625 v 1 c 0,0.9375 -0.71875,1.28125 -1.171875,1.28125 -0.484375,0 -0.890625,-0.34375 -0.890625,-0.84375 0,-0.546875 0.421875,-1.375 2.0625,-1.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4053" - transform="translate(202.48513,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4055" - transform="translate(205.25274,134.765)" - d="M 1.765625,-6.921875 0.328125,-6.8125 V -6.5 c 0.703125,0 0.78125,0.0625 0.78125,0.5625 V -0.75 c 0,0.4375 -0.109375,0.4375 -0.78125,0.4375 V 0 C 0.65625,-0.015625 1.1875,-0.03125 1.4375,-0.03125 c 0.25,0 0.734375,0.015625 1.109375,0.03125 v -0.3125 c -0.671875,0 -0.78125,0 -0.78125,-0.4375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4057" - transform="translate(208.02035,134.765)" - d="M 4.6875,-2.140625 C 4.6875,-3.40625 3.703125,-4.46875 2.5,-4.46875 c -1.25,0 -2.21875,1.09375 -2.21875,2.328125 0,1.296875 1.03125,2.25 2.203125,2.25 1.203125,0 2.203125,-0.984375 2.203125,-2.25 z m -2.1875,2 c -0.4375,0 -0.875,-0.203125 -1.140625,-0.671875 -0.25,-0.4375 -0.25,-1.046875 -0.25,-1.40625 0,-0.390625 0,-0.921875 0.234375,-1.359375 C 1.609375,-4.03125 2.078125,-4.25 2.484375,-4.25 c 0.4375,0 0.859375,0.21875 1.125,0.65625 0.265625,0.421875 0.265625,1 0.265625,1.375 0,0.359375 0,0.90625 -0.21875,1.34375 C 3.421875,-0.421875 2.984375,-0.140625 2.5,-0.140625 Z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4059" - transform="translate(213.00165,134.765)" - d="M 3.890625,-0.78125 V 0.109375 L 5.328125,0 V -0.3125 C 4.640625,-0.3125 4.5625,-0.375 4.5625,-0.875 v -3.53125 l -1.46875,0.109375 v 0.3125 c 0.6875,0 0.78125,0.0625 0.78125,0.5625 v 1.765625 c 0,0.875 -0.484375,1.546875 -1.21875,1.546875 -0.828125,0 -0.875,-0.46875 -0.875,-0.984375 v -3.3125 L 0.3125,-4.296875 v 0.3125 c 0.78125,0 0.78125,0.03125 0.78125,0.90625 v 1.5 c 0,0.78125 0,1.6875 1.515625,1.6875 0.5625,0 1,-0.28125 1.28125,-0.890625 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4065" - style="fill:#000000;fill-opacity:1"> - <path - id="path4063" - transform="translate(218.25792,134.765)" - d="M 3.734375,-6.296875 C 3.828125,-6.375 3.90625,-6.484375 3.90625,-6.59375 c 0,-0.1875 -0.171875,-0.359375 -0.359375,-0.359375 -0.140625,0 -0.25,0.109375 -0.296875,0.171875 l -1.203125,1.515625 0.171875,0.1875 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - <g - id="g4071" - style="fill:#000000;fill-opacity:1"> - <path - id="path4067" - transform="translate(218.53687,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - <path - id="path4069" - transform="translate(222.96425,134.765)" - d="M 1.109375,-2.515625 C 1.171875,-4 2.015625,-4.25 2.359375,-4.25 c 1.015625,0 1.125,1.34375 1.125,1.734375 z m 0,0.21875 h 2.78125 c 0.21875,0 0.25,0 0.25,-0.21875 0,-0.984375 -0.546875,-1.953125 -1.78125,-1.953125 -1.15625,0 -2.078125,1.03125 -2.078125,2.28125 0,1.328125 1.046875,2.296875 2.1875,2.296875 C 3.6875,0.109375 4.140625,-1 4.140625,-1.1875 4.140625,-1.28125 4.0625,-1.3125 4,-1.3125 c -0.078125,0 -0.109375,0.0625 -0.125,0.140625 -0.34375,1.03125 -1.25,1.03125 -1.34375,1.03125 -0.5,0 -0.890625,-0.296875 -1.125,-0.671875 -0.296875,-0.46875 -0.296875,-1.125 -0.296875,-1.484375 z m 0,0" - style="stroke:none;stroke-width:0" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:8.4167px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.210418" - x="-3.3584552" - y="132.0246" - id="text5410"><tspan - sodipodi:role="line" - id="tspan5408" - style="stroke-width:0.210418" - x="-3.3584552" - y="132.0246">fraction_t</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:8.4167px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.210418" - x="1.8167764" - y="153.79558" - id="text5410-7"><tspan - sodipodi:role="line" - id="tspan5408-5" - style="stroke-width:0.210418" - x="1.8167764" - y="153.79558">num</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:8.4167px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.210418" - x="59.858959" - y="154.63602" - id="text5410-35"><tspan - sodipodi:role="line" - id="tspan5408-62" - style="stroke-width:0.210418" - x="59.858959" - y="154.63602">denom</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-weight:normal;font-size:8.4167px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.210418" - x="0.63656694" - y="189.66251" - id="text5410-3"><tspan - sodipodi:role="line" - id="tspan5408-6" - style="stroke-width:0.210418" - x="0.63656694" - y="189.66251">fraction_t *frac;</tspan></text> - </g> -</svg> diff --git a/slides/figs/pointer_struct_ok.svg b/slides/figs/pointer_struct_ok.svg deleted file mode 100644 index ddb5e3f688858f37023be27490dc0408108b0909..0000000000000000000000000000000000000000 --- a/slides/figs/pointer_struct_ok.svg +++ /dev/null @@ -1,423 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="245.24887mm" - height="86.080841mm" - viewBox="0 0 245.24887 86.080843" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="pointer_struct_ok.svg"> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="483.38263" - inkscape:cy="105.54084" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1884" - inkscape:window-height="1052" - inkscape:window-x="36" - inkscape:window-y="0" - inkscape:window-maximized="1" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0"> - <inkscape:grid - originy="-104.07588" - originx="12.489411" - type="xygrid" - id="grid819" /> - </sodipodi:namedview> - <defs - id="defs2"> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker3314" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3312" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker3284" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3028" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lstart" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lstart"> - <path - inkscape:connector-curvature="0" - transform="matrix(1.1,0,0,1.1,1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3025" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-7" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-5" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-9" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-7-2" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-5-8" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="Arrow2Lend-1" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path8951-3" - inkscape:connector-curvature="0" /> - </marker> - <marker - inkscape:isstock="true" - style="overflow:visible" - id="marker3284-4" - refX="0" - refY="0" - orient="auto" - inkscape:stockid="Arrow2Lend"> - <path - inkscape:connector-curvature="0" - transform="matrix(-1.1,0,0,-1.1,-1.1,0)" - d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" - id="path3028-7" /> - </marker> - </defs> - <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(12.489412,-106.8433)" - id="layer1" - inkscape:groupmode="layer" - inkscape:label="Layer 1"> - <g - style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="g846-7-2" - transform="matrix(0.48784069,0,0,1,-44.968279,-20.032731)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-2" - width="29.104166" - height="9.260417" - x="99.218758" - y="156.77083" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-8" - width="29.104166" - height="9.260417" - x="128.32292" - y="156.77083" /> - </g> - <g - style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="g846-5-1" - transform="matrix(0.48784069,0,0,1,-16.571887,-20.032726)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-9" - width="29.104166" - height="9.260417" - x="99.218758" - y="156.77083" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-4" - width="29.104166" - height="9.260417" - x="128.32292" - y="156.77083" /> - </g> - <g - id="g1489" - transform="translate(-82.051746)"> - <g - transform="matrix(0.4878407,0,0,1,93.949527,-20.032732)" - id="g846-7-2-6" - style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2-7" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8-5" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <g - transform="matrix(0.4878407,0,0,1,122.34592,-20.032727)" - id="g846-5-1-9" - style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-6-9-1" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-2-4-2" - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - </g> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path2993" - d="M -1.3502974,178.91256 C -10.434806,165.66351 -12.664615,164.59117 0.16160744,145.99852" - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3284)" /> - <path - sodipodi:nodetypes="cc" - inkscape:connector-curvature="0" - id="path2993-6" - d="M -1.6432048,189.1699 C -12.064062,177.52447 -18.226203,141.46875 -3.5290926,116.46165" - style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker3284-4)" /> - <g - id="g1518" - transform="translate(3.2072343)"> - <g - transform="matrix(0.48784068,0,0,1,-23.535649,-49.569597)" - id="g846-7-2-5" - style="fill:none;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1"> - <rect - y="156.77083" - x="99.218758" - height="9.260417" - width="29.104166" - id="rect821-3-5-2-6" - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="156.77083" - x="128.32292" - height="9.260417" - width="29.104166" - id="rect821-6-3-8-9" - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.7158648, 1.43172961;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-7-37" - width="14.198196" - height="9.260417" - x="-3.5290926" - y="107.20123" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:0.50000001, 1.00000003;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-3-4" - width="14.198196" - height="9.260417" - x="10.669104" - y="107.20123" /> - <g - transform="translate(-85.25898)" - id="g1481"> - <g - style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="g846-7-2-6-4" - transform="matrix(0.48784071,0,0,1,90.258825,-49.569599)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-5-2-7-3" - width="29.104166" - height="9.260417" - x="99.218758" - y="156.77083" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-3-8-5-0" - width="29.104166" - height="9.260417" - x="128.32292" - y="156.77083" /> - </g> - <g - style="fill:none;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="g846-5-1-9-8" - transform="matrix(0.48784071,0,0,1,118.65522,-49.569594)"> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-3-6-9-1-4" - width="29.104166" - height="9.260417" - x="99.218758" - y="156.77083" /> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#ff0007;stroke-width:0.71586478;stroke-miterlimit:4;stroke-dasharray:0.71586478, 1.43172956;stroke-dashoffset:0;stroke-opacity:1" - id="rect821-6-2-4-2-3" - width="29.104166" - height="9.260417" - x="128.32292" - y="156.77083" /> - </g> - </g> - </g> - <text - xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.61108494px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;stroke-width:0.24027713" - x="2.3449361" - y="132.47079" - id="text1455"><tspan - sodipodi:role="line" - id="tspan1453" - x="2.3449361" - y="132.47079" - style="stroke-width:0.24027713">fraction_t</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;stroke-width:0.26458332" - x="2.2523637" - y="155.76122" - id="text1459"><tspan - sodipodi:role="line" - id="tspan1457" - x="2.2523637" - y="155.76122" - style="stroke-width:0.26458332">num</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:10.58333302px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;stroke-width:0.26458332" - x="59.490494" - y="155.76122" - id="text1463"><tspan - sodipodi:role="line" - id="tspan1461" - x="59.490494" - y="155.76122" - style="stroke-width:0.26458332">denom</tspan></text> - <text - xml:space="preserve" - style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8.47521019px;line-height:1.25;font-family:monospace;-inkscape-font-specification:monospace;letter-spacing:0px;word-spacing:0px;stroke-width:0.21188024" - x="0.21260698" - y="181.14244" - id="text1467"><tspan - sodipodi:role="line" - id="tspan1465" - x="0.21260698" - y="181.14244" - style="stroke-width:0.21188024">fraction_t *frac = malloc(sizeof(fraction_t));</tspan><tspan - sodipodi:role="line" - x="0.21260698" - y="191.73645" - style="stroke-width:0.21188024" - id="tspan1471">frac = NULL; // addresse mémoire inaccessible</tspan></text> - </g> -</svg> diff --git a/slides/figs/terminal_open.png b/slides/figs/terminal_open.png deleted file mode 100644 index 16bd9c85f6380b34bb9c46c2286831ae9bb66ab2..0000000000000000000000000000000000000000 Binary files a/slides/figs/terminal_open.png and /dev/null differ diff --git a/slides/fonctions_dordre_superieur.md b/slides/fonctions_dordre_superieur.md deleted file mode 100644 index 73918a7cf5aa64190fa5793aa72500f5bfb62587..0000000000000000000000000000000000000000 --- a/slides/fonctions_dordre_superieur.md +++ /dev/null @@ -1,216 +0,0 @@ ---- -title: "Fonctions d'ordre supérieur" -date: "2023-03-21" ---- - -# Tribute - -Rendons à Cesar: - -* Ces slides ont été écrits par Michaël El Kharroubi -* J'arrive pas à changer l'auteur simplement sur un slide donc.... -* Merci à lui pour ses efforts et qu'il soit crédité comme il se doit! - -# Présentation du problème - -* Imaginons que nous ayons la structure d'un vecteur en 3 dimensions suivante - -```C -typedef struct _vec3 { - double x; - double y; - double z; -} vec3; -``` - -* On souhaite implémenter 3 opérations différentes - * La somme - * La soustraction - * Le produit de Hadamard (produit composantes à composantes) - -# Présentation du problème (suite) - -On a donc les fonctions suivantes - -* Addition - -```c -vec3 add(vec3 lhs, vec3 rhs){ - vec3 res; - res.x = lhs.x + rhs.x; - res.y = lhs.y + rhs.y; - res.z = lhs.z + rhs.z; - return res; -} -``` -# Présentation du problème (suite) - - -* Soustraction -```c -vec3 sub(vec3 lhs, vec3 rhs){ - vec3 res; - res.x = lhs.x - rhs.x; - res.y = lhs.y - rhs.y; - res.z = lhs.z - rhs.z; - return res; -} -``` - -# Présentation du problème (suite) - -* Produit de Hadamard - -```c -vec3 mul(vec3 lhs, vec3 rhs){ - vec3 res; - res.x = lhs.x * rhs.x; - res.y = lhs.y * rhs.y; - res.z = lhs.z * rhs.z; - return res; -} -``` - -* Quel est le problème avec ces trois fonctions? - -# Présentation du problème (suite) - -* Le problème avec ces fonctions c'est la **répétition**. -* La seule chose qui change, c'est l'opérateur (+,-,*). -* Problèmes possibles - * Tentation de copier-coller du code (donc risque d'erreurs) - * Faible résilience au changement (imaginons que je veuille des vecteurs 2d, 4d, nd) - -# Présentation du problème (solution) - -* Vecteur de taille dynamique - -```c -typedef struct _vecn { - int size; - double *xs; -} vecn; -``` - -* Règle le problème de résilience du code, mais ne règle pas le problème de répétition... - -# Fonction d'ordre supérieur (solution au problème) - -* Pour notre problème, nous aimerions donc découpler l'opération (opération entre deux termes : +,-,*) de l'itération sur les composantes. - -* Ce qui nous donne conceptuellement en pseudo c - -```c -// Attention pseudo c, ne compile pas !!!!! -vec3 apply_operator(operator op, vec3 lhs, vec3 rhs){ - vec3 res; - res.x = lhs.x op rhs.x; - res.y = lhs.y op rhs.y; - res.z = lhs.z op rhs.z; - return res; -} -``` - -# Fonction d'ordre supérieur (solution au problème) - -* Avec notre fonction conceptuelle `apply_operator`, on pourrait faire (toujours en pseudo c) - -```c -// Attention pseudo c, ne compile pas !!!!! -vec3 add(vec3 lhs, vec3 rhs){ - return apply_operator(+, lhs, rhs); -} -vec3 sub(vec3 lhs, vec3 rhs){ - return apply_operator(-, lhs, rhs); -} -vec3 mul(vec3 lhs, vec3 rhs){ - return apply_operator(*, lhs, rhs); -} -``` - -* En fait, on vient de créer ce qu'on appelle une fonction d'ordre supérieur. - -# Fonction d'ordre supérieur (définition) - -* Une fonction d'ordre supérieur est une fonction qui prend en paramètre et/ou retourne une(des) autre(s) fonction(s). - -* Si on essayait de définir `operator`, c'est en fait une fonction qui prend deux paramètres (un terme de gauche et un terme de droite). On s'en aperçoit clairement avec la notation préfix (polonaise). - * `L + R` -> `+ L R` - * `L - R` -> `- L R` - * `L * R` -> `* L R` - -* Comment l'implémenter concrètement en C? - -# Implémentation - -* Si on reprend la signature de notre fonction d'exemple, on a - -```c -vec3 apply_operator(operator op, vec3 lhs, vec3 rhs); -``` - -* Nous avons déterminé que les `operator` étaient des fonctions qui prennaient deux paramètres. - -* Pour passer une fonction en paramètre en C, nous devons la passer par référence, c'est à dire à l'aide d'un pointeur de fonction. - -# Rappel pointeur de fonctions - -* Un pointeur de fonction se définit ainsi - -```c -typedef - <type retour> (*<nom ptr fonc>)(<type params(s)>); -``` - -* Dans notre cas, nous avons donc un type de fonction nommé `operator`, qui prend en entrée deux `double`{.c} et qui retourne un `double`{.c}. Ce qui nous donne - -```c -typedef double (*operator)(double, double); -``` - -# Implémentation (suite) - -* En reprenant notre fonction `apply_operator`, on a donc - -```c -vec3 apply_operator(operator op, vec3 lhs, vec3 rhs){ - vec3 res; - res.x = op(lhs.x, rhs.x); - res.y = op(lhs.y, rhs.y); - res.z = op(lhs.z, rhs.z); - return res; -} -``` - -* NB : On voit que pour appeler notre fonction passée en paramètre, nous avons pu le faire comme avec n'importe quelle fonction. - -# Résultat - -```c -typedef double (*operator)(double, double); - -vec3 apply_operator(operator op, vec3 lhs, vec3 rhs){ - vec3 res; - res.x = op(lhs.x, rhs.x); - res.y = op(lhs.y, rhs.y); - res.z = op(lhs.z, rhs.z); - return res; -} - -double add_dbl(double lhs, double rhs){return lhs + rhs;} - -vec3 add(vec3 lhs, vec3 rhs){ - return apply_operator(add_dbl, lhs, rhs); -} -``` - -# Fonctions d'ordre supérieur appliquées aux tableaux - -* Comment appliquer des opérations sur un vecteur de taille n? - * Map (application d'une fonction) - * `add_one`, `square` - * Filter (discrimination selon un prédicat) - * `is_even`, `is_lower_than_five` - * Reduce (réduction d'un vecteur à un seul élément) - * `sum`, `multiply` - diff --git a/slides/git_tutorial.md b/slides/git_tutorial.md deleted file mode 100644 index a30df69b2bb1a29b2606682ec592db4eb696bf09..0000000000000000000000000000000000000000 --- a/slides/git_tutorial.md +++ /dev/null @@ -1,492 +0,0 @@ ---- -title: "Introduction à Git" -date: "2022-11-08" ---- - - -# Qu'est-ce que Git? - -- Git est un outil de gestion de versions (dév. par L. Torvalds). - * Cela évite d'avoir à gérer les fichiers d'un projet comme: - - fichier.c - - fichier_10_3_2020.c - - fichier_10_3_2020_16h.c - - fichier_10_3_2020_16h_Malaspinas.c - - fichier_10_3_2020_16h_Albuquerque.c - * L'historique est accessible à tout moment. - * Difficile d'écraser le mauvais fichier lors d'une synchronisation. -- Possibilité de découpler le développement dans un projet. - * Fusionne les modifications non-conflictuelles automatiquement. - * Un projet peut avoir différentes *branches* de développement (on peut développer une nouvelle version et faire des corrections de bug en parallèle). -- **Permet le travail de plusieurs développeurs sur le même projet!** - -# Principe de fonctionnement de Git (1/3) - -Git est un outil décentralisé... - -. . . - -Mais, typiquement un projet git possède un serveur "officiel" (centralisé): - -- Un·e développeur·euse peut faire une copie (clone) de tout le projet (sur son ordinateur). -- Modifier localement le projet et publier (push) ses propres modifications (sur son ordinateur). -- Demander au gestionnaire du projet de fusionner (merge) ses modifications avec le serveur "officiel" (pull/merge request): - - L'administrateur récupère le projet depuis le serveur du développeur. - - Fusionne le projet officiel avec celui modifié (merge). - - Publie les modifications sur le serveur officiel (push). - -# Principe de fonctionnement de Git (2/3) - -{width="80%"} - -# Principe de fonctionnement de Git (3/3) - -{width="80%"} - -# Exemple de fonctionnement - -## Création du dépôt et clone - -1. Création d'un dépôt *tutorial* git sur [https://gitedu.hesge.ch](https://gitedu.hesge.ch). -2. Clone du dépôt. - -```bash -$ git clone ssh://git@ssh.hesge.ch:10572/orestis.malaspin/tutorial.git -Cloning into 'tutorial'... -warning: You appear to have cloned an empty repository. -$ cd tutorial -[tutorial]$ -``` - -3. Et voilà vous êtes dans votre dépôt git. - -# Ajout de fichiers à l'historique (1/4) - -## Commandes: `git add`, `git status`, `git commit`, `git push` - -1. Création du fichier `premierfichier.c`. -2. Ajout du `premierfichier.c` aux fichiers suivis par git. -3. *Commit* du fichier ajouté à l'historique des modifications. -4. *Push* de l'état de l'historique sur le serveur. -```bash -[tutorial]$ echo Hello World > premierfichier.c -[tutorial]$ git status -On branch master - -No commits yet - -Untracked files: - (use "git add <file>..." to include in what will be committed) - - premierfichier.c - -nothing added to commit but untracked files present (use "git add" to track) - -``` - -# Ajout de fichiers à l'historique (2/4) - -## Commandes: `git add`, `git status`, `git commit`, `git push` - -```bash -[tutorial]$ git add premierfichier.c -[tutorial]$ git status -On branch master - -No commits yet - -Changes to be committed: - (use "git rm --cached <file>..." to unstage) - - new file: premierfichier.c - -[tutorial]$ git commit -m "mon premier commit" -[master (root-commit) a4f2052] mon premier commit - 1 file changed, 1 insertion(+) - create mode 100644 premierfichier.c -``` - -# Ajout de fichiers à l'historique (3/4) - -## Commandes: `git add`, `git status`, `git commit`, `git push` - -```bash -[tutorial]$ git status -On branch master -Your branch is based on 'origin/master', but the upstream is gone. - (use "git branch --unset-upstream" to fixup) - -nothing to commit, working tree clean -[tutorial]$ git push -Counting objects: 3, done. -Writing objects: 100% (3/3), 238 bytes | 238.00 KiB/s, done. -Total 3 (delta 0), reused 0 (delta 0) -To ssh://ssh.hesge.ch:10572/orestis.malaspin/tutorial.git - * [new branch] master -> master -``` - -# Ajout de fichiers à l'historique (4/4) - -## Recommandations - - -* Faire des *commits* réguliers (ne pas attendre d'avoir un projet qui fonctionne compèlètement). -* Mettre des messages de *commit* qui font du sens. -* Éviter d'ajouter de fichiers binaires (prennent de la place). - * Les fichiers binaires sont générables par l'utilisateur du projet. -* Éviter de faire `git add .` -* Utiliser les fichiers `.gitignore` pour se protéger. - - -# Modification de fichiers dans l'historique (1/3) - -## Commandes: `git diff`, `git log` - -1. Modification du fichier `premierfichier.c`. -2. Ajout/commit/push des modifictations. - -```bash -[tutorial]$ echo Wild World > premierfichier.c -[tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add <file>..." to update what will be committed) - (use "git checkout -- <file>..." to discard changes in working directory) - - modified: premierfichier.c - -no changes added to commit (use "git add" and/or "git commit -a") -``` - -# Modification de fichiers dans l'historique (2/3) - -## Commandes: `git diff`, `git log` - -```bash -[tutorial]$ git diff -diff --git a/premierfichier.c b/premierfichier.c -index 557db03..9622e40 100644 ---- a/premierfichier.c -+++ b/premierfichier.c -@@ -1 +1 @@ --Hello World -+Wild World -[tutorial]$ git commit -am "nouvelles modifications" -[master f9ab3ec] nouvelles modifications - 1 file changed, 1 insertion(+), 1 deletion(-) -[tutorial]$ git push -Counting objects: 3, done. -Writing objects: 100% (3/3), 274 bytes | 274.00 KiB/s, done. -Total 3 (delta 0), reused 0 (delta 0) -To ssh://ssh.hesge.ch:10572/orestis.malaspin/tutorial.git - a4f2052..f9ab3ec master -> master -``` - -# Modification de fichiers dans l'historique (3/3) - -## Commandes: `git diff`, `git log` - -```bash -[tutorial]$ git log -commit f9ab3ec4a00c46a12d7a45f133295acc5fb5cd20 (HEAD -> master, origin/master) -Author: Orestis Malaspinas <orestis.malaspinas@hesge.ch> -Date: Sun Mar 4 22:48:21 2018 +0100 - - nouvelles modifications - -commit a4f2052147a752a8c12641f4f3352c5aa1802559 -Author: Orestis Malaspinas <orestis.malaspinas@hesge.ch> -Date: Sun Mar 4 22:25:24 2018 +0100 - - mon premier commit -``` - -# Revenir en arrière dans l'historique (1/6) - -## Commandes: `git checkout`, `git reset` - -1. Faire une modification dans un fichier par erreur. -2. Faire un `git add` par erreur. -3. Faire un `git commit` par erreur. - -```bash -[tutorial]$ echo Oh no! An awful modification! > premierfichier.c -[tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add <file>..." to update what will be committed) - (use "git checkout -- <file>..." to discard changes in working directory) - - modified: premierfichier.c - -no changes added to commit (use "git add" and/or "git commit -a") -``` - -# Revenir en arrière dans l'historique (2/6) - -## Commandes: `git checkout`, `git reset` - -### Une modification dans un fichier par erreur - -```bash -[tutorial]$ git checkout premierfichier.c -[tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -nothing to commit, working tree clean - -``` - -# Revenir en arrière dans l'historique (3/6) - -## Commandes: `git checkout`, `git reset` - -### Faire un `git add` par erreur (1/2) - -```bash -[tutorial]$ echo Oh no! An awful modification! > premierfichier.c -[tutorial]$ git add premierfichier.c -[tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD <file>..." to unstage) - - modified: premierfichier.c -[tutorial]$ git reset HEAD -Unstaged changes after reset: -M premierfichier.c -``` - -# Revenir en arrière dans l'historique (4/6) - -## Commandes: `git checkout`, `git reset` - -### Faire un `git add` par erreur (2/2) - -```bash -[tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add <file>..." to update what will be committed) - (use "git checkout -- <file>..." to discard changes in working directory) - - modified: premierfichier.c - -no changes added to commit (use "git add" and/or "git commit -a") -[tutorial]$ git diff -diff --git a/premierfichier.c b/premierfichier.c -index 9622e40..cfd5469 100644 ---- a/premierfichier.c -+++ b/premierfichier.c -@@ -1 +1 @@ --Wild World -+Oh no! An awful modification! -``` - -# Revenir en arrière dans l'historique (5/6) - -## Commandes: `git checkout`, `git reset` - -### Faire un `git commit` par erreur (1/2) - -```bash -[tutorial]$ git commit -am "troisieme commit" -[master 0563c02] troisieme commit - 1 file changed, 1 insertion(+), 1 deletion(-) -[tutorial]$ git push -[tutorial]$ git reset f9ab3ec4a00c46a12d7a45f133295acc5fb5cd20 -[tutorial]$ git status -On branch master -Your branch is behind 'origin/master' by 1 commit, and can be fast-forwarded. - (use "git pull" to update your local branch) - -Changes not staged for commit: - modified: premierfichier.c - -no changes added to commit -[tutorial]$ git checkout premierfichier.c -``` - -# Revenir en arrière dans l'historique (6/6) - -## Commandes: `git checkout`, `git reset` - -### Faire un `git commit` par erreur (2/2) - -```bash -[tutorial]$ echo Wonderful World > premierfichier.c -[tutorial]$ git commit -am "la bonne troisieme modification" -[master 1b42970] la bonne troisieme modification - 1 file changed, 1 insertion(+), 1 deletion(-) -[tutorial]$ git status -On branch master -Your branch and 'origin/master' have diverged, -and have 1 and 1 different commits each, respectively. - (use "git pull" to merge the remote branch into yours) - -nothing to commit, working tree clean -[tutorial]$ git pull -Auto-merging premierfichier.c -CONFLICT (content): Merge conflict in premierfichier.c -Automatic merge failed; fix conflicts and then commit the result. -``` - -### Il ne reste qu'à corriger le conflit et refaire un `git commit`, `git push` - -# Un `git push` par erreur - -* Un `git push` est très difficile à "effacer". -* Cela revient à *réécrire* l'historique de votre projet. - * Cela est *dangereux*, surtout quand on travail à plusieurs. -* Le plus simple est de revenir à une version antérieure et faire un nouveau - commit. -* Il existe des techniques *violentes* qu'on verra pas ici. - -# Retirer un fichier du contrôle de version (1/3) - -## Commande: `git rm` - -- Il n'est plus nécessaire de suivre un fichier. -- **Attention : le fichier ne disparaît pas de l'historique.** - -```bash -[orestis@perka tutorial]$ git rm premierfichier.c -rm 'premierfichier.c' -[orestis@perka tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes to be committed: - (use "git reset HEAD <file>..." to unstage) - - deleted: premierfichier.c -[orestis@perka tutorial]$ git commit -am "efface donc ce fichier" -[master 8f76d90] efface donc ce fichier - 1 file changed, 1 deletion(-) - delete mode 100644 premierfichier.c -``` - -# Retirer un fichier du contrôle de version (2/3) - -## Commande: `git rm` (1/2) - -```bash -[orestis@perka tutorial]$ ls -ltr -total 0 -[orestis@perka tutorial]$ git reset bbb151324289dc2f85468f5721ec1021692dd216 -Unstaged changes after reset: -D premierfichier.c -[orestis@perka tutorial]$ git status -On branch master -Your branch is up to date with 'origin/master'. - -Changes not staged for commit: - (use "git add/rm <file>..." to update what will be committed) - (use "git checkout -- <file>..." to discard changes in working directory) - - deleted: premierfichier.c - -no changes added to commit (use "git add" and/or "git commit -a") -``` - -# Retirer un fichier du contrôle de version (3/3) - -## Commande: `git rm` (2/2) - -On peut retrouver le fichier dans l'historique. - -```bash -[orestis@perka tutorial]$ ls -ltr -total 0 -[orestis@perka tutorial]$ git checkout premierfichier.c -[orestis@perka tutorial]$ ls -ltr -total 4 --rw-r--r-- 1 orestis orestis 17 5 mar 11:13 premierfichier.c -``` - -# Commandes et concept un peu plus avancés - -Il existe une **grande quantité** de fonctionnalités non discutées ici: - -1. `git branch` -2. `git merge` -3. `git tag` -4. `git rebase` - -**ET SURTOUT:** - -5. `git trois-lignes-de-commandes-incompréhensibles-que-seul stackoverflow-peut-vous-permettre-d'écrire` - -# Le fichier `.gitignore` - -## L'état des fichiers - -Git voit les fichiers dans trois états possibles: - -1. *tracked*, un fichier qui a été `add` (`staged`) ou `commit` (dans la terminologie git). -2. *untracked*, un fichier qui n'a pas été `add` ou `commit`. -3. *ignored*, un fichier qui est explicitement ignoré par git. - -## Certains fichiers ne doivent pas être `addables` - -* Ils doivent *explicitement* être ignorés. - -# Quels fichiers ignorer - -On ignore typiquement: - -* Les fichiers binaires: exécutables, images, ... -* Les produits de compilation: `*.o`, `*.pyc`, ... -* Les produits d'exécutions: logs, ... -* Les fichiers de configuration d'un IDE: .vscode, ... -* Les fichiers système. - -# Comment ignorer des fichiers? - -* Créer un fichier texte nommé `.gitignore`. -* L'ajouter au répo git et le "commit". -* Y ajouter les règles à suivre pour ignorer les fichiers. - -Exemple: [^2] - -```bash -biden # ignore le fichier biden -*.o # ignore tous les fichier `.o` -!trump.o # mais PAS trump.o -sanders # ignore le répertoire sanders -**/sanders # ignore tous les répertoires sanders -``` - -[^2]: Pour une liste plus exhaustive voir le site <https://bit.ly/2HTZJyQ> par exemple. - -# Des références - -Il existe énormément de très bons documents et tutoriels en ligne: - -- [https://git-scm.com/](https://git-scm.com/) -- [https://try.github.io/](https://try.github.io/) - -Des tas de repo en ligne: - -- [Githepia](https://githepia.hesge.ch) -- [Github](https://www.github.com) -- [Gitlab](https://www.gitlab.com) - -Et des GUI assez utiles: - -- [GitExtensions](https://gitextensions.github.io/) -- [GitKraken](https://www.gitkraken.com/) - -# Des questions? - -{width=70%} - diff --git a/slides/ligne_de_commande_c.md b/slides/ligne_de_commande_c.md deleted file mode 100644 index ecf29828f44f80be78df0e4b80adfafd60e73257..0000000000000000000000000000000000000000 --- a/slides/ligne_de_commande_c.md +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: "La ligne de commande" -date: "2022-11-29" ---- - -# La ligne de commande (1/4) - -* Ou comment passer des arguments à un programme en C. - -## Point d'entrée d'un programme - -- Le point d'entrée est la fonction `main()`{.C}. -- Elle peut être déclarée de 4 façon différentes: - 1. `void main()`{.C}. - 2. `int main()`{.C}. - 3. `void main(int argc, char **argv)`{.C}. - 4. `int main(int argc, char *argv[])`{.C}. - -- `argc`{.C} est le nombre d'arguments passés à la ligne de commande: **le premier est celui du programme lui-même**. -- `argv`{.C} est un tableau de chaînes de caractères passés sur la ligne de commande. - -# La ligne de commande (2/4) - -## Exemple d'utilisation - -Pour la fonction dans le programme `prog` - -```C -int main(int argc, char **argv) -``` - -Pour l'exécution suivante on a - -```bash -$ ./prog -b 50 file.txt -``` - -```C -argc == 4 -argv[0] == "prog" -argv[1] == "-b" -argv[2] == "50" -argv[3] == "file.txt" -``` - -# La ligne de commande (3/4) - -## Conversion des arguments - -- Les arguments sont toujours stockés comme des **chaînes de - caractères**. -- Peu pratique si on veut manipuler des valeurs numériques. -- Fonctions pour faire des conversions: - - ```C - int atoi(const char *nptr); // de la chaîne en entier - double atof(const char *nptr); // de la chaîne en nombre à virgule flottante - int snprintf(char *str, size_t size, - const char *format, ...); - // str: buffer, size: taille en octets max à copier, - // format: cf printf(), ret: nombre de char lus - ``` - -# La ligne de commande (4/4) - -## Exemple d'utilisation - -\footnotesize - -```C -#include <stdio.h> -#include <stdlib.h> -#include <libgen.h> -int main(int argc, char **argv) { - if (argc != 3) { - char *progname = basename(argv[0]); - fprintf(stderr, "usage: %s name age\n", progname); - return EXIT_FAILURE; - } - // argv[0] est le nom du programme on l'ignore - // le 1er argument est une chaîne de caractères (pas de conversion) - char *name = argv[1]; - int age = atoi(argv[2]); // le 2e argument est un entier (conversion) - printf("Hello %s, you are %d years old.\n", name, age); - return EXIT_SUCCESS; -} -``` - -. . . - -```bash -$ ./prog Paul 29 -Hello Paul, you are 29 years old. -``` diff --git a/slides/make_avance.md b/slides/make_avance.md deleted file mode 100644 index 3a23d6ddde6b3a21071dce59a0d1a2648d37fe39..0000000000000000000000000000000000000000 --- a/slides/make_avance.md +++ /dev/null @@ -1,324 +0,0 @@ ---- -title: "Makefile++" -date: "2023-02-24" ---- - -# make avancé - -## Rappel: utilité - -- Automatiser le processus de conversion d'un type de fichier à un autre, en *gérant les dépendances*. -- Effectue la conversion des fichiers qui ont changé uniquement. -- Utilisé pour la compilation: - - Création du code objet à partir des sources. - - Création de l'exécutable à partir du code objet. -- Tout "gros" projet utilise `make` (pas uniquement en `C`). -- Un `Makefile` bien écrit ne recompile que ce qui est **nécessaire**! -- Il existe d'autres outils pour le `C` et d'autres langages (`cmake`, `meson`, `maven`, `cargo`, ...). - -# Utilisation de `make` - -:::::::::::::: {.columns} -::: {.column width="60%"} - -## `Makefile` simple - -```bash -galaxy: galaxy.o stars.o vec.o - gcc -o galaxy galaxy.o stars.o \ - vec.o -galaxy.o: galaxy.c stars.h - gcc -c galaxy.c -stars.o: stars.c stars.h vec.h - gcc -c galaxy.c -vec.o: vec.c vec.h - gcc -c vec.c -clean: - rm -f *.o galaxy -``` - -::: -::: {.column width="40%"} - -## Terminal - -```bash -$ make -gcc -c galaxy.c -gcc -c stars.c -gcc -c vec.c -gcc -o galaxy galaxy.o - stars.o vec.o -$ make clean -rm -f *.o galaxy -``` -::: -:::::::::::::: - -**Dessinez le diagramme de dépendances de ce `Makefile`**. - -# Diagramme de dépendances - -~~~{.mermaid format=png} -graph TD; - galaxy.o --> galaxy - stars.o --> galaxy - vec.o --> galaxy - galaxy.c --> galaxy.o - stars.c --> stars.o - stars.h --> stars.o - stars.h --> galaxy.o - vec.h --> stars.o - vec.h --> vec.o - vec.c --> vec.o -~~~ - - -# Variables - -\footnotesize - -## Variables utilisateur - -- Déclaration - - ```bash - id = valeur - id = valeur1 valeur2 valeur3 - ``` -- Utilisation - - ```bash - $(id) - ``` -- Déclaration à la ligne de commande - - ```bash - make CFLAGS="-O3 -Wall" - ``` - -## Variables internes - -- `$@` : la cible -- `$^` : la liste des dépendances -- `$<` : la première dépendance -- `$*` : le nom de la cible sans extension - - -# `Makefile` plus complexe (1/3) - -```makefile -# Un Makefile typique - -# Le compilateur -CC = gcc - -# La variable CFLAGS contient les flags de compilation: -# -g compile avec les infos de debug -# -Wall Plein de warning -# -Wextra Encore plus de warnings -# -pedantic Warning lvl archimage -# -O0 Option d'optimisation (0,1,2,3) -# -std=c11 Utilisation du standard c11 -# -fsanitize=address Utilisation des sanitizers -CFLAGS = -g -Wall -Wextra -pedantic -O0 -std=c11 -fsanitize=address -``` - -# `Makefile` plus complexe (2/3) - -```makefile -# La variable LDFLAGS contient les flags pour l'éditeur -# de liens: -# -lm dit d'éditer les liens avec la lib math -# -lSDL2 dit d'éditer les liens avec la lib SDL2 -LDFLAGS = -lm -lSDL2 - -# Définition des sources -SOURCES = galaxy.c stars.c vec.c -# OBJECTS contient SOURCES avec .c qui devient .o -OBJECTS = $(SOURCES:.c=.o) -# galaxy sera l'exécutable (galaxy.c contient le main) -TARGET = galaxy -# Jusqu'ici on a aucune cible. -``` - -# `Makefile` plus complexe (3/3) - -```makefile -# TARGET est la première cible et sera donc exécuté à -# l'invocation de `make`. Elle dépend de OBJECTS -$(TARGET) : $(OBJECTS) - $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -# $@ : la cible, $ˆ : la liste des dépendances - -# PHONY signifie qu'on ne crée rien avec les cibles -# mentionnées. Ici clean est la cible utilisée pour -# enlever tous les fichier .o et l'exécutable -# exécute toujours clean, même si un ficher `clean` existe - -.PHONY: clean - -clean: # aucune dépendance - rm -f $(TARGET) $(OBJECTS) -``` - -# Gestion implicite (1/2) - -## Question - -Pourquoi n'a-t-on pas besoin de générer les `OBJECTS`? - -## Réponse - -`make` possède une série de règles implicites (voir [ce lien](https://ftp.gnu.org/old-gnu/Manuals/make-3.79.1/html_chapter/make_10.html#SEC95) pour une liste). - -## Fonctionnement - -Si `make` rencontre une dépendance sans règle, il va voir dans sa liste de règles implicites pour la générer. - -```makefile -galaxy: galaxy.o stars.o vec.o - gcc -o galaxy galaxy.o stars.o vec.o $(CFLAGS) $(LDFLAGS) -# implicitement pour galaxy.c, stars.c et vec.c - $(CC) -c $< $(CFLAGS) -o $@ -``` - -# Gestion implicite (2/2) - -## Question - -Et pour les dépendances des cibles implicites ça se passe comment? - -## Réponse - -On peut définir individuellement les dites dépendances! - -## Fonctionnement - -Quand `make` rencontre une dépendance sans règle, il va voir dans sa liste de règles implicites pour la générer. - -```makefile -# pas besoin des .c qui sont implicites -galaxy.o: stars.h vec.h -stars.o: *.h -vec.o: vec.h -``` - -# On peut faire mieux - -Il est possible de prendre **tous** les fichiers `.c` - -```makefile -SOURCES = $(wildcard *.c) -OBJECTS = $(SOURCES:.c=.o) -``` - -Ou encore mieux - -```makefile -OBJECTS := $(patsubst %.c,%.o,$(wildcard *.c)) -``` - -# That escalated quickly: `*`, `%`, `:=`, ... - -```makefile -# version "longue" -SOURCES = $(wildcard *.c) -OBJECTS = $(SOURCES:.c=.o) -# version "courte" -OBJECTS := $(patsubst %.c,%.o,$(wildcard *.c)) -``` - -Let's take one step at a time: - -* Les `*`{.makefile}, -* Les `%`{.makefile}, et leurs différences. -* Les fonctions, ici `wildcard`{.makefile} et `patsubst`{.makefile} (voir respectivement [ce lien](https://www.gnu.org/software/make/manual/html_node/Wildcard-Function.html) et [ce lien](https://www.gnu.org/software/make/manual/html_node/Text-Functions.html)). -* Le symbole `:=`{.makefile} vs `=`{.makefile}. - -# Le symbole `*` - -## `make` peut "développer" (expand) des `wildcards` (`*`) - -* dans les recettes le `*` est géré par le shell - - ```makefile - clean: - rm -f *.o galaxy - ``` -* dans les dépendances - - ```makefile - galaxy.o: *.h - ``` - mais des fichiers `.h` doivent exister sinon il interprète `*.h` le nom du fichier. - -## Par contre ile ne peut pas - -```makefile -OBJECTS = *.o -# il faut utiliser -OBJECTS := $(wildcard *.o) # retourne tous les fichier .o -``` - -# La différence entre `*` et `%` - -* Le symbole `*`{.makefile} sert à générer une *liste* d'objets. -* Le symbole `%`{.makefile} sert comme *emplacement* (placeholder). - -## Exemple - -```makefile -%.o: %.c # % est la partie avant .c - $(CC) -o $@ -c $< $(CFLAGS) # la règle pour chaque `%.c` -# équivalent à -galaxy.o: galaxy.c -stars.o: stars.c -vec.o: vec.c - -``` - -## Application - -```makefile -$(patsubst # Substitution de texte pour chaque - %.c,\ # Le pattern "avant" le .c - %.o,\ # Le pattern "avant" le .o - $(wildcard *.c)\ # Tous les fichiers .c - ) -``` - - -# Le symbole `:=`{.makefile} vs `=`{.makefile} (1/2) - -Deux façon (flavors) d'assigner des variables (voir [ce lien](https://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors)): - -## Le symbole `=` - -* Façon **récursive**: - - ```makefile - foo = $(bar) - bar = $(ugh) - ugh = Huh? - ``` - ici `foo` vaut `Huh?`. -* Valeurs remplacées "récursivement". -* Variables remplacées à chaque appel (lent + imprédictible!). - -# Le symbole `:=` vs `=` (2/2) - -Deux façon (flavors) d'assigner des variables (voir [ce lien](https://www.gnu.org/software/make/manual/html_node/Flavors.html#Flavors)): - -## Le symbole `:=` - -* Façon **simplement développée** (`Simply expanded variable`): - - ```makefile - x := foo - y := $(x) bar - x := later - ``` - ici `y` vaut `foo bar` et `x` vaut `later` (avec des `=`, `y` vaudrait `later bar`). -* Les variables se comportent comme en `C`. -* En particulier dans les *longs* `Makefile` le comportement est plus prédictible. diff --git a/slides/opaque.md b/slides/opaque.md deleted file mode 100644 index b59c254b2fe23ee1222882c864de4cacd526cb46..0000000000000000000000000000000000000000 --- a/slides/opaque.md +++ /dev/null @@ -1,153 +0,0 @@ ---- -title: "Types opaques" -date: "2023-03-07" ---- - -# Types composés - -* Jusqu'ici les `struct` sont dans les `.h` et sont *transparents* - -```C -// table.h -typedef struct _table { - int *data; - int length; -} table; -// main.c -table tab; // membres de tab accessibles directement -tab.length = 10; -tab.data = malloc(tab.length * sizeof(int)); -tab.data[9] = 10; -``` - -# Types opaques - -* Afin de cacher les détails de l'implémentation. -* Afin d'éviter les modifications directs des données. -* Afin de protéger le monde de la dévastation! -* Définition de types **opaques**: - * Variables dans les structures ne sont pas accessibles. - * Variables dans les structures ne sont pas modifiables. - * Les variables ne sont même pas connues. -* Nécessité de passer par des fonctions pour initialiser/modifier les instances - de types opaques. -* Très souvent utilisés pour les structures de données abstraites (table de - hachage, pile, file, ...). - -# Utilisation d'un type opaque: problème? - -* Dans `opaque.h` - - ```C - struct table; - ``` -* Dans `opaque.c` - - ```C - struct table { - int a; - } - ``` -* Dans `main.c` - - ```C - int main() { - struct table t; - } - // error: storage size of ‘t’ isn’t known - ``` -* La taille de `table` n'est pas connue à la compilation! -* Comment faire? - -# Utilisation d'un type opaque: pointeur! - -\footnotesize - -* Dans `opaque.h` - - ```C - struct table; - struct table *create(); - void init(struct table **t); - ``` -* Dans `opaque.c` - - ```C - struct table { - int a; - } - struct table *create() { - struct table *t = malloc(sizeof(*t)); - return t; - } - void init(struct table **t) { - *t = malloc(sizeof(**t)); - } - ``` -* Dans `main.c` - - ```C - int main() { - struct table *t = create(); - init(&t); - t->a = 2; // Interdit, set(2) - printf("%d\n", t->a); // Interdit, get() - } - ``` - -# Un peu plus joli: typedef! (1/2) - -* Dans `opaque.h` - - ```C - struct _table; - typedef struct _table * table; - void init(table *t); - void set_a(table t, int a); - int get_a(table t); - ``` -* Dans `opaque.c` - - ```C - struct _table { - int a; - } - void init(table *t) { - *t = malloc(sizeof(**t)); - (*t)->a = 0; - } - void set_a(table t, int a) { - t->a = a; - } - int get_a(table t) { - return t->a; - } - ``` - -# Un peu plus joli: typedef! (2/2) - -* Dans `main.c` - - ```C - int main() { - table t; - init(&t); - set_a(t, 10); - printf("%d\n", get_a(t)); - } - ``` - -* On a fait les fonctions `get_a()` et `set_a()` comme exemples, mais... - -. . . - -* c'est pas forcément nécessaire d'implémenter (`get/set`). - -. . . - -* Par exemple, pour la hashmap on `get/set` les variables des structs! - -## Yaka - -* Utiliser les types opaques pour la hashmap! - diff --git a/slides/pointeurs_avances.md b/slides/pointeurs_avances.md deleted file mode 100644 index 9cbc53f33f0117d20121cc3635567a7909370377..0000000000000000000000000000000000000000 --- a/slides/pointeurs_avances.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -title: "Pointeurs avancés" -date: "2023-02-24" ---- - -# Pointeurs et `const` - -\footnotesize - -- Le mot-clé `const` permet de déclarer des valeurs **constantes** qui ne changeront plus en cours d'exécution du programme. - - ```C - const int a = 1; - a = 2; // interdit, erreur de compilation! - ``` - -## Deux niveaux de constance - -- Mais qu'est-ce que cela veut dire pour les pointeurs? -* Constance de la valeur de l'adresse? de la valeur pointée? des deux? - - ```C - int n = 12; - const int *p = &n; // la valeur *p est const, p non - int const *p = &n; // la valeur *p est const, p non - int *const p = &n; // la valeur p est const, *p non - const int *const p = &n; // la valeur p et *p sont const - ``` - -# Pointeurs et `const` - -## Exemples - -```C -int n = 12; int m = 13; -const int *p = &n; // la valeur *p est const, p non -*p = m; // erreur de compilation. -p = &m; // OK -int const *p = &n; // la valeur *p est const, p non -*p = m; // erreur de compilation. -p = &m; // OK -int *const p = &n; // la valeur p est const, *p non -*p = m; // OK -p = &m; // erreur de compilation. -const int *const p = &n; // la valeur p et *p sont const -*p = m; // erreur de compilation. -p = &m; // erreur de compilation. -``` - -# Pointeurs et `const` - -## Fonctions - -```C -void foo(int *a); -void foo(const int *a); // on pourra pas changer *a -void foo(int *const a); // inutile on peut pas changer a -void foo(const int *const a); // identique à ci-dessus -``` - -## Mais..... - -```C -const int a = 0; -int *b = (int *)&a; -*b = 7; -printf("a = %d\n", a); // affiche quoi? -``` diff --git a/slides/pointeurs_rappel.md b/slides/pointeurs_rappel.md deleted file mode 100644 index 069ae154367b6ef6ca7f4060df850dc813eb9fb4..0000000000000000000000000000000000000000 --- a/slides/pointeurs_rappel.md +++ /dev/null @@ -1,146 +0,0 @@ ---- -title: "Rappel sur les pointeurs" -date: "2023-02-21" ---- - -# Rappel sur les pointeurs (1/2) - -Pour reprendre dans la joie après les ~~vacances~~ **semaines sans cours**. - -. . . - -## Qu'est-ce qu'un pointeur? - -. . . - -* Un objet qui stocke une adresse mémoire et le type des données pointées. - -. . . - -## Comment déclare-t-on les pointeurs en C? - -. . . - -```C -// type * variable; -double * d; -struct element * e; -``` - -* `double *` est le **type** de `d` et `struct element *` est le **type** de `e`. - -## Comment accède-t-on à la valeur se trouvant à une adresse mémoire? - -. . . - -```C -int c = 2; -// On assigne l'adresse de c au pointeur p_c -int * p_c = &c; -// On déréférence un pointeur -*p_c = 4; -``` - -# Rappel sur les pointeurs (2/2) - -## Quelle est la seule adresse "interdite"? - -. . . - -```C -// l'adresse 0 ou NULL -double * e = NULL; -*e = 10; // Runtime error... -double * e; -*e = 10; // Maybe error (e has a random value)... -``` - -## Qu'est-ce qu'un pointeur n'est pas? - -* Un pointeur **n'est pas** entier (mais bien plus)... -* même si en C on peut convertir un pointeur en entier. -* D'ailleurs, on ne **peut pas** déréférencer un entier - -```C -uint64_t c = 2; -*c = 3; // ERREUR! -``` - -# Comment utilise-t-on les pointeurs? (1/2) - -## Dans les arguments des fonctions - -```C -void modif_argument(int * val) { - *val = 5; -} -int main() { - int var = 4; - modif_argument(&var); // on passe l'adresse de var -} -``` - -. . . - -## Pour allouer de la mémoire sur le tas - -```C -int main() { - int * var = malloc(sizeof(*var)); - struct element * revar = malloc(sizeof(struct element)); - double * tab = malloc(10 * sizeof(*tab)); - free(var); - free(revar); - free(tab); // oui il faut pas oublier de désallouer -} -``` - -# Comment utilise-t-on les pointeurs? (2/2) - -## Allouer de la mémoire sur le tas dans fonction - -```C -void modif_argument(int ** val) { - *val = malloc(sizeof(int)); -} -int main() { - int * var = NULL; - modif_argument(&var); // on passe l'adresse de var et donc on alloue -} -``` - -. . . - -## Que se passerait-il si.... - -```C -void modif_argument(int * val) { - val = malloc(sizeof(int)); -} -int main() { - int * var = NULL; - modif_argument(var); -} -``` - -. . . - -* Un code buggé (99.9% du temps) **et** une fuite mémoire... -* Mais avec un peu de chance le code va marcher (comportement indéfini). - -# Last but not least - -## Les pointeurs et les tableaux - -* On peut allouer un tableau et le manipuler avec les pointeurs: - -```C -float * tab = malloc(12 * sizeof(*tab)); -*tab = 1.2; // première case de tab = 1.2 -tab[0] = 2.3; // première case de tab = 2.3 -tab[2] = 3.4; // 3e case de tab = 3.4 -*(tab + 4) = 4.5; // 4e case de tab = 4.5 -// ceci était de l'arithmétique de pointeur -// on déréférence l'adresse (tab + 4) -// en unités de float -``` \ No newline at end of file diff --git a/slides/strings.md b/slides/strings.md deleted file mode 100644 index 629ce5c1f17efd6c55b64809378672672a2f40b0..0000000000000000000000000000000000000000 --- a/slides/strings.md +++ /dev/null @@ -1,72 +0,0 @@ ---- -title: "Chaînes de caractères" -date: "2022-11-01" ---- - -# Rappel: la chaîne de caractères - -## Existe-t-il un type `string`{.C} en `C`{.C}? - -. . . - -* Non. - -. . . - -## Qu'est-ce qu'une chaîne de caractères en C? - -. . . - -* Un tableau de `char`{.C} (entier signé 8 bits, le code ASCII de chaque caractère) - -. . . - -* qui se termine lorsqu'on rencontre le caractère `\0`{.C} (qui est le `0` du code ASCII). - -# Exemple - -```C -char *str = "HELLO !"; // statique -``` - -Est représenté par - -| `H` | `E` | `L` | `L` | `O` | | `!` | `\0`| -|------|------|------|------|------|------|------|-----| -| `72` | `69` | `76` | `76` | `79` | `32` | `33` | `0` | - -# Syntaxes alternatives - -```C -char name[10]; -name[0] = 'P'; // = 70; -name[1] = 'a'; // = 97; -name[2] = 'u'; // = 117; -name[3] = 'l'; // = 108; -name[4] = '\0'; // = 0; -char name[] = {'P', 'a', 'u', 'l', '\0'}; -``` - -# Fonctions - -\footnotesize - -- Il existe une grande quantités de fonction pour la manipulation de chaînes de caractères dans `string.h`. -- Comment les trouver? - -. . . - -```bash -$ man 3 string -``` - -- Fonctions principales: - - ```C - size_t strlen(char *str); - char *strcpy(char *dest, const char *src); - char *strncpy(char *dest, const char *src, size_t len); - int strncmp(char *str1, char *str2, size_t len); - int strcmp(char *str1, char *str2); - ``` - diff --git a/slides/structs.md b/slides/structs.md deleted file mode 100644 index 7f138309729228635c6d723a122a493265aed62a..0000000000000000000000000000000000000000 --- a/slides/structs.md +++ /dev/null @@ -1,151 +0,0 @@ ---- -title: "Structures" -date: "2022-10-18" ---- - -# Types composés: `struct`{.C} (1/6) - -* Appelées aussi **structures**. - -## Fractions - -* Numérateur: `int num`; -* Dénominateur: `int denom`. - -## Addition - -```C -int num1 = 1, denom1 = 2; -int num2 = 1, denom2 = 3; -int num3 = num1 * denom2 + num2 * denom1; -int denom3 = denom1 * denom2; -``` - -## Pas super pratique.... - -# Types composés: `struct`{.C} (2/6) - -## On peut faire mieux - -* Plusieurs variables qu'on aimerait regrouper dans un seul type: `struct`{.C}. - -```C -struct fraction { // déclaration du type - int32_t num, denom; -}; - -struct fraction frac; // déclaration de frac -``` - -# Types composés: `struct`{.C} (3/6) - -\footnotesize - -## Simplifications - -- `typedef`{.C} permet de définir un nouveau type. - - ```C - typedef unsinged int uint; - typedef struct fraction fraction_t; - typedef struct fraction { - int32_t num, denom; - } fraction_t; - ``` -- L'initialisation peut aussi se faire avec - - ```C - fraction_t frac = {1, -2}; // num = 1, denom = -2 - fraction_t frac = {.denom = 1, .num = -2}; // idem - fraction_t frac = {.denom = 1}; // argl! .num non initialisé - fraction_t frac2 = frac; // copie - ``` - -# Types composés: `struct`{.C} (4/6) - -\footnotesize - -## Pointeurs - -- Comme pour tout type, on peut avoir des pointeurs vers un `struct`{.C}. -- Les champs sont accessible avec le sélecteur `->`{.C} - - ```C - fraction_t *frac; // on crée un pointeur - frac->num = 1; // seg fault... - frac->denom = -1; // mémoire pas allouée. - ``` - -{width=50%} - -# Types composés: `struct`{.C} (5/6) - -\footnotesize - -## Initialisation - -- Avec le passage par **référence** on peut modifier un struct *en place*. -- Les champs sont accessible avec le sélecteur `->`{.C} - - ```C - void fraction_init(fraction_t *f, - int32_t num, int32_t denom) - { - // f a déjà été allouée - f->num = num; - f->denom = denom; - } - int main() { - fraction_t frac; // on alloue une fraction - fraction_init(&frac, 2, -1); // on l'initialise - } - ``` - -# Types composés: `struct`{.C} (6/6) - -\footnotesize - -## Initialisation version copie - -* On peut allouer une fraction, l'initialiser et le retourner. -* La valeur retournée peut être copiée dans une nouvelle structure. - - ```C - fraction_t fraction_create(int32_t num, int32_t denom) { - fraction_t f; - f.num = num; f.denom = denom; - return f; - } - int main() { - // on crée une fraction et on l'initialise - // en copiant la fraction créé par fraction_create - // deux allocation et une copie - fraction_t frac = fraction_create(2, -1); - } - ``` - -# Modification en place vs retour - -\footnotesize - -## Quelle est la différence entre `fraction_init` et `fraction_create`? - -```C -void fraction_init(fraction_t *f, int32_t num, int32_t denom); -fraction_t fraction_create(int32_t num, int32_t denom); -``` - -. . . - -* `fraction_init`{.C} modifie une fraction **déjà ** allouée quelque part. -* `fraction_create`{.C} alloue une nouvelle fraction et la retourne. - -. . . - -## Quelle impact sur les performances? - -. . . - -* `init`: une allocation et modification des données. -* `create`: deux allocation, une modification et une copie. -* Important pour des structures contenance *beaucoup* de données. \ No newline at end of file diff --git a/slides/tableaux_fonctions.md b/slides/tableaux_fonctions.md deleted file mode 100644 index e8799894bd57f898cd125aa9f0033b419feccd81..0000000000000000000000000000000000000000 --- a/slides/tableaux_fonctions.md +++ /dev/null @@ -1,274 +0,0 @@ ---- -title: "Tableaux et fonctions" -date: "2022-10-11" ---- - -# Rappel (1/3) - -* Comment sont passés les arguments d'une fonction en `C`? - -. . . - -* **Toujours** par **copie**. - - ```C - void foo(int a) { - a = 2; - } - int x = 1; - foo(x); - // Que vaut x ici? - ``` - -# Rappel (2/3) - -* Comment sont passés les arguments d'une fonction en `C`? -* **Toujours** par **copie**. - - ```C - void foo(int a) { - a = 2; - } - int x = 1; - foo(x); - // Ici x faut 1 - ``` - -* Une nouvelle variable `int a` est créée lors de l'appel à `foo(a)`, et on lui assigne la valeur de `x`. -* `x` n'est donc jamais modifiée. - -# Rappel (3/3) - -* Comment modifier un argument d'une fonction en `C`? - -. . . - -* L'argument doit être la **référence** vers la variable. - - ```C - void foo(int *a) { // le pointeur a - *a = 2; // déréférencement du pointeur a - } - int x = 1; - foo(&x); // référence vers x - // Ici x faut 2 - ``` -* Une nouvelle variable `int *a` est créée lors de l'appel à `foo`, et on lui assigne la valeur de `&x`. -* `&x` n'est jamais modifiée **mais** `x` l'est. - -# Remarques - -* On peut *retourner* une valeur depuis une fonction. - - ```C - int foo(int a) { - return a + 2; - } - int x = 1; - int y = foo(x); // x n'est pas modifiée - // et y vaut x + 2 - ``` - -# Les tableaux statiques - -## Qu'est-ce qu'un tableau statique? - -. . . - -* Une **liste** ou un **ensemble** - -. . . - -* d'éléments du **même type** - -. . . - -* alloués de façon **contigüe** (en bloc) en mémoire - -. . . - -* sur la **pile** - -. . . - -* dont la taille **ne peut pas** être changée. - -. . . - -## Remarques - -- Les éléments d’un tableau sont accédés avec `[i]`{.C} où `i`{.C} est l’index de l’élément. -- Le premier élément du tableau à l’index `0`{.C}! -- Lorsqu’un tableau est déclaré, la taille de celui-ci doit toujours être spécifiée, sauf s’il est initialisé lors de sa déclaration. -- Un tableau local à une fonction ne doit **jamais être retourné**! - -# Syntaxe des tableaux - -```C -float tab1[5]; // tableau de floats à 5 éléments - // ses valeurs sont indéfinies - -int tab2[] = {1, 2, 3}; // tableau de 3 entiers, - // taille inférée - -int val = tab2[1]; // val vaut 2 à présent - -int w = tab1[5]; // index hors des limites du tableau - // comportement indéfini! - // pas d'erreur du compilateur -``` - -<!-- TODO QUIZ: - -```C -int a1[5]; // OK -int a2[] = { 1, 2, 3 }; // OK -int a3[4][5]; // OK -int [] a4; // Erreur -int a5[]; // Erreur - -int[] function(void) { // Erreur - int array[5]; // OK - return array; // Erreur -} - -void foo(int a[]) { // OK - a[3] = 0; // OK -} - -void bar(void) { - int a[5]; // OK - foo(a); // OK - a = a[5]; // Erreur -} -``` --> - -<!-- ```C -#include <stdio.h> - -int main(void) { - char i; - char a1[] = { 100,200,300,400,500 }; - char a2[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - a2[10] = 42; - - for (i = 0; i < 5; i++) { - printf("a1[%d] = %d\n", i, a1[i]); - } - - return 0; -} -``` --> - -# Itérer sur les éléments d'un tableau - -```C -int x[10]; -for (int i = 0; i < 10; ++i) { - x[i] = 0; -} -int j = 0; -while (j < 10) { - x[j] = 1; - j += 1; -} -int k = 0; -do { - x[k] = -1; - k += 1; -} while (k < 9) -``` - -# Représentation des tableaux en mémoire - -## La mémoire est : - -- ... contigüe, -- ... accessible très rapidement - -## Exemple: - -```C -char tab[4] = {79, 91, 100, 88}; -``` - -+------+------+------+------+------+------+------+ -| char | 79 | 91 | 100 | 88 | .... | .... | -+======+======+======+======+======+======+======+ -| addr | 2000 | 2001 | 2002 | 2003 | .... | .... | -+------+------+------+------+------+------+------+ - -## Qu'est-ce que `tab`? - -```C -tab; // 2000, l'adress du 1er élément -&tab[0]; // 2000 == tab -tab[0]; // 79 -sizeof(tab); // 4 -``` - -# Les tableaux comme arguments de fonctions - -- Un tableau en argument est le pointeur vers sa première case. -- Pas moyen de connaître sa taille: `sizeof()`{.C} inutile. -- Toujours spécifier la taille d'un tableau passé en argument. - - ```C - void foo(int tab[]) { // équivalent à int *tab - // que vaut sizeof(tab)? - for (int i = 0; i < ?; ++i) { // taille? - printf("tab[%d] = %d\n", i, tab[i]); - } - } - void bar(int n, int tab[n]) { // [n] optionnel - for (int i = 0; i < n; ++i) { - printf("tab[%d] = %d\n", i, tab[i]); - } - } - ``` - -# Quels sont les bugs dans ce code? - -```C -#include <stdio.h> - -int main(void) { - char i; - char a1[] = { 100, 200, 300, 400, 500 }; - char a2[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - a2[10] = 42; - - for (i = 0; i < 5; i++) { - printf("a1[%d] = %d\n", i, a1[i]); - } - - return 0; -} -``` - -# Quels sont les bugs dans ce code? - -```C -#include <stdio.h> - -int main(void) { - char i; - // 200, .., 500 char overflow - char a1[] = { 100, 200, 300, 400, 500 }; - char a2[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; - a2[10] = 42; // [10] out of bounds - - for (i = 0; i < 5; i++) { - printf("a1[%d] = %d\n", i, a1[i]); - } - - return 0; -} -``` - -<!-- TODO quiz: --> - -<!-- que retourne sizeof(tab[]) --> - - - diff --git a/slides/variables_fonctions.md b/slides/variables_fonctions.md deleted file mode 100644 index dc635a2c28df86488fa72bb3e271f90d927c4bdc..0000000000000000000000000000000000000000 --- a/slides/variables_fonctions.md +++ /dev/null @@ -1,239 +0,0 @@ ---- -title: "Variables et fonctions" -date: "2022-10-04" -patat: - wrap: true - margins: - left: 10 - right: 10 ---- - -# Les variables - -## Qu'est-ce qu'une variable? - -. . . - -* Un **identifiant** - -. . . - -* pour un **espace de stockage** - -. . . - -* contenant un **valeur**. - -## En général, une variable possède: - -* Un **type** (`int`, `double`, ...); -* une **adresse mémoire** (voir ci-après). - -# Représentation des variables en mémoire (1/3) - -\footnotesize - -## La mémoire est : - -- ... un ensemble de bits, -- ... accessible via des adresses, - - +------+----------+----------+------+----------+------+------+ - | bits | 00110101 | 10010000 | .... | 00110011 | .... | .... | - +======+==========+==========+======+==========+======+======+ - | addr | 2000 | 2001 | .... | 4000 | .... | .... | - +------+----------+----------+------+----------+------+------+ -- ... gérée par le système d'exploitation. -- ... séparée en deux parties: **la pile** et **le tas**. - -## Pile vs tas - -+----------------------------------+------------------------------+ -| Pile | Tas | -+==================================+==============================+ -| Ordonnée | Amas informe | -+----------------------------------+------------------------------+ -| Taille connue (à la compilation) | Taille dynamique (exécution) | -+----------------------------------+------------------------------+ - -# Représentation des variables en mémoire (2/3) - -## Une variable, `type a = valeur`{.C}, possède: - -- un type (`char`{.C}, `int`{.C}, ...), -- un contenu (une séquence de bits qui encode `valeur`{.C}), -- une adresse mémoire (accessible via `&a`{.C}), -- une portée. - -## En fonction du **type** les bits ne représentent pas la même chose! - -# Représentation des variables en mémoire (3/3) - -{width=100%} - -# Les fonctions (1/7) - -- Les parties indépendantes d'un programme. -- Permettent de modulariser et compartimenter le code. -- Syntaxe: - - ```C - type identificateur(paramètres) { - // variables optionnelles - instructions; - // type expression == type - return expression; - } - ``` - -# Les fonctions (2/7) - -## Exemple - -```C -int max(int a, int b) { - if (a > b) { - return a; - } else { - return b; - } -} -int main() { - int c = max(4, 5); -} -``` - -# Les fonctions (3/7) - -- Il existe un type `void`{.C}, "sans type", en C. -- Il peut être utilisé pour signifier qu'une fonction ne retourne rien, ou qu'elle n'a pas d'arguments. -- `return`{.C} utilisé pour sortir de la fonction. -- Exemple: - - ```C - void show_text(void) { // second void optionnel - printf("Aucun argument et pas de retour.\n"); - return; // optionnel - } - void show_text_again() { // c'est pareil - printf("Aucun argument et pas de retour.\n"); - } - ``` - -# Les fonctions (4/7) - -## Prototypes de fonctions - -- Le prototype donne la **signature** de la fonction, avant qu'on connaisse son implémentation. -- L'appel d'une fonction doit être fait **après** la déclaration du prototype. - - ```C - int max(int a, int b); // prototype - - int max(int a, int b) { // implémentation - if (a > b) { - return a; - } else { - return b; - } - } - ``` - -# Les fonctions (5/7) - -## Arguments de fonctions - -- Les arguments d'une fonction sont toujours passés **par copie**. -- Les arguments d'une fonction ne peuvent **jamais** être modifiés. - - ```C - void set_to_two(int a) { // a: nouvelle variable - // valeur de a est une copie de x - // lorsque la fonction est appelée, ici -1 - a = 2; // la valeur de a est fixée à 2 - } // a est détruite - int main() { - int x = -1; - set_to_two(x); // -1 est passé en argument - // x vaudra toujours -1 ici - } - ``` - -# Les fonctions (6/7) - -## Arguments de fonctions: pointeurs - -- Pour modifier un variable, il faut passer son **adresse mémoire**. -- L'adresse d'une variable, `x`{.C}, est accédé par `&x`{.C}. -- Un **pointeur** vers une variable entière a le type, `int *x`{.C}. -- La syntaxe `*x`{.C} sert à **déréférencer** le pointeur (à accéder à la mémoire pointée). - -# Les fonctions (7/7) - -## Exemple - -```C -void set_to_two(int *a) { - // a contient une copie de l'adresse de la - // variable passée en argument - - *a = 2; // on accède à la valeur pointée par a, - // et on lui assigne 2 -} // le pointeur est détruit, pas la valeur pointée -int main() { - int x = -1; - set_to_two(&x); // l'adresse de x est passée - // x vaudra 2 ici -} -``` - -# Quiz: Les fonctions - -## [Quiz: Les fonctions](https://cyberlearn.hes-so.ch/mod/evoting/view.php?id=1038560) - -<!-- TODO quiz; -```C -void set_to_two(int *a) { - a = 2; -} -int main() { - int x = -1; - set_to_two(&x); -} - - -void add_two(int *a) { - *a += 2; -} - -int main() { - int x = -1; - add_two(&x); -} - -void add_two(int a) { - a += 2; - printf("%d", a); -} -int main() { - int x = -1; - add_two(&x); -} -``` --> - -# Comment lire une signature? - -Que peut-on déduire de la signature de la fonction suivante: - -```C -int32_t bissect(double a1, double b1, double epsilon, - double *zero); -``` - -. . . - -Une fonction prenant trois `double` en argument, et un pointeur de -`double` (il est donc modifiable) et retournant un entier. - -Un site permettant de faire ce genre de traductions: -<https://cdecl.org/>