diff --git a/LICENSE.md b/LICENSE.md index 3b7aacfc0c035588dc292633ae21d87ec3976348..3d154c809d296ebf65ab4414cd1dee5e9e15023e 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -56,6 +56,7 @@ Copyright holders | 2012-2014 | Alexandru Tatomir | | 2015-2017 | Larissa de Vries | | 2013 | Katharina Türk | +| 2018 | Martin Utz | | 2010-2014 | Lena Walter | | 2018 | Felix Weinhardt | | 2015-2017 | Kilian Weishaupt | diff --git a/doc/handbook/0_dumux-handbook.tex b/doc/handbook/0_dumux-handbook.tex index 0a2416b866fa6490e81cffb4fc34f1439d5ba11e..7d8185ce932364fe073dc33f783f213f183c70f1 100644 --- a/doc/handbook/0_dumux-handbook.tex +++ b/doc/handbook/0_dumux-handbook.tex @@ -11,6 +11,7 @@ \usepackage{enumerate} \usepackage{hyperref} \usepackage{graphicx} + \usepackage{listings} \usepackage{makeidx} \usepackage[square,numbers]{natbib} @@ -72,6 +73,7 @@ \DeclareMathOperator{\grad}{\mathbf{grad}} \DeclareMathOperator{\curl}{curl} \DeclareMathOperator{\Div}{div} +\newcommand{\meas}[1]{\lvert{#1}\rvert} \pagestyle{scrheadings} @@ -109,31 +111,32 @@ Universit\"at Stuttgart, Paffenwaldring 61, D-70569 Stuttgart, Germany}\\ \chapter{Introduction} \input{1_introduction} -\chapter{Getting started} +\chapter{Quick Start}\label{quick-install} In this chapter we provide a quick start guide to -your first \Dumux experience. -The first section contains instructions on how to very quickly install \Dumux. -More detailed information on how to obtain source code, build and test \Dune and \Dumux -follows in the second section of this chapter. The second section also contains information on -how to build the documentation and about external libraries and modules. +your first \Dumux experience, including an install script with all necessary instructions +on how to very quickly install the latest release version of \Dumux. \input{2_quickinstall} + +\chapter{Detailed Installation, Documentation, and Externals}\label{detailed-install} +In this chapter, we provide more detailed information on how to obtain source code, build and test \Dune and \Dumux. +It further contains information on +how to build the documentation and about external libraries and modules. \input{2_detailedinstall} -\chapter{Tutorial}\label{chp:tutorial} -\input{3_tutorial} +\chapter{Learning to use \Dumux}\label{chp:tutorial} +\input{3_course} \input{3_furtherpractice} \chapter{Overview and Infrastructure} This chapter provides an overview of the general structure in \Dumux \ref{sc_structure} and gives help for basic work with \Dumux -(\ref{sc_newfoldersetup},\ref{sc_parameterfiles},\ref{sc_restartsimulations},\ref{sc_guidelines},\ref{sc_developingdumux}). +(\ref{sc_newfoldersetup},\ref{sc_parameterfiles},\ref{sc_restartsimulations}, \ref{sc_developingdumux}). Further it presents useful external tools \ref{sc_externaltools} and basic concepts \ref{sc_linearsystem}. \input{4_structure} \input{4_newfoldersetup} \input{4_parameterfiles} \input{4_restartsimulations} -\input{4_guidelines} \input{4_developingdumux} \input{4_externaltools} \input{4_assemblinglinearsystem} @@ -145,7 +148,8 @@ in deeper modifications of underlying \Dumux models, classes, functions, etc. \input{5_spatialdiscretizations} \input{5_stepsofasimulation} \input{5_propertysystem} -\input{5_grids} +\input{5_inputoutput} +\input{5_parallel} \bibliographystyle{plainnat} \bibliography{dumux-handbook} diff --git a/doc/handbook/1_introduction.tex b/doc/handbook/1_introduction.tex index 526f021c8ae803a42309073bac542d5bdbc8626e..370786c3f5faa72bfed9909419b1afa43c301f85 100644 --- a/doc/handbook/1_introduction.tex +++ b/doc/handbook/1_introduction.tex @@ -25,7 +25,7 @@ libraries\footnote{In fact, the performance penalty resulting from the use of \Dune's grid interface is usually negligible~\cite{BURRI2006}.}. \begin{figure}[hbt] \centering - \includegraphics[width=.5\linewidth, keepaspectratio]{PNG/dunedesign.png} + \includegraphics[width=.5\linewidth, keepaspectratio]{png/dunedesign.png} \caption{ \label{fig:dune-design} A high-level overview of \Dune's design is available on the project's @@ -49,7 +49,10 @@ entity can be thought of as a prototype for the actual grid entity. For example, if we used a grid which applied hexahedrons as cells, the reference element for each cell would be the unit cube $[0, 1]^3$ and the geometry function would scale and translate the cube so that -it matches the grid's cell. For a more thorough description of \Dune's +it matches the grid's cell. A quick overview of reference elements and the +related numbering can be gotten from the DUNE cheat sheet +(\url{https://www.dune-project.org/pdf/dune-cheat-sheet.pdf}). +For a more thorough description of \Dune's grid definition, see~\cite{BASTIAN2008}. In addition to the grid interface, \Dune also provides quite a few @@ -71,3 +74,17 @@ spatial and temporal discretization schemes as well as nonlinear solvers, to general concepts for model coupling. Moreover, \Dumux includes ready to use numerical models and a few example applications. +This is the handbook to a new major version update of \Dumux: version 3.0. +The release contains considerable improvements and many new features compared to the 2.x versions. +Due to the major update, backwards compatibility with the last release 2.12 cannot be assured. +To facilitate the transition for our users, we have created a +git wiki entry describing how to update programs from version 2.12 to version 3.0. +It is available online: +\url{https://git.iws.uni-stuttgart.de/dumux-repositories/dumux/wikis/Updating-programs-from-version-2.12-to-version-3.0}. +The guide leads in detail through the interface changes from 2.12 to 3.0, +concerning the \texttt{Problem} class, the \texttt{SpatialParams} class, +the \texttt{Parameters} and \texttt{Properties}, i.e. the main user interface. +Starting with version 3.0.0, all minor +version updates will certainly be backward compatible again with at least the last minor version. +We highly recommend all our users to transition with us to \Dumux-3.0 +and wish everyone a brand-new and exciting simulation experience. diff --git a/doc/handbook/2_detailedinstall.tex b/doc/handbook/2_detailedinstall.tex index 504d33049e51056871dfa4dbed86a9e060cf7ac6..a4b8286eebea4bb8b692590231eaa47dceecc767 100644 --- a/doc/handbook/2_detailedinstall.tex +++ b/doc/handbook/2_detailedinstall.tex @@ -1,5 +1,5 @@ -\section{Detailed Installation Instructions} -\label{install} +% \section{Detailed Installation Instructions} +% \label{install} Installing \Dumux means that you first unpack \Dune and \Dumux in a root directory, (section \ref{sc:ObtainingSourceCode}). @@ -15,10 +15,10 @@ Thus, the installation procedure of \Dumux is the same as that of \Dune. Details regarding the installation of \Dune are provided on the \Dune website \cite{DUNE-HP}. -\subsection{Obtaining Source Code for \Dune and \Dumux} +\section{Obtaining Source Code for \Dune and \Dumux} \label{sc:ObtainingSourceCode} The \Dumux release and trunk (developer tree) are based on the most recent -\Dune release 2.5, comprising the core modules dune-common, dune-geometry, dune-grid, +\Dune release 2.6, comprising the core modules dune-common, dune-geometry, dune-grid, dune-istl and dune-localfunctions. For working with \Dumux, these modules are required. All \Dune modules, including the \Dumux module, get extracted into a common root directory, as it is done in an ordinary \Dune installation. @@ -32,45 +32,45 @@ in the root directory of the respective module. This should not be changed by th Two possibilities exist to get the source code of \Dune and \Dumux. Firstly, \Dune and \Dumux can be downloaded as tar files from the respective \Dune and \Dumux website. They have to be extracted as described in the next paragraph. -% TODO: alpha version was not released with a tarball. For the next releases the following lines need to be deleted again -There is no tar file for the current \DumuxVersion~release. -Secondly, a method to obtain the most recent source code (or, more generally, any of its previous revisions) by direct access -to the software repositories of the revision control system is described in the subsequent part. -Be aware that you cannot get \texttt{dumux-devel} or the external libraries from \texttt{dumux-external} unless -you have an GitLab account with the right privileges. +% % TODO: alpha version was not released with a tarball. For the next releases the following lines need to be deleted again +% There is no tar file for the current \DumuxVersion~release. +% Secondly, a method to obtain the most recent source code (or, more generally, any of its previous revisions) by direct access +% to the software repositories of the revision control system is described in the subsequent part. +% Be aware that you cannot get \texttt{dumux-devel} or the external libraries from \texttt{dumux-external} unless +% you have an GitLab account with the right privileges. In section \ref{sec:prerequisites} we list some prerequisites for running \Dune and \Dumux. Please check in said paragraph whether you can fulfill them before continuing. % TODO: alpha version was not released with a tarball. For the next releases the following lines need to be uncommented again -% \paragraph{Obtaining the software by installing tar files} -% The slightly old-fashionedly named tape-archive-file, shortly named tar file or -% tarball, is a common file format for distributing collections of files contained -% within these archives. -% The extraction from the tar files is done as follows: -% Download the tarballs from the respective \Dune (version 2.5) and \Dumux websites -% to a certain folder in your file system. -% Create the common root directory, named \texttt{DUMUX} in the example below. -% Then extract the content of the tar files, e.\,g. with the command-line program -% \texttt{tar}. -% This can be achieved by the following shell commands. Replace \texttt{path\_to\_tarball} -% with the directory name where the downloaded files are actually located. -% After extraction, the actual name of the dumux subdirectory is \texttt{dumux-\DumuxVersion} -% (or whatever version you downloaded). -% -% \begin{lstlisting}[style=Bash] -% $ mkdir DUMUX -% $ cd DUMUX -% $ tar xzvf path_to_tarball_of/dune-common-2.5.0.tar.gz -% $ tar xzvf path_to_tarball_of/dune-geometry-2.5.0.tar.gz -% $ tar xzvf path_to_tarball_of/dune-grid-2.5.0.tar.gz -% $ tar xzvf path_to_tarball_of/dune-istl-2.5.0.tar.gz -% $ tar xzvf path_to_tarball_of/dune-localfunctions-2.5.0.tar.gz -% $ tar xzvf path_to_tarball_of/dumux-3.0-alpha.tar.gz -% \end{lstlisting} -% -% Furthermore, if you wish to install the optional \Dune Grid-Howto which provides a tutorial -% on the Dune grid interface, act similar. +\paragraph{Obtaining the software by installing tar files} +The slightly old-fashionedly named tape-archive-file, shortly named tar file or +tarball, is a common file format for distributing collections of files contained +within these archives. +The extraction from the tar files is done as follows: +Download the tarballs from the respective \Dune (version 2.6) and \Dumux websites +to a certain folder in your file system. +Create the common root directory, named \texttt{DUMUX} in the example below. +Then extract the content of the tar files, e.\,g. with the command-line program +\texttt{tar}. +This can be achieved by the following shell commands. Replace \texttt{path\_to\_tarball} +with the directory name where the downloaded files are actually located. +After extraction, the actual name of the dumux subdirectory is \texttt{dumux-\DumuxVersion} +(or whatever version you downloaded). + +\begin{lstlisting}[style=Bash] +$ mkdir DUMUX +$ cd DUMUX +$ tar xzvf path_to_tarball_of/dune-common-2.6.0.tar.gz +$ tar xzvf path_to_tarball_of/dune-geometry-2.6.0.tar.gz +$ tar xzvf path_to_tarball_of/dune-grid-2.6.0.tar.gz +$ tar xzvf path_to_tarball_of/dune-istl-2.6.0.tar.gz +$ tar xzvf path_to_tarball_of/dune-localfunctions-2.6.0.tar.gz +$ tar xzvf path_to_tarball_of/dumux-3.0.tar.gz +\end{lstlisting} + +Furthermore, if you wish to install the optional \Dune Grid-Howto which provides a tutorial +on the Dune grid interface, act similar. \paragraph{Obtaining \Dune and \Dumux from software repositories} Direct access to a software revision control system for downloading code can be of advantage later on. @@ -93,48 +93,50 @@ one for \Dune and one for \Dumux. \begin{lstlisting}[style=Bash] $ mkdir DUMUX $ cd DUMUX -$ git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-common.git -$ git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-geometry.git -$ git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-grid.git -$ git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-istl.git -$ git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-localfunctions.git -$ git clone -b 3.0.0-alpha https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git +$ git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-common.git +$ git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-geometry.git +$ git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-grid.git +$ git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-istl.git +$ git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-localfunctions.git +$ git clone -b releases/3.0 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git \end{lstlisting} The newest and maybe unstable developments of \Dune and \Dumux are also provided in these repositories and can be found in the \emph{master} branch. Please check the \Dune website \cite{DUNE-HP} for further information on the \Dune development. We always try to keep up with the latest developments of \Dune. -However, the current \Dumux release is based on the stable 2.5 release and it might not compile without further adaptations using the newest versions of \Dune. +However, the current \Dumux release is based on the stable 2.6 release and it might not compile without further adaptations using the newest versions of \Dune. Furthermore, if you wish to install the optional \Dune Grid-Howto which provides a tutorial on the Dune grid interface, act similar. -\paragraph{Patching \Dune or external libraries} -\label{sc:patchingDUNE} -Patching of \Dune modules in order to work together with \Dumux can be necessary for several reasons. -Software like a compiler or even a standard library -changes at times. But, for example, a certain release of a software component that we depend on, -may not reflect that change and thus it has to be modified. -In the dynamic developing process of software which depends on other modules it is not always feasible -to adapt everything to the most recent version of each module. They may fix problems with a certain module -of a certain release without introducing too much structural change. - -\Dumux contains patches and documentation about their usage and application within the -directory \texttt{dumux/patches}. -Please check the README file in that directory for recent information. -In general, a patch can be applied as follows -(the exact command or the used parameters may be slightly different). -We include here an example of a patching dune-grid. - -\begin{lstlisting}[style=Bash] -$ # make sure you are in the common root directory -$ cd dune-grid -$ patch -p0 < ../dumux/patches/grid-2.3.1.patch -\end{lstlisting} - -It can be removed by -\begin{lstlisting}[style=Bash] -$ path -p0 -R < ../dumux/patches/grid-2.3.1.patch -\end{lstlisting} +%TODO:currently, no DUNE patches necessary! Uncomment this section in case this changes again in the future. +% +% \paragraph{Patching \Dune or external libraries} +% \label{sc:patchingDUNE} +% Patching of \Dune modules in order to work together with \Dumux can be necessary for several reasons. +% Software like a compiler or even a standard library +% changes at times. But, for example, a certain release of a software component that we depend on, +% may not reflect that change and thus it has to be modified. +% In the dynamic developing process of software which depends on other modules it is not always feasible +% to adapt everything to the most recent version of each module. They may fix problems with a certain module +% of a certain release without introducing too much structural change. +% +% \Dumux contains patches and documentation about their usage and application within the +% directory \texttt{dumux/patches}. +% Please check the README file in that directory for recent information. +% In general, a patch can be applied as follows +% (the exact command or the used parameters may be slightly different). +% We include here an example of a patching dune-grid. +% +% \begin{lstlisting}[style=Bash] +% $ # make sure you are in the common root directory +% $ cd dune-grid +% $ patch -p0 < ../dumux/patches/grid-2.3.1.patch +% \end{lstlisting} +% +% It can be removed by +% \begin{lstlisting}[style=Bash] +% $ path -p0 -R < ../dumux/patches/grid-2.3.1.patch +% \end{lstlisting} \paragraph{Hints for \Dumux-Developers} If you also want to actively participate in the development of \Dumux, you can allways send patches @@ -144,14 +146,14 @@ access or for developer access on certain parts of \Dumux. Granted developer acc you are allowed to commit own code and that you can access the \texttt{dumux-devel} module. This enhances \texttt{dumux} by providing maybe unstable code from the developer group. -\subsection{Build of \Dune and \Dumux} +\section{Build of \Dune and \Dumux} \label{buildIt} Configuring \Dune and \Dumux is done by the shell-command \texttt{dunecontrol} which is part of the \Dune build system. If you are interested in more details about the build system that is used, they can be found in the \Dune buildsystem documentation\footnote{\url{https://www.dune-project.org/buildsystem/}} and CMake's documentation\footnote{\url{https://cmake.org/documentation/}}. If something fails during the execution of \texttt{dunecontrol} feel free to report it to the \Dune or \Dumux developer mailing list, -but also try to include error details. +but please include error details. It is possible to compile \Dumux with nearly no explicit options to the build system. However, for the successful compilation of \Dune and \Dumux, it is currently necessary to pass @@ -178,7 +180,7 @@ $ cp dumux/optim.opts my-optim.opts $ ./dune-common/bin/dunecontrol --opts=my-optim.opts --use-cmake all \end{lstlisting} -Sometimes it is necessary to have additional options which +Sometimes, it is necessary to have additional options which are specific to a package set of an operating system or sometimes you have your own preferences. Feel free to work with your own set of options, which may evolve over time. @@ -188,12 +190,11 @@ The use of external libraries can make it necessary to add quite many options in It can be helpful to give your customized option file its own name, as done above, to avoid confusing it with the option files which came out of the distribution. -\subsection{The First Run of a Test Application} +\section{The First Run of a Test Application} \label{quick-start-guide} -The previous section showed how to install and compile \Dumux. This chapter +The previous section showed how to install and compile \Dumux. This section shall give a very brief introduction how to run a first test application and how -to visualize the first output files. A more detailed explanations can be found in -the tutorials in the following chapter.\\ +to visualize the first output files.\par All executables are compiled in the \texttt{build} subdirectories of \Dumux. If not given differently in the input files, this is \texttt{build-cmake} as default. @@ -201,15 +202,14 @@ If not given differently in the input files, this is \texttt{build-cmake} as def \item Go to the directory \texttt{build-cmake/test}. There, various test application folders can be found. Let us consider as example\\ \texttt{porousmediumflow/2p/implicit/incompressible/test{\_}2p{\_}incompressible{\_}tpfa}. -\item Enter the folder \texttt{porousmediumflow/2p/implicit/incompressible}.\\ Type \texttt{make test{\_}2p{\_}incompressible{\_}tpfa} - in order to compile the application\\ \texttt{test{\_}2p{\_}incompressible{\_}tpfa}. To run the simulation, - type \texttt{./test{\_}2p{\_}incompressible{\_}tpfa} - into the console. If you explicitly want to state a parameter file, type\\ - \texttt{./test{\_}2p{\_}incompressible{\_}tpfa test\_2p.input}. - Adding \texttt{test\_2p.input} specifies that all - important parameters (like first timestep size, end of simulation and location +\item Enter the folder \texttt{porousmediumflow/2p/implicit/incompressible}.\\ Type \texttt{make test{\_}2p{\_}incompressible{\_}tpfa} + in order to compile the application\\\texttt{test{\_}2p{\_}incompressible{\_}tpfa}. To run the simulation, + type \texttt{./test{\_}2p{\_}incompressible{\_}tpfa params.input} + into the console. + The added \texttt{params.input} specifies that all + important run-time parameters (like first timestep size, end of simulation and location of the grid file) can be found in a text file in the same directory with the - name \texttt{test\_2p.input}. + name \texttt{params.input}. \item The simulation starts and produces some .vtu output files and also a .pvd file. The .pvd file can be used to examine time series and summarizes the .vtu files. It is possible to stop a running application by pressing $<$Ctrl$><$c$>$. @@ -218,8 +218,14 @@ If not given differently in the input files, this is \texttt{build-cmake} as def .pvd file. On the left hand side, you can choose the desired parameter to be displayed. \end{enumerate} -\subsection{Building Documentation} -\subsubsection{Doxygen} +\section{Building Documentation} + +The building of included documentation like this handbook requires \LaTeX{} and auxiliary tools +\texttt{bibtex}. One usually chooses a \LaTeX{} distribution like \texttt{texlive} for this purpose. +It is possible to switch off the building of the documentation by setting the switch \texttt{--disable-documentation} +in the \texttt{CONFIGURE\_FLAGS} of the building options, see section \ref{buildIt}. + +\subsection{Doxygen} \label{sec:build-doxy-doc} Doxygen documentation is done by especially formatted comments integrated in the source code, which can get extracted by the program \texttt{doxygen}. Beside extracting these comments, @@ -232,12 +238,12 @@ by running \texttt{dunecontrol}, entering the \texttt{build-*}directory, and exe \texttt{MODULE\_BUILD\_DIRECTORY/doc/doxygen/html/index.html} to read the generated documentation. This should also work for other \Dune modules. -\subsubsection{Handbook} +\subsection{Handbook} To build the \Dumux handbook go into the \texttt{build-}directory and run \texttt{make doc} or \texttt{make 0\_dumux-handbook\_pdf}. The pdf can then be found in \texttt{MODULE\_BUILD\_DIRECTORY/doc/handbook/0\_dumux-handbook.pdf}. -\subsection{External Libraries and Modules} \label{sec:external-modules-libraries} +\section{External Libraries and Modules} \label{sec:external-modules-libraries} The libraries described below provide additional functionality but are not generally required to run \Dumux. If you are going to use an external library check the information provided on the \Dune website% \footnote{DUNE: External libraries, \url{https://www.dune-project.org/doc/external-libraries/}}. @@ -259,7 +265,7 @@ An easy way to install some of the libraries and modules given below is the has to be called from your common root directory. -\subsubsection{List of External Libraries and Modules} +\subsection{List of External Libraries and Modules} In the following list, you can find some external modules and external libraries, and some more libraries and tools which are prerequisites for their use. @@ -274,6 +280,19 @@ and some more libraries and tools which are prerequisites for their use. of choice for simulating structures such as foams, discrete fracture networks, or network flow problems. Download: \url{https://gitlab.dune-project.org/extensions/dune-foamgrid} + +\item \textbf{opm-grid}: opm-grid is a DUNE module supporting grids in a corner-point format. + Download: \url{https://github.com/OPM/opm-grid.git} + +\item \textbf{dune-subgrid}: The dune-subgrid module is a meta-grid implementation that allows +to mark elements of another hierarchical dune grid and use this sub-grid just like a regular grid. +The set of marked elements can then be accessed as a hierarchical dune grid in its own right. +Dune-Subgrid provides the full grid interface including adaptive mesh refinement. + Download: \url{https://git.imp.fu-berlin.de/agnumpde/dune-subgrid.git} + +\item \textbf{dune-spgrid}: The DUNE module dune-spgrid provides a structured, parallel grid +and supports periodic boundary conditions. + Download: \url{https://gitlab.dune-project.org/extensions/dune-spgrid.git} \item \textbf{SuperLU}: External library for solving linear equations. SuperLU is a general purpose library for the direct solution of large, sparse, non-symmetric systems of linear equations. diff --git a/doc/handbook/2_quickinstall.tex b/doc/handbook/2_quickinstall.tex index 91a4139a886b9fe9c24338d7d5fc9ad3df1f82c5..9235e5c59d8a8b5759827e5c9568da5affb3d0d6 100644 --- a/doc/handbook/2_quickinstall.tex +++ b/doc/handbook/2_quickinstall.tex @@ -1,13 +1,10 @@ -\section{Quick Installation of \Dumux} -\label{quick-install} - -This section only provides one quick way of installing \Dumux. +This chapter provides one quick way of installing \Dumux. You should have a recent working Linux environment and no \Dune core modules should be installed. If you need more information or have \Dune already installed, please have a look at the detailed installation -instructions in Section \ref{install}. +instructions in the more detailed intructions in the next chapter \ref{detailed-install}. -\subsection{Prerequisites} \label{sec:prerequisites} +\section{Prerequisites} \label{sec:prerequisites} For this quick start guide the following software packages are required: \begin{itemize} \item GitLab client @@ -17,12 +14,7 @@ For this quick start guide the following software packages are required: \item paraview (to visualize the results) \end{itemize} -The building of included documentation like this handbook requires \LaTeX{} and auxiliary tools -\texttt{bibtex}. One usually chooses a \LaTeX{} distribution like \texttt{texlive} for this purpose. -It is possible to switch off the building of the documentation by setting the switch \texttt{--disable-documentation} -in the \texttt{CONFIGURE\_FLAGS} of the building options, see Chapter \ref{buildIt}. - -\subsection{Obtaining code and configuring all modules with a script} +\section{Obtaining code and configuring all modules with a script} We provide you with a shell-script \texttt{installDumux.sh} that facilitates setting up a {\Dune}/{\Dumux} directory tree and configures all modules with CMake. % TODO: uncomment/delete the following lines when next is the only release @@ -36,7 +28,7 @@ root folder \texttt{DUMUX} will be produced, so you do not need to provide one). Run the script by typing into the terminal: \texttt{./installDumux.sh} Configuring \Dune and \Dumux is done by the command-line script \texttt{dunecontrol} -using optimized configure options, see the line entitled \texttt{\# run build} in the \texttt{installDumux.sh} script. +using optimized configure options, see the line entitled \texttt{\# run build} in the \texttt{installDumux.sh} script. More details about the build-system can be found in section \ref{buildIt}. \subsection{A first test run of \Dumux} @@ -51,4 +43,4 @@ make -B test_1pcctpfa paraview *pvd \end{lstlisting} The script \texttt{test\_dumux.sh} can be executed by typing into the terminal: \texttt{./test\_dumux.sh}. -If everything works fine, a paraview-window with the result should open automatically. +If everything works fine, a paraview window with the result should open automatically. diff --git a/doc/handbook/3_course.tex b/doc/handbook/3_course.tex new file mode 100644 index 0000000000000000000000000000000000000000..6624f677239e5d3c673a711c39ee6f8324378078 --- /dev/null +++ b/doc/handbook/3_course.tex @@ -0,0 +1,42 @@ +So, you've downloaded your very own copy of \Dumux and its dependencies. +You've run dunecontrol, and your example ``test$\_$dumux" not only compiles, +but it even shows a nice simulation in paraview. +Maybe you've read through parts of the handbook, and even started looking +through the doxygen documentation. +Well done. What now? \par +% +\textit{``How on earth is this going to help me solve my multi-(phase, component, +scale, physics) flow and transport problems in porous media systems?''}, you begin to wonder. +Don't panic! In order to best ease our prospective users and developers into the +wonderful \Dumux simulation environment, we've prepared a \Dumux course. +This course is offered once a year over a period of 3 days at the University of Stuttgart. +If you're looking for information on attending, subscribe to the \Dumux mailing list +and stay tuned for updates: +\url{https://listserv.uni-stuttgart.de/mailman/listinfo/dumux}. \par +% +\textit{``But the course won't take place for another 6 months!"} and, +\textit{``I want to start developing a numerical model of my challenging and + interesting process now!"}, you think. +Not a problem. The course materials are all shared online in their own +git repository. A series of beginner-level exercises are explained +such that you can see how a model is developed in \Dumux. As a teaser, we've + also included a suite of examples from hot topics we're working on. Models + exploring ``Coupling free flow and porous-media flow", ``Flow in fractured + porous media" and ``Fluid-solid phase change" are all introduced. \par + % +\textit{``Sounds great, but where is this material? I can't find it within +what I've downloaded."}, you question. +The \Dumux course material is available online: +\url{https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course}. \par +In order to download this repository, which acts as an additional module to +the \Dumux base, you can download an installation script with the following command: +\begin{lstlisting}[style=Bash] +$ wget https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/raw/releases/3.0/scripts/install.sh +\end{lstlisting} +This script will install \texttt{dumux}, it's Dune dependencies, and the \texttt{dumux-course} +repository. Within the directory \texttt{dumux-course} there are a series of exercises +and slides describing the previously described examples. \par +% +The \Dumux course will be updated with each \Dumux release. +The above script will download the correct version (\textbf{releases/3.0}) of both +the \texttt{dumux} and \texttt{dumux-course} module. diff --git a/doc/handbook/3_tutorial.tex b/doc/handbook/3_tutorial.tex deleted file mode 100644 index b31d3a39f357a5c524e26bd7c60d6b387a52cd49..0000000000000000000000000000000000000000 --- a/doc/handbook/3_tutorial.tex +++ /dev/null @@ -1,2 +0,0 @@ -The tutorial provides instructions ranging from how to set boundary conditions in \Dumux to how to set up your own \Dumux module. -Go to the directory \texttt{tutorial} in the \texttt{dumux} module and read the \texttt{README.md} (best to be opened in a web browser) for instructions on the tutorial. diff --git a/doc/handbook/4_developingdumux.tex b/doc/handbook/4_developingdumux.tex index e5c02ee1cbc6174a20b4d876f7b8d02aed99365b..c6ee4c559b5f9d83b3dac188f082f0ca936827a9 100644 --- a/doc/handbook/4_developingdumux.tex +++ b/doc/handbook/4_developingdumux.tex @@ -25,6 +25,13 @@ You can subscribe to the mailing list via \url{https://listserv.uni-stuttgart.de/mailman/listinfo/dumux}, then you will be informed about upcoming releases or events. +\subsection{Coding Guidelines} +Writing code in a readable manner is very important, especially +for future code developers (e.g. for adding features, debugging, etc.). +For the style guide and instructions how to contribute to \Dumux visit +\url{https://git.iws.uni-stuttgart.de/dumux-repositories/dumux/blob/master/CONTRIBUTING.md}. + + \subsection{Tips and Tricks} \Dumux users and developers at the LH2 are also referred to the internal Wiki for more information. @@ -34,7 +41,7 @@ more information. The options needed to be specified for that are provided using option files like \texttt{debug.opts} and \texttt{optim.opts}. These two compile \Dune and \Dumux either for debugging or for fast simulation. Programs compiled with optimization options -can lead to a speedup of factor up to ten!\\ +can lead to a speedup of factor up to ten!\par In contrast programs that are compiled with optimization can hardly be debugged. You can modify the files and change the compiler, the name of the build director, add third-party dependencies, add additional compiler flags, ... . @@ -64,7 +71,10 @@ To apply a patch in the same directory type: \begin{lstlisting}[style=Bash] $ patch -p1 < PATCHFILE \end{lstlisting} -See \ref{sc:patchingDUNE} if you need to apply patches to \Dumux or \Dune. + +%TODO: currently, no DUNE patches necessary! Thus, this section is commented and the missing refrence would be bad. +% Uncomment the following statement again when patches might be necessary. +% See \ref{sc:patchingDUNE} if you need to apply patches to \Dumux or \Dune. \paragraph{File Name and Line Number by Predefined Macro} If you want to know where some output or debug information came from, use the predefined @@ -98,9 +108,3 @@ To check one header file for all necessary includes to compile the contained cod Include the option \texttt{-DENABLE\_HEADERCHECK=1} in your opts file and run \texttt{dunecontrol}. Then go to the top level in your build-directory and type \texttt{make headercheck} to check all headers or press 'tab' to use the auto-completion to search for a specific header. - -\paragraph{Naming conventions} -General guidelines for naming conventions are specified in Section \ref{sc_guidelines}. -However, in order to avoid ambiguity a list of proposed names for variables, types, -functions etc is provided where users and mainly \Dumux developers can refer for -standards (check \texttt{dumux-devel/\allowbreak doc/\allowbreak naminglist/\allowbreak naming-conventions.odt}). diff --git a/doc/handbook/4_externaltools.tex b/doc/handbook/4_externaltools.tex index 875b70559bea1eb67e4837c45f16cb1af699a5e5..8085a37e0d190cf7d48d64f69a350ff104b76153 100644 --- a/doc/handbook/4_externaltools.tex +++ b/doc/handbook/4_externaltools.tex @@ -30,9 +30,42 @@ The basic Git commands are: \subsection{Gnuplot} +\label{gnuplot} A gnuplot interface is available to plot or visualize results during a simulation run. This is achieved with the help of the class provided in \texttt{io/gnuplotinterface.hh}. -Have a look at tests including this header for examples how to use this interface. + +To use the gnuplot interface you have to make some modifications in your file, e.g., your main file. + +First, you have to include the corresponding header file for the gnuplot interface. +\begin{lstlisting}[style=DumuxCode] +#include <dumux/io/gnuplotinterface.hh +\end{lstlisting} + +Second, you have to define an instance of the class GnuplotInterface (e.g. called \texttt{gnuplot}). +\begin{lstlisting}[style=DumuxCode] +Dumux::GnuplotInterface<double> gnuplot; +\end{lstlisting} + +As an example, to plot the mole fraction of nitrogen (\texttt{y}) over time (\texttt{x}), +extract the variables after each time step in the time loop. +The actual plotting is done using the method of the gnuplot interface: + +\begin{lstlisting}[style=DumuxCode] +gnuplot.resetPlot(); // reset the plot +gnuplot.setXRange(0.0, 72000.0); // specify xmin and xmax +gnuplot.setYRange(0.0, 1.0); // specify ymin and ymax +gnuplot.setXlabel("time [s]"); // set xlabel +gnuplot.setYlabel("mole fraction mol/mol"); // set ylabel + +// set x-values, y-values, the name of the data file and the Gnuplot options +gnuplot.addDataSetToPlot(x, y, "N2.dat", options); + +gnuplot.plot("mole_fraction_N2"); // set the name of the output file +\end{lstlisting} + +It is also possible to add several data sets to one plot by calling \texttt{addDataSetToPlot()} more than once. +For more information have a look into a test including the gnuplot interface header file or +the header file itself (\texttt{dumux/io/gnuplotinterface.hh}). \subsection{Gstat} diff --git a/doc/handbook/4_guidelines.tex b/doc/handbook/4_guidelines.tex deleted file mode 100644 index a815a27197c9c883826c1b7460c2b729db45d3b0..0000000000000000000000000000000000000000 --- a/doc/handbook/4_guidelines.tex +++ /dev/null @@ -1,6 +0,0 @@ -\section{Coding Guidelines} -\label{sc_guidelines} -Writing code in a readable manner is very important, especially -for future code developers (e.g. for adding features, debugging, etc.). -For the style guide and instructions how to contribute to \Dumux visit -\url{https://git.iws.uni-stuttgart.de/dumux-repositories/dumux/blob/master/CONTRIBUTING.md}. diff --git a/doc/handbook/4_newfoldersetup.tex b/doc/handbook/4_newfoldersetup.tex index c1700cd9a09937afa0048f9c1de08b201208c2bb..9490c9ef2a01bf5eb37c7d882c67927a5a5f2654 100644 --- a/doc/handbook/4_newfoldersetup.tex +++ b/doc/handbook/4_newfoldersetup.tex @@ -13,12 +13,15 @@ the build system there is a new one. \end{enumerate} \paragraph{Adding new Test Programs} -\noindent To add a test use the \texttt{add\_dumux\_test} macro. -The command has four arguments: -\begin{enumerate}[1)] - \item name of test (has to be unique) - \item name of executable - \item source file (*.cc) - \item command to be executed as test - either the executable or a - some helper script with arguments -\end{enumerate} +\noindent To add a test use the \texttt{add\_dune\_test} macro within the \texttt{CMakeList.txt} file. +The macro can be used with a variable amount of arguments. A simple call could look like this: + +\begin{lstlisting}[style=DumuxCode] +dune_add_test(NAME my_test + SOURCES mainfile.cc + CMD_ARGS my_test params.input) +\end{lstlisting} + +Here, we create an executable called \texttt{my\_test} from a source file \texttt{mainfile.cc}. +The name of the test will also be \texttt{my\_test} (has to be unique). The last argument specifies a command - here, we just run the executbable \texttt{my\_test} with an input file \texttt{params.input}. For more advanced uses of +the \texttt{add\_dune\_test} macro, have a look at the \texttt{test} directory. A complete documentation is given under \url{https://www.dune-project.org/sphinx/core-2.5/}. diff --git a/doc/handbook/4_parameterfiles.tex b/doc/handbook/4_parameterfiles.tex index df325e477a878c6592c4cfdfd58dcdacdd9bb5eb..7bddd051edf5d17921a91bba13819a3705279312 100644 --- a/doc/handbook/4_parameterfiles.tex +++ b/doc/handbook/4_parameterfiles.tex @@ -5,9 +5,7 @@ A list of all available parameters is provided in the Doxygen documentation: \te After having run the example application from section \ref{quick-start-guide} you will get the following output at the end of the simulation run -\footnote{If you did not get the output, restart the application the following way: -\texttt{./test{\_}2p{\_}incompressible{\_}tpfa test{\_}2p.input -PrintParameters true}, -this will print the parameters once your simulation is finished}: +\footnote{If you did not get the output, add \texttt{Parameters::print();} to your main file.}: \begin{lstlisting}[style=Bash] # Runtime-specified parameters used: [ Grid ] @@ -24,8 +22,9 @@ DtInitial = "250" TEnd = "3000" # Default parameters used: -[ Implicit ] +[ Assembly ] NumericDifferenceMethod = "1" +[ Flux ] UpwindWeight = "1.0" [ LinearSolver ] MaxIterations = "250" @@ -64,20 +63,33 @@ A number of things can be learned: \subsection{Parameter Values} -If you want to get the value of a parameter please use: +To get the value of an input parameter please use: \begin{lstlisting}[name=propsyscars,style=DumuxCode] -paramname_ = getParam<TYPE>("GROUPNAME.PARAMNAME"); +static const TYPE paramname = getParam<TYPE>("GROUPNAME.PARAMNAME"); \end{lstlisting} If you also want to set a default value for a parameter, just add it like this: \begin{lstlisting}[name=propsyscars,style=DumuxCode] -paramname_ = getParam<TYPE>("GROUPNAME.PARAMNAME", default); +static const TYPE paramname = getParam<TYPE>("GROUPNAME.PARAMNAME", default); \end{lstlisting} -For further information you can also look at the \Dumux tutorial, especially exercise 1. +As this function call is relatively expensive, the respective variables should always be \texttt{static} (e.g., if used in a loop). When dealing with multiple group names, e.g., in the context of coupled models, the fowolling methods might be more convenient: -All applications have a help message which you can read by giving -\texttt{--help} as a command line argument to the application. -For further details, please have a look at \texttt{Dune::ParameterTree} -in the \Dune documentation. +\begin{lstlisting}[name=propsyscars,style=DumuxCode] +auto modelParamGroup0 = "Model0"; +static const TYPE paramname0 = getParamFromGroup<TYPE>(modelParamGroup0, "GROUPNAME.PARAMNAME"); +auto modelParamGroup1 = "Model1"; +static const TYPE paramname1 = getParamFromGroup<TYPE>(modelParamGroup1, "GROUPNAME.PARAMNAME"); +\end{lstlisting} + +The \texttt{FVProblem} class provides a convenience function \texttt{paramGroup()}. + +The parameters can then be specified in the input file: + +\begin{lstlisting}[style=Bash] +[ Model0.Grid ] +File = file0.dgf +[ Model1.Grid ] +File = file1.dgf +\end{lstlisting} diff --git a/doc/handbook/4_restartsimulations.tex b/doc/handbook/4_restartsimulations.tex index 30ce43199130c08f732e92fc3fff16ff43d8272e..fbd12fe9f9804268b218c330928e3aa5fa66c66a 100644 --- a/doc/handbook/4_restartsimulations.tex +++ b/doc/handbook/4_restartsimulations.tex @@ -1,26 +1,19 @@ \section{Restart \Dumux Simulations} \label{sc_restartsimulations} -Restart is currently not available in the \DumuxVersion~release. We are working on it! -% You can restart the simulation -% from a specific point in time or extend the simulation beyond the originally -% end of simulation. What you need is a \texttt{*.drs} file (which contains the -% all necessary restart information. -% Then you can simply restart a simulation via -% \begin{lstlisting}[style=Bash] -% ./test_program -TimeManager.Restart RESTART_TIME -% \end{lstlisting} -% To test restart behavior, use the \texttt{test\_box1p2cni} problem -% in the \texttt{test/implicit/1p2c} folder. -% You get the \texttt{RESTART\_TIME} from the name of your \texttt{.drs} file. -% Restarting will only work when the exact time from an existing restart file is given. -% If you need more restart files, you can change the frequency -% by including the function into your problem: -% \begin{lstlisting}[style=DumuxCode] -% // Writes a restart file every 5th time step -% bool shouldWriteRestartFile() const -% { -% return (this->timeManager().timeStepIndex() % 5 == 0); -% } -% \end{lstlisting} +\Dumux has some experimental support for check-pointing (restarting paused/stopped/crashed simulations). +You can restart a \Dumux simulation from any time point where a VTK file was written out. +This is currently only supported for sequential, non-adaptive simulations. For adaptive simulation +the full hierarchical grid has to be stored. This is usually done with the grid's \texttt{BackupRestoreFacility}. +There is currently no special support by \Dumux for that, but it is possible to implement +a restart using \texttt{BackupRestoreFacility} with plain Dune. +For VTK files the output can be read with the free function \texttt{loadSolution}. Grids can be read with +the \texttt{Dumux::VTKReader} or you can simply recreate the grid as you did in the first simulation run. + +Unfortunately, writing double-precision floating point numbers to VTK files is only available with Dune master (will be in 2.7). +That's why we currently only support single precision restart, meaning some information will be lost if you are computing +in double precision. + +The restart capabilities will hopefully be improved in future versions of \Dumux 3. +We are happy about any contributions (especially HDF5 / XDMF support, improvement of VTK support). diff --git a/doc/handbook/4_structure.tex b/doc/handbook/4_structure.tex index 649eb2f79a08ee53ce60c43b7fa35f94d90c6dcc..0c1dfbf496f70e3371377bbca87afd2a250113e6 100644 --- a/doc/handbook/4_structure.tex +++ b/doc/handbook/4_structure.tex @@ -15,7 +15,6 @@ \texttt{*.cc}, the problem definition \texttt{*problem.hh}, and an input file \texttt{*.input}. If necessary, spatially dependent parameters are defined in \texttt{*spatialparameters.hh}. For more detailed descriptions of the tests, please have a look at the Doxygen documentation. -\item \texttt{tutorial}: contains the tutorials. \end{itemize} \begin{figure} @@ -71,20 +70,16 @@ [.\node[SecondLevel] {properties}; \node[ThirdLevel] {Base properties for all models.}; ] + [.\node[SecondLevel] {typetraits}; + \node[ThirdLevel] {Helper classes to query type information on compile-time. }; + ] ] [.\node[FirstLevel] {discretization}; -% [.\node[SecondLevel] {\emph{models}}; - \node[ThirdLevel] {Common methods for all discretizations: variable caching, advective and diffusive fluxes, upwinding...}; -% ] - [.\node[SecondLevel] {box}; - \node[ThirdLevel] {Specific files for the box finite volume method: - specifications for advective and diffusive fluxes...}; - ] - [.\node[SecondLevel] {cellcentered}; - \node[ThirdLevel] {Specific files for cell centered finite volume methods.}; - ] - [.\node[SecondLevel] {staggered}; - \node[ThirdLevel] {Specific files for staggered finite volume method.}; + \node[ThirdLevel] {Common methods for all discretizations (box, cell-centered TPFA/MPFA, staggered grid): variable caching, advective and diffusive fluxes, ...}; + ] + [.\node[FirstLevel] {flux}; + [\node[ThirdLevel] { + Collection of classes used to calculate advective and diffusive fluxes.}; ] ] [.\node[FirstLevel] {freeflow}; @@ -93,6 +88,11 @@ and eddy-viscosity based Reynolds-averaged Navier-Stokes turbulence models.}; ] ] + [.\node[FirstLevel] {geomechanics}; + [.\node[SecondLevel] {\emph{models}}; + \node[ThirdLevel] {Elastic and poro-elastic geomechanics models.}; + ] + ] [.\node[FirstLevel] {io}; \node[ThirdLevel] {Additional in-/output possibilities like restart files, gnuplot-interface, VTKWriter extensions and files for grid generation.}; @@ -126,28 +126,35 @@ ] [.\node[SecondLevel] {fluidstates}; \node[ThirdLevel] {Fluid states are responsible for caching the thermodynamic - configuration of a system at a given spatial and temporal position.}; + configuration of a fluid system at a given spatial and temporal position.}; ] [.\node[SecondLevel] {fluidsystems}; \node[ThirdLevel] {Fluid systems express the thermodynamic relations between quantities.}; ] + [.\node[SecondLevel] {solidstates}; + \node[ThirdLevel] {Solid states are responsible for caching the thermodynamic + configuration of a solid system at a given spatial and temporal position.}; + ] + [.\node[SecondLevel] {solidsystems}; + \node[ThirdLevel] {Solid systems express the thermodynamic properties of a solid.}; + ] [.\node[SecondLevel] {spatialparams}; \node[ThirdLevel] {Base class for all spatially dependent variables, like permeability and porosity. Includes spatial averaging routines. All other properties are specified in the specific files of the respective models.}; ] ] - [.\node[FirstLevel] {mixeddimension}; + [.\node[FirstLevel] {multidomain}; \node[ThirdLevel] { - Coupled model with different dimensions.}; + Common infrastructure to couple multiple domains, models or physics.}; [.\node[SecondLevel] {embedded}; - \node[ThirdLevel] {Embedded mixed dimension method.}; + \node[ThirdLevel] {Embedding of a lower-dimensional model into a higher-dimensional one}; ] [.\node[SecondLevel] {facet}; - \node[ThirdLevel] {Facet mixed dimension method.}; + \node[ThirdLevel] {Mixed-dimensional coupling at facets.}; ] - [.\node[SecondLevel] {glue}; - \node[ThirdLevel] {Grid glue backend.}; + [.\node[SecondLevel] {boundary}; + \node[ThirdLevel] {Coupling at the domain boundaries.}; ] ] [.\node[FirstLevel] {nonlinear}; diff --git a/doc/handbook/5_grids.tex b/doc/handbook/5_grids.tex deleted file mode 100644 index aaad10db862fd27761bcd521b3b5fbfdd3ee025b..0000000000000000000000000000000000000000 --- a/doc/handbook/5_grids.tex +++ /dev/null @@ -1,137 +0,0 @@ -\section{Grid Handling} -\label{sec:gridhandling} - -This section summarizes some ideas about grid generation and grid formats that can be used by \Dumux. In general, -\Dumux can read grids from file, or, construct grids inside the code. All grids are constructed inside a so called \texttt{GridCreator} which is a \Dumux property. -Note that some \texttt{GridCreator}s are already available in \Dumux, so e.g. -construction of a structured grid is fairly easy. We will subsequently introduce the supported file formats, the standard grid creator and its capabilities, -and briefly mention how to customize and deal with common other grid formats. - -\subsection{Supported file formats} -\Dumux can read grids from file using the Dune Grid Format (DGF) or the Gmsh mesh format. - -\subsubsection{Dune Grid Format} -Most of our \Dumux tests and tutorials use the Dune Grid Format (DGF) to read in grids. A detailed description -of the DGF format and some examples can be found in the \Dune doxygen documentation -\textbf{(Modules $\rightarrow$ I/O $\rightarrow$ Dune Grid Format (DGF)}). To generate larger or more -complex DGF files, we recommend to write your own scripts, e.g in \Cplusplus, Matlab or Python. - -The DGF format can also used to read in spatial parameters defined on the grid. These parameters can -be defined on nodes as well as on the elements. An example for predefined parameters on a grid -can be found in the \texttt{dumux/test/porousmediumflow/co2/implicit/} folder. - -\subsubsection{Gmsh Mesh Format} -Gmsh is an open-source flexible grid generator for unstructured finite-element meshes (\cite{GEUZAINE2009}, \url{http://geuz.org/gmsh/}). -\Dumux supports the default Gmsh mesh format (MSH). For the format specifics and how to create grids with Gmsh, e.g. using -the provided GUI, we refer to the Gmsh documentation (\url{http://geuz.org/gmsh/doc/texinfo/gmsh.html}). - -The MSH format can contain element and boundary markers defined in the grid. Thus, boundaries can be easily marked as e.g. inflow boundaries -using Gmsh. Further, the format supports higher order elements. They can be used to create boundary parameterization supported by e.g. the grid -manager \texttt{UGGrid}. -An example can be found in \texttt{dumux/test\allowbreak/io/gridcreator}. - - - -\subsection{The default \texttt{GridCreator}} -The default \texttt{GridCreator} is called \texttt{GridCreator} and is automatically avaible in all problems. -It can construct grids from a DGF file (*.dgf) by simply providing the filename to the grid in the \texttt{Grid} group~\footnote{Note -that group name \texttt{Grid} is the default group name and can be customized in your problem changing the string property \texttt{GridParameterGroup}. -This way it is possible, e.g. for problems with more than one grid, to set different group names for each grid, thus configuring them separately.} -of the input file: -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -File = mydgfgrid.dgf -\end{lstlisting} -If you are using an unstructured grid manager like \texttt{UGGrid} or \texttt{ALUGrid}, constructing a grid from a Gmsh mesh file (*.msh) is just changing a line: -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -File = mygmshgrid.msh -\end{lstlisting} -\Dumux will tell you in case your selected grid manager does not support reading Gmsh files. You want to intially refine your grid? It's just adding a line: -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -File = mydgfgrid.dgf -Refinement = 4 -\end{lstlisting} -When reading a Gmsh file, further parameters are recognized. \texttt{Verbose} enables verbose output on grid construction when set to $1$. -\texttt{BoundarySegments} enables reading parametrized boundaries. \texttt{PhysicalEntities} enables reading boundary and element flags. - -\subsubsection{Grid manager specific parameters} -The default \texttt{GridCreator} supports also a selection of grid specific parameters. -To give an example we look at the commonly used unstructured grid manager \texttt{UGGrid}. -\texttt{UGGrid}s support red-green refinement per default. One can turn off the green closure by setting the grid's closure type -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -File = mydgfgrid.dgf -ClosureType = None # or Green -\end{lstlisting} -For all available parameters see the Doxygen documentation. - -\subsubsection{Structured grids} -If you want to construct a structured grid with the default grid creator instead of the \texttt{File} key supply -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -LowerLeft = 0 0 0 -UpperRight = 1 1 1 -Cells = 10 10 20 -\end{lstlisting} -where \texttt{LowerLeft} is a vector to the lower left corner of the grid and \texttt{UpperRight} a vector to the upper right corner. -\texttt{Cells} is a vector with the number of cells in each coordinate direction. Note that for a grid in a two-dimensional world, the -vectors only have two entries. - -Depending on the grid manager further parameters are recognized. -\texttt{UGGrid}s, for example, supports simplex elements as well as hexahedral elements -(called simplified ``cube'' in \Dune). When creating a structured grid, we can select the cell type as follows -\begin{lstlisting}[style=DumuxParameterFile] -[Grid] -LowerLeft = 0 0 0 -UpperRight = 1 1 1 -Cells = 10 10 20 -CellType = Cube # or Simplex -\end{lstlisting} -For all available parameters see the Doxygen documentation. - -\subsection{Other grid formats and customized grid creators} -Other grid formats than DGF and MSH have to be converted to DGF or MSH to be read into \Dumux. A second possiblity (advanced \Cplusplus) is to write your own -\texttt{GridCreator}. -A (non-comprehensive) list of hints for some other common grid formats follows. - -\subsubsection{Petrel} -Grids from Petrel (in ASCII format with the extension *.GRDECL) can be imported into \Dumux in two ways: - \begin{enumerate} - \item Using the GRDECL format directly with the help of the grid-manager \texttt{dune-cornerpoint}. - \item Converting the GRDECL file into the DGF format. - \end{enumerate} -The fist options requires the installation of \texttt{dune-cornerpoint} along with its dependencies. Set the property \texttt{Grid} to \texttt{Dune::CpGrid} in your problem file. - -The second option has the advantage that you end up with a DGF which can then be used with any grid-manager (\texttt{dune-alugrid}, \texttt{UG} etc.) You also have to install \texttt{dune-cornerpoint}. Additionally you have to modify the converter \texttt{grdecl2vtu} found in \texttt{dune-cornerpoint/examples} to also write a DGF. To do so you have to: -\begin{itemize} - \item Include the \texttt{dgfwriter.hh} found in \texttt{dune-grid/dune/grid/io/file/dgfparser} - \item Create an object of the \texttt{Dune::DGFWriter} and call the its function \texttt{write()} within the \texttt{main} function for example after the \texttt{vtkwriter()} is called: -\begin{lstlisting}[style=DumuxCode] -Dune::DGFWriterParam<CpGrid::LeafGridView> dgfWriter(grid.leafView())) -dgfWriter.write(fnamebase + ".dgf") -\end{lstlisting} -\end{itemize} -Material parameters for elements with Petrel specific keywords like \texttt{PORO} are parsed by the converter \texttt{grdecl2vtu} (see the \texttt{main} function). They are available as vectors within the \texttt{main} function. The main GRDECL file with the coordinates must include the GRDECL files of the parameters, if for example the parameters are not already included, include the file bearing your parameter in your main GRDECL file: -\begin{lstlisting} -INCLUDE -'PARAMETER_X.GRDECL' -/ -\end{lstlisting} -To add the parameters to your DGF you have to make changes to the header \texttt{dgfwriter.hh} such that they are passed as arguments of the \texttt{write()} function and written after each element (modify \texttt{writeElement()} and internal \texttt{write()} functions accordingly). Take caution that you stick to the correct DGF syntax (see \textbf{Modules $\rightarrow$ I/O $\rightarrow$ Dune Grid Format (DGF)} for reference). - -\subsubsection{ArtMesh} -\href{http://www.topologica.org/toplog/wp/}{ArtMesh} is a 3D mesh generation software. It has its own mesh file format -which can be read by \Dumux via the \texttt{ArtGridCreator}. Traditionally it was used within \Dumux for fracture simulations with -the discrete fracture matrix model (\texttt{2pdfm}). A detailed description of the fracture network creation and gridding -can be found for example in \cite{Tatomir2012a}, pp. 68. - -\subsubsection{ICEM} -For complex geometries a graphical tool to create grids might be appropriate. One possibility to mesh for example CAD -geometry data is the commercial software \href{http://www.ansys.com/Products/Other+Products/ANSYS+ICEM+CFD/}{ANSYS ICEM -CFD}. A very detailed, but outdated description can be found at the LH2 internal wiki. A more recent best practice guide is available -in dumux-devel at dumux-devel/util/gridconverters/Documentation\_ICEM\_CFD\_create\_mesh.odt. At LH2 exists a script which converts the ICEM mesh into the DGF. - -% \subsubsection{Cornerpoint grids} -% TODO diff --git a/doc/handbook/5_inputoutput.tex b/doc/handbook/5_inputoutput.tex new file mode 100644 index 0000000000000000000000000000000000000000..8cfc5c6f2dae93b82dd33d8bba9c7cbf491c7499 --- /dev/null +++ b/doc/handbook/5_inputoutput.tex @@ -0,0 +1,149 @@ +\section{Input and Output} +\label{sec:inputandoutput} + +This section briefly explains grid generation in \Dumux, summarizes +the grid formats that can be used by \Dumux and introduces the \Dumux \texttt{GridManager}. +Finally, this section informs about handling output in \Dumux. + +\subsection{Supported grid file formats} +\Dumux can read grids from file using the Dune Grid Format (DGF) or the Gmsh mesh format (MSH). +Using the class \texttt{Dumux::VTKReader}, \Dumux has experimental support for reading grids and data from VTK files. + +\subsubsection{Dune Grid Format} +Most of our \Dumux tests use the Dune Grid Format (DGF) to read in grids. A detailed description +of the DGF format and some examples can be found in the \Dune doxygen documentation +\textbf{(Modules $\rightarrow$ I/O $\rightarrow$ Dune Grid Format (DGF)}). To generate larger or more +complex DGF files, we recommend to write your own scripts, e.g, in \Cplusplus, Matlab or Python. + +The DGF format can also be used to read in spatial parameters defined on the grid. These parameters can +be defined on nodes as well as on the elements. An example for predefined parameters on a grid +can be found in \texttt{dumux/test/porousmediumflow/co2/implicit/}. + +\subsubsection{Gmsh Mesh Format} +Gmsh is an open-source flexible grid generator for unstructured finite-element meshes (\cite{GEUZAINE2009}, \url{http://geuz.org/gmsh/}). +\Dumux supports the default Gmsh mesh format (MSH). For the format specifics and how to create grids with Gmsh, e.g., using +the provided GUI, we refer to the Gmsh documentation (\url{http://geuz.org/gmsh/doc/texinfo/gmsh.html}). + +The MSH format can contain element and boundary markers defined on the grid. Thus, boundaries can be easily marked as, e.g., inflow boundaries +using Gmsh. Further, the format supports higher order elements. They can be used to create boundary parameterization supported by, e.g., the grid +manager \texttt{UGGrid}. +An example can be found in \texttt{dumux/test\allowbreak/io/gridmanager}. + +\subsubsection{Other Grid Formats} +Grid formats other than DGF, MSH, VTK will have to be converted to the DGF, MSH, VTK format before they can be used in \Dumux. +If conversion is not an option, another possibility would be to write your own \texttt{GridManager}. Examples of other grid formats, +which have previously been either converted or custom-created in \Dumux, are Petrel grids (cornerpoint grids), +ArtMesh grids (fractured network grids), and ICEM grids (CAD developed grids). + +\subsection{The \Dumux \texttt{GridManager}} +The \Dumux \texttt{GridManager} constructs the grid from information in the input file and handles the data. +Currently, supported grid managers are \texttt{YaspGrid}, \texttt{OneDGrid}, \texttt{dune-uggrid}, \texttt{dune-alugrid}, \texttt{dune-foamgrid}, \texttt{dune-subgrid}, \texttt{opm-grid} (cornerpoint grids) and \texttt{dune-spgrid}. +Grids can be constructed from a DGF or MSH file by simply providing the filename to the grid in the \texttt{Grid} group~\footnote{Note, +that group name \texttt{Grid} is the default group name and can be customized in your problem changing the string property \texttt{GridParameterGroup}. +This way, it is possible, e.g., for problems with more than one grid, to set different group names for each grid, thus configuring them separately.} +of the input file: +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +File = mydgfgrid.dgf +\end{lstlisting} + +If you are using an unstructured grid manager like \texttt{UGGrid} or \texttt{ALUGrid}, constructing a grid from a MSH is just changing a line: +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +File = mygmshgrid.msh +\end{lstlisting} +\Dumux will tell you in case your selected grid manager does not support reading MSH files. + +You want to intially refine your grid? It's just adding a line: +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +File = mydgfgrid.dgf +Refinement = 4 +\end{lstlisting} + +When reading a MSH file, further parameters are recognized. \texttt{Verbose} enables verbose output on grid construction when set to $1$. +\texttt{BoundarySegments} enables reading parameterized boundaries. \texttt{PhysicalEntities} enables reading boundary and element flags. + +\subsubsection{Parameters specific to the grid manager} +The \Dumux \texttt{GridManager} supports also a selection of parameters that are specific to the chosen grid manager. +To give an example, we take a look at the unstructured grid manager \texttt{UGGrid}. +\texttt{UGGrid} supports red-green refinement per default. One can turn off the green closure by setting the grid's closure type +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +File = mydgfgrid.dgf +ClosureType = None # or Green +\end{lstlisting} + +For all available parameters see the Doxygen documentation. + +\subsubsection{Structured grids} +If you want to construct a structured grid without using a specific grid file, insert the following into the input file: +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +LowerLeft = 0 0 0 +UpperRight = 1 1 1 +Cells = 10 10 20 +\end{lstlisting} +where \texttt{LowerLeft} is a vector to the lower left corner of the grid and \texttt{UpperRight} a vector to the upper right corner. +\texttt{Cells} is a vector with the number of cells in each coordinate direction. Note, that for a grid in a two-dimensional world, the +vectors only have two entries. + +Depending on the grid manager, further parameters are recognized. +\texttt{UGGrid}, for example, supports simplex elements as well as hexahedral elements +(called ``cube'' in \Dune). When creating a structured grid, we can select the cell type as follows +\begin{lstlisting}[style=DumuxParameterFile] +[Grid] +LowerLeft = 0 0 0 +UpperRight = 1 1 1 +Cells = 10 10 20 +CellType = Cube # or Simplex +\end{lstlisting} + +For all available parameters see the Doxygen documentation. + +\subsection{Input and Output formats} + +\subsubsection{VTK file format} +Dumux allows to write out simulation results via the \texttt{VtkOutputModule}. +For every print-out step, a single \texttt{*.vtu} file is created. For parallel simulations one file +per print-out step is generated for each processor. +The \texttt{*.pvd} file groups the single \texttt{*.vtu} files and contains additionally the time step information. +The VTK file format is supported by common visualisation programs like ParaView, VisIt, and Tecplot. + +\subsubsection{Customize the VTK output} +Using the respective \texttt{initOutputModule} function of the model \texttt{IOFields}, a default +set of variables is stored in the VTK files. It is also possible to add further variables, +using the member function \texttt{addField} of the \texttt{VtkOutputModule}. For example, to add a variable called \texttt{temperatureExact}: +\begin{lstlisting}[style=DumuxCode] +vtkWriter.addField(problem->getExactTemperature(), "temperatureExact"); +\end{lstlisting} + +The first input argument of this method is the value of the additional variable, provided by a method of the corresponding problem. +If it does not already exists, the user has to provide this method. +\begin{lstlisting}[style=DumuxCode] +//! get the analytical temperature +const std::vector<Scalar>& getExactTemperature() +{ + return temperatureExact_; +} +\end{lstlisting} +It is important that the life-time of the added field exceeds the life-time of the writer. That means you can't pass temporaries +to the \texttt{addField} function. The vector has to be stored somewhere, e.g. in the program main file. + +The second input argument is the name of the additional variable (as it should be written in the VTK files). +The example above is taken from: \\ \texttt{test/porousmediumflow/1pnc/implicit/test\_1p2cni\_convection\_fv.cc} + +\subsubsection{VTK as input format} +There is experimental support for reading data and grids from VTK files. Have a look at the \texttt{Dumux::VTKReader} class. + +\subsubsection{Gnuplot interface} +\Dumux provides a small interface to GNUPlot, which can be used to plot results and generate +image files (e.g., png). To use the gnuplot, gnuplot has to be installed. For more information see \ref{gnuplot}. + +\subsubsection{Container I/O} +\Dumux supports writing to file from and reading to some standard \Cplusplus containers like \texttt{std::vector<double>} or \texttt{std::vector<Dune::FieldVector>}. +If you want to read and write simple vectors, have a look at the header \texttt{dumux/io/container.hh}. + +\subsubsection{Matrix and Vector I/O} +\texttt{dune-istl} supports writing and reading vectors and matrices to/from different format. For example you can write a matrix in a sparse matrix format that +can be read by Matlab (see \texttt{dune/istl/io.hh}). diff --git a/doc/handbook/5_models.tex b/doc/handbook/5_models.tex index 17d6deb998d5ba9545ec897468928c13c819bcb9..6fc5e5319374193c59173003d57a21056bcbfd78 100644 --- a/doc/handbook/5_models.tex +++ b/doc/handbook/5_models.tex @@ -1,6 +1,8 @@ \section{Models} Here the basic definitions, the general models concept, and a list of -models available in \Dumux are given. +models available in \Dumux are given. The actual differential equations +can be found in the localresiduals (see doxygen documentation of the +model's \texttt{LocalResidual} class). \subsection{Basic Definitions and Assumptions} The basic definitions and assumptions are made, using the example @@ -134,11 +136,11 @@ Dalton's law assumes that the gases in the mixture are non-interacting (with eac p = \sum_{i}^{}p_i. \end{equation} Here $p_i$ refers to the partial pressure of component i. -As an example, if two equal volumes of gas A and gas B are mixed, the volume of the mixture stays the same but the pressures add up (see Figure \ref{fig:dalton1}). +As an example, if two equal volumes of gas A and gas B are mixed, the volume of the mixture stays the same but the pressures add up (see Figure \ref{fig:dalton1}). % \begin{figure}[ht] \centering - \includegraphics[width=0.7\textwidth]{PNG/dalton1.png} + \includegraphics[width=0.7\textwidth]{png/dalton1.png} \caption{Dalton's law visualized} \label{fig:dalton1} \end{figure} @@ -154,7 +156,7 @@ or for an arbitrary number of gases: \end{equation} % \subsubsection{Amagat's law} -Amagat's law assumes that the volumes of the component gases are additive; the interactions of the different gases are the same as the average interactions of the components. This is known as Amagat's law: +Amagat's law assumes that the volumes of the component gases are additive; the interactions of the different gases are the same as the average interactions of the components. This is known as Amagat's law: % \begin{equation} V = \sum_{i}^{}V_i. @@ -164,14 +166,14 @@ As an example, if two volumes of gas A and B at equal pressure are mixed, the pr % \begin{figure}[ht] \centering - \includegraphics[width=0.7\textwidth]{PNG/dalton2.png} + \includegraphics[width=0.7\textwidth]{png/dalton2.png} \caption{Amagat's law visualized} \label{fig:dalton2} \end{figure} % The density of the mixture, $\varrho$, can be calculated as follows: \begin{equation} -\varrho = \frac{m}{V} = \frac{m}{V_\mathrm{A} + V_\mathrm{B}} = \frac{m}{\frac{m_\mathrm{A}}{\varrho_\mathrm{A}} \frac{m_\mathrm{B}}{\varrho_\mathrm{B}}} = +\varrho = \frac{m}{V} = \frac{m}{V_\mathrm{A} + V_\mathrm{B}} = \frac{m}{\frac{m_\mathrm{A}}{\varrho_\mathrm{A}} \frac{m_\mathrm{B}}{\varrho_\mathrm{B}}} = \frac{m}{\frac{X_\mathrm{A} m}{\varrho_\mathrm{A}} \frac{X_\mathrm{B} m}{\varrho_\mathrm{B}}} = \frac{1}{\frac{X_\mathrm{A}}{\varrho_\mathrm{A}} \frac{X_\mathrm{B}}{\varrho_\mathrm{B}}}, \end{equation} % @@ -182,7 +184,7 @@ or for an arbitrary number of gases: \end{equation} % \subsubsection{Ideal gases} -An ideal gas is defined as a gas whose molecules are spaced so far apart that the behavior of a molecule is not influenced by the presence of other molecules. +An ideal gas is defined as a gas whose molecules are spaced so far apart that the behavior of a molecule is not influenced by the presence of other molecules. This assumption is usually valid at low pressures and high temperatures. The ideal gas law states that, for one gas: % \begin{equation} @@ -193,7 +195,7 @@ Using the assumption of ideal gases and either Dalton's law or Amagat's law lead % \begin{equation} \varrho = \frac{p}{RT} \sum_{i}^{}M_i x_i ; \quad \varrho_m = \frac{p}{RT}. -\end{equation} +\end{equation} % \subsection{Available Models} A list of all available models can be found @@ -201,10 +203,49 @@ in the Doxygen documentation at \url{http://www.dumux.org/doxygen-stable/html-\DumuxVersion/modules.php}. The documentation includes a detailed description for every model. -\subsubsection{Temporal discretization} -We discretize time with an explicit or implicit Euler -method. -% TODO: make section with more details on temporal discretization +\subsubsection{Time discretization} + +Our systems of partial differential equations are discretized in space and in time. + +Let us consider the general case of a balance equation of the following form +\begin{equation}\label{eq:generalbalance} +\frac{\partial m(u)}{\partial t} + \nabla\cdot\mathbf{f}(u, \nabla u) + q(u) = 0, +\end{equation} +seeking an unknown quantity $u$ in terms of storage $m$, flux $\mathbf{f}$ and source $q$. +All available Dumux models can be written mathematically in form of \eqref{eq:generalbalance} +with possibly vector-valued quantities $u$, $m$, $q$ and a tensor-valued flux $\mathbf{f}$. +For the sake of simplicity, we assume scalar quantities $u$, $m$, $q$ and a vector-valued +flux $\mathbf{f}$ in the notation below. + +For discretizing \eqref{eq:generalbalance} we need to choose an +approximation for the temporal derivative $\partial m(u)/\partial t$. +While many elaborate methods for this approximation exist, +we focus on the simplest one of a first order difference quotient +\begin{equation}\label{eq:euler} +\frac{\partial m(u_{k/k+1})}{\partial t} +\approx \frac{m(u_{k+1}) - m(u_k)}{\Delta t_{k+1}} +\end{equation} +for approximating the solution $u$ at time $t_k$ (forward) or $t_{k+1}$ (backward). +The question of whether to choose the forward or the backward quotient leads to the +explicit and implicit Euler method, respectively. +In case of the former, inserting \eqref{eq:euler} in \eqref{eq:generalbalance} +at time $t_k$ leads to +\begin{equation}\label{eq:expliciteuler} +\frac{m(u_{k+1}) - m(u_k)}{\Delta t_{k+1}} + \nabla\cdot\mathbf{f}(u_k, \nabla u_k) + q(u_k) = 0, +\end{equation} +whereas the implicit Euler method is described as +\begin{equation}\label{eq:impliciteuler} +\frac{m(u_{k+1}) - m(u_k)}{\Delta t_{k+1}} ++ \nabla\cdot\mathbf{f}(u_{k+1}, \nabla u_{k+1}) + q(u_{k+1}) = 0. +\end{equation} +Once the solution $u_k$ at time $t_k$ is known, it is straightforward +to determine $m(u_{k+1})$ from \eqref{eq:expliciteuler}, +while attempting to do the same based on \eqref{eq:impliciteuler} +involves the solution of a system of equations. +On the other hand, the explicit method \eqref{eq:expliciteuler} is stable only +if the time step size $\Delta t_{k+1}$ is below a certain limit that depends +on the specific balance equation, whereas the implicit method \eqref{eq:impliciteuler} +is unconditionally stable. \subsubsection{Algorithms to solve equations} The governing equations of each model can be solved monolithically or sequentially. @@ -220,5 +261,5 @@ In comparison to solving the equations monolothically, the sequential structure different discretization methods for the different equations. The standard method used in the sequential algorithm is a cell-centered finite volume method. Further schemes, so far only available for the two-phase pressure equation, are cell-centered finite -volumes with multi-point flux approximation (MPFA O-method) and mimetic finite differences. +volumes with multi-point flux approximation (Mpfa-O method) and mimetic finite differences. An $h$-adaptive implementation of both sequential algorithms is provided for two dimensions. diff --git a/doc/handbook/5_parallel.tex b/doc/handbook/5_parallel.tex new file mode 100644 index 0000000000000000000000000000000000000000..10fd57d646fb0124ea1174e5197250d13471903d --- /dev/null +++ b/doc/handbook/5_parallel.tex @@ -0,0 +1,70 @@ +\section{Parallel Computation} +\label{sec:parallelcomputation} +This section explains how \Dumux can be used +on multicore / multinode systems. + +There are different concepts and methods for parallel programming, which are +often grouped in \textit{shared-memory} and \textit{distributed-memory} +approaches. The parallelization in \Dumux is based on the model supported by Dune which is currently based on +\textit{Message Passing Interface} (MPI) (distributed-memory approach). + +The main idea behind the MPI parallelization is the concept of \textit{domain +decomposition}. For parallel simulations, the computational domain is split into +subdomains and one process (\textit{rank}) is used to solve the local problem of each +subdomain. During the global solution process, some data exchange between the +ranks/subdomains is needed. MPI is used to send data to other ranks and to receive +data from other ranks. The domain decomposition in Dune is handled by the grid managers. +The grid is partitioned and distributed on several nodes. Most grid managers contain own domain decomposition methods to split the +computational domain into subdomains. Some grid managers also support external +tools like METIS, ParMETIS, PTScotch or ZOLTAN for partitioning. +On the other hand linear algebra types such as matrices and vectors +do not know that they are in a parallel environment. Communication is then handled by the components of the +parallel solvers. Currently, the only parallel solver backend is \texttt{Dumux::AMGBackend}, a parallel AMG-preconditioned +BiCGSTAB solver. + +In order for \Dumux simulation to run in parallel, an +MPI library (e.g. OpenMPI, MPICH or IntelMPI) implementation +must be installed on the system. + +\subsection{Prepare a Parallel Application} +Not all parts of \Dumux can be used in parallel. In order to switch to the parallel \texttt{Dumux::AMGBackend} +solver backend include the respective header + +\begin{lstlisting}[style=DumuxCode] +#include <dumux/linear/amgbackend.hh> +\end{lstlisting} + +Second, the linear solver must be switched to the AMG backend + +\begin{lstlisting}[style=DumuxCode] +using LinearSolver = Dumux::AMGBackend<TypeTag>; +\end{lstlisting} + +and the application must be recompiled. The parallel \texttt{Dumux::AMGBackend} instance has to be +constructed with a \texttt{Dune::GridView} object and a mapper, in order to construct the +parallel index set needed for communication. + +\begin{lstlisting}[style=DumuxCode] +auto linearSolver = std::make_shared<LinearSolver>(leafGridView, fvGridGeometry->dofMapper()); +\end{lstlisting} + +\subsection{Run a Parallel Application} +The starting procedure for parallel simulations depends on the chosen MPI library. +Most MPI implementations use the \textbf{mpirun} command + +\begin{lstlisting}[style=Bash] +mpirun -np <n_cores> <executable_name> +\end{lstlisting} + +where \textit{-np} sets the number of cores (\texttt{n\_cores}) that should be used for the +computation. On a cluster you usually have to use a queuing system (e.g. slurm) to +submit a job. Check with your cluster administrator how to run parallel applications on the cluster. + +\subsection{Handling Parallel Results} +For serial computations, \Dumux produces single vtu-files as default output format. +During a simulation, one vtu-file is written for every output step. +In the parallel case, one vtu-file for each step and processor is created. +For parallel computations, an additional variable \texttt{"process rank"} is written +into the file. The process rank allows the user to inspect the subdomains +after the computation. The parallel vtu-files are combined in a single pvd file +like in sequential simulations that can be opened with e.g. ParaView. diff --git a/doc/handbook/5_propertysystem.tex b/doc/handbook/5_propertysystem.tex index e66b20aae04d9a004962bdee90234a1e4820235c..bfe58b3fa3f8779e8c38364541eae359ecbc152a 100644 --- a/doc/handbook/5_propertysystem.tex +++ b/doc/handbook/5_propertysystem.tex @@ -4,28 +4,19 @@ A high level overview over the property system's design and principle ideas are given, then follows a reference and a self-contained example. \subsection{Motivation and features} -The \Dumux property system was designed as an attempt to mitigate the -problems of traits classes. It can be seen as a traits system -which allows easy inheritance and any acyclic dependency of parameter -definitions. Just like traits, the \Dumux property system is a compile -time mechanism, thus there is no run-time performance penalty associated -with it. +The \Dumux property system is a traits system +which allows easy inheritance. In the context of the \Dumux property system, a property is an arbitrary -class body which may contain type definitions, values and methods. Each -property has a so-called \emph{property tag} which labels its name. +class body which may contain type definitions, values and methods. Just like normal classes, properties can be arranged in hierarchies. In the context of the \Dumux property system, nodes of the inheritance hierarchy are called \emph{type tags}. -It also supports \emph{property nesting} and -\emph{introspection}. Property nesting means that the definition of +It also supports \emph{property nesting}. Property nesting means that the definition of a property can depend on the value of other properties which may be -defined for arbitrary levels of the inheritance hierarchy. The term -introspection denotes the ability to generate diagnostic messages -which can be used to find out where a certain property was defined and -how it was inherited. +defined for arbitrary levels of the inheritance hierarchy. \subsection{How-to} All source files which use the property system should include @@ -35,64 +26,85 @@ property tags as well as defining properties must be done inside the namespace \texttt{Dumux::Properties}. \subsubsection{Defining Type Tags} -New nodes in the type tag hierarchy can be defined using +New nodes in the type tag hierarchy can be defined in the \texttt{TTag} namespace using \begin{lstlisting}[style=DumuxCode] -NEW_TYPE_TAG(NewTypeTagName, INHERITS_FROM(BaseTagName1, BaseTagName2, ...)); +// Create new type tags +namespace TTag { +struct NewTypeTagName { using InheritsFrom = std::tuple<BaseTagName1, BaseTagName2, ...>; }; +} // end namespace TTag \end{lstlisting} -where the \texttt{INHERITS\_FROM} part is optional. To avoid +where the \texttt{InheritsFrom} alias is optional. To avoid inconsistencies in the hierarchy, each type tag may be defined only -once for a program. +once for a program. If you call \texttt{GetProp} the property system will first look for the properties defined in \texttt{BaseTagName1} in the \texttt{InheritsFrom} list. +If a defined property is found this property is returned. If no defined property is found the search will continue in the ancestors of \texttt{BaseTagName1}. +If again no defined property is found the search will continue in the second \texttt{BaseTagName2} in the list, and so on. +If no defined property is found at all, a compiler error is triggered. \vskip1ex\noindent Example: \begin{lstlisting}[style=DumuxCode] namespace Dumux { namespace Properties { -NEW_TYPE_TAG(MyBaseTypeTag1); -NEW_TYPE_TAG(MyBaseTypeTag2); +namespace TTag { +struct MyBaseTypeTag1 {}; +struct MyBaseTypeTag2 {}; -NEW_TYPE_TAG(MyDerivedTypeTag, INHERITS_FROM(MyBaseTypeTag1, MyBaseTypeTag2)); +struct MyDerivedTypeTag { using InheritsFrom = std::tuple<MyBaseTypeTag1, MyBaseTypeTag2>; }; +} // end namespace TTag }} \end{lstlisting} -\subsubsection{Declaring Property Tags} -New property tags, i.e. labels for properties, are declared -using +\subsubsection{Defining new Property Tags} +New property tags are defined using + \begin{lstlisting}[style=DumuxCode] -NEW_PROP_TAG(NewPropTagName); +template<class TypeTag, class MyTypeTag> +struct NewPropTagName { using type = UndefinedProperty; }; \end{lstlisting} -A property tag can be declared arbitrarily often, in fact it is -recommended that all properties are declared in each file where they -are used. \vskip1ex\noindent Example: \begin{lstlisting}[style=DumuxCode] namespace Dumux { namespace Properties { -NEW_PROP_TAG(MyPropertyTag); +template<class TypeTag, class MyTypeTag> +struct MyPropertyTag { using type = UndefinedProperty; }; }} \end{lstlisting} +If you need to forward declare a property use + +\begin{lstlisting}[style=DumuxCode] +// forward declaration +template<class TypeTag, class MyTypeTag> +struct NewPropTagName; +\end{lstlisting} + \subsubsection{Defining Properties} The value of a property on a given node of the type tag hierarchy is defined using \begin{lstlisting}[style=DumuxCode] -SET_PROP(TypeTagName, PropertyTagName) +template<class TypeTag> +struct PropertyTagName<TypeTag, TTag::TypeTagName> { // arbitrary body of a struct }; \end{lstlisting} -For each program, a property itself can be declared at most once, -although properties may be overwritten for derived type tags. -Also, the following convenience macros are available to define simple -properties: +This means a property is defined for a specific type tag node \texttt{TTag::TypeTagName} +by providing a partial template specialization of \texttt{PropertyTagName}. +The body typically contains either the alias \texttt{type}, or a data member \texttt{value}. +However, you can of course write in the body whatever you like. + \begin{lstlisting}[style=DumuxCode] -SET_TYPE_PROP(TypeTagName, PropertyTagName, type); -SET_BOOL_PROP(TypeTagName, PropertyTagName, booleanValue); -SET_INT_PROP(TypeTagName, PropertyTagName, integerValue); -SET_SCALAR_PROP(TypeTagName, PropertyTagName, floatingPointValue); +template<class TypeTag> +struct PropertyTagName<TypeTag, TTag::TypeTagName> { using type = type; }; + +template<class TypeTag> +struct PropertyTagName<TypeTag, TTag::TypeTagName> { static constexpr bool value = booleanValue; }; + +template<class TypeTag> +struct PropertyTagName<TypeTag, TTag::TypeTagName> { static constexpr int value = integerValue; }; \end{lstlisting} \vskip1ex\noindent @@ -100,84 +112,53 @@ Example: \begin{lstlisting}[style=DumuxCode] namespace Dumux { namespace Properties { -NEW_TYPE_TAG(MyTypeTag); -NEW_PROP_TAG(MyCustomProperty); -NEW_PROP_TAG(MyType); +// Create new type tag +namespace TTag { +struct MyTypeTag {}; +} -NEW_PROP_TAG(MyBoolValue); -NEW_PROP_TAG(MyIntValue); -NEW_PROP_TAG(MyScalarValue); +// Define some properties +template<class TypeTag, class MyTypeTag> struct MyCustomProperty { using type = UndefinedProperty; }; +template<class TypeTag, class MyTypeTag> struct MyType { using type = UndefinedProperty; }; +template<class TypeTag, class MyTypeTag> struct MyBoolValue { using type = UndefinedProperty; }; +template<class TypeTag, class MyTypeTag> struct MyIntValue { using type = UndefinedProperty; }; +template<class TypeTag, class MyTypeTag> struct MyScalarValue { using type = UndefinedProperty; }; -SET_PROP(MyTypeTag, MyCustomProperty) +// Set the properties for the new type tag +template<class TypeTag> +struct MyCustomProperty<TypeTag, TTag::MyTypeTag> { - static void print() { std::cout << "Hello, World!\n"; } + static void print() + { std::cout << "Hello, World!\n"; } }; -SET_TYPE_PROP(MyTypeTag, MyType, unsigned int); -SET_BOOL_PROP(MyTypeTag, MyBoolValue, true); -SET_INT_PROP(MyTypeTag, MyIntValue, 12345); -SET_SCALAR_PROP(MyTypeTag, MyScalarValue, 12345.67890); -}} -\end{lstlisting} +template<class TypeTag> +struct MyType<TypeTag, TTag::MyTypeTag> { using type = unsigned int; }; -\subsubsection{Un-setting Properties} -Sometimes an inherited properties do not make sense for a certain -node in the type tag hierarchy. These properties can be explicitly -un-set using -\begin{lstlisting}[style=DumuxCode] -UNSET_PROP(TypeTagName, PropertyTagName); -\end{lstlisting} -The un-set property can not be set for the same type tag, but of -course derived type tags may set it again. - -\vskip1ex\noindent -Example: -\begin{lstlisting}[style=DumuxCode] -namespace Dumux { -namespace Properties { -NEW_TYPE_TAG(BaseTypeTag); -NEW_TYPE_TAG(DerivedTypeTag, INHERITS_FROM(BaseTypeTag)); +template<class TypeTag> +struct MyBoolValue<TypeTag, TTag::MyTypeTag> { static constexpr bool value = true; }; -NEW_PROP_TAG(TestProp); +template<class TypeTag> +struct MyIntValue<TypeTag, TTag::MyTypeTag> { static constexpr int value = 12345; }; -SET_TYPE_PROP(BaseTypeTag, TestProp, int); -UNSET_PROP(DerivedTypeTag, TestProp); -// trying to access the 'TestProp' property for 'DerivedTypeTag' -// will trigger a compiler error! +template<class TypeTag> +struct MyScalarValue<TypeTag, TTag::MyTypeTag> { static constexpr double value = 12345.67890; }; }} \end{lstlisting} -\subsubsection{Converting Tag Names to Tag Types} -For the \Cplusplus compiler, property and type tags are like ordinary -types. Both can thus be used as template arguments. To convert a -property tag name or a type tag name into the corresponding type, the -macros \texttt{TTAG(TypeTagName)} and \texttt{PTAG(PropertyTagName)} -ought to be used. - \subsubsection{Retrieving Property Values} -The value of a property can be retrieved using +The type of a property can be retrieved using \begin{lstlisting}[style=DumuxCode] -GET_PROP(TypeTag, PropertyTag) -\end{lstlisting} -or using the convenience macros -\begin{lstlisting}[style=DumuxCode] -GET_PROP_TYPE(TypeTag, PropertyTag) -GET_PROP_VALUE(TypeTag, PropertyTag) +using Prop = GetProp<TypeTag, Properties::PropertyTag>; \end{lstlisting} -\vskip1ex -\noindent -The first convenience macro retrieves the type defined using -\texttt{SET\_TYPE\_PROP} and is equivalent to -\begin{lstlisting}[style=DumuxCode] -GET_PROP(TypeTag, PropertyTag)::type -\end{lstlisting} -while the second convenience macro retrieves the value of any property -defined using one of the macros \texttt{SET\_}$\{$\texttt{INT,BOOL,SCALAR}$\}$\texttt{\_PROP} and is -equivalent to +There is a helper struct and a helper function to retrieve the \texttt{type} and \texttt{value} +members of a property + \begin{lstlisting}[style=DumuxCode] -GET_PROP(TypeTag, PropertyTag)::value +using PropType = GetPropType<TypeTag, Properties::PropertyTag>; +constexpr auto propValue = getPropValue<TypeTag, Properties::PropertyTag>(); \end{lstlisting} \vskip1ex\noindent @@ -185,32 +166,31 @@ Example:\nolinebreak \begin{lstlisting}[style=DumuxCode] template <TypeTag> class MyClass { - // retrieve the ::value attribute of the 'NumEq' property - enum { numEq = GET_PROP(TypeTag, NumEq)::value }; - // retrieve the ::value attribute of the 'NumPhases' property using the convenience macro - enum { numPhases = GET_PROP_VALUE(TypeTag, NumPhases) }; - - // retrieve the ::type attribute of the 'Scalar' property - typedef typename GET_PROP(TypeTag, Scalar)::type Scalar; - // retrieve the ::type attribute of the 'Vector' property using the convenience macro - typedef typename GET_PROP_TYPE(TypeTag, Vector) Vector; + // retrieve the ::value attribute of the 'UseMoles' property + static constexpr bool useMoles = getPropValue<TypeTag, Properties::UseMoles>(); + static constexpr bool useMoles2 = GetProp<TypeTag, Properties::UseMoles>::value; // equivalent + + // retrieve the ::type attribute of the 'Scalar' property + using Scalar = GetPropType<TypeTag, Properties::Scalar>; + using Scalar2 = GetProp<TypeTag, Properties::Scalar>::type; // equivalent }; \end{lstlisting} \subsubsection{Nesting Property Definitions} Inside property definitions there is access to all other properties which are defined somewhere on the type tag hierarchy. The node for -which the current property is requested is available via the keyword -\texttt{TypeTag}. Inside property class bodies this can be used to -retrieve other properties using the \texttt{GET\_PROP} macros. +which the current property is requested is available via the template argument +\texttt{TypeTag}. Inside property class bodies \texttt{GetPropType} can be used to +retrieve other properties and create aliases. \vskip1ex\noindent Example: \begin{lstlisting}[style=DumuxCode] -SET_PROP(MyModelTypeTag, Vector) +template<class TypeTag> +struct Vector<TypeTag, TTag::MyModelTypeTag> { -private: typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; -public: typedef std::vector<Scalar> type; + using Scalar = GetPropType<TypeTag, Properties::Scalar>; + using type = std::vector<Scalar>; }; \end{lstlisting} @@ -272,25 +252,34 @@ defined by: namespace Dumux { namespace Properties { -NEW_TYPE_TAG(CompactCar); -NEW_TYPE_TAG(Truck); -NEW_TYPE_TAG(Tank); -NEW_TYPE_TAG(Sedan, INHERITS_FROM(CompactCar)); -NEW_TYPE_TAG(Pickup, INHERITS_FROM(Sedan, Truck)); -NEW_TYPE_TAG(HummerH1, INHERITS_FROM(Pickup, Tank)); +namespace TTag{ +struct CompactCar {}; +struct Truck {}; +struct Tank {}; + +struct Sedan { using InheritsFrom = std::tuple<CompactCar>; }; +struct Pickup { using InheritsFrom = std::tuple<Truck, Sedan>; }; +struct HummerH1 { using InheritsFrom = std::tuple<Tank, Pickup>; }; +}}} // end namespace TTag \end{lstlisting} Figure \ref{fig:car-propertynames} lists a few property names which make sense for at least one of the nodes of Figure -\ref{fig:car-hierarchy}. These property names can be declared as +\ref{fig:car-hierarchy}. These property names can be defined as follows: \begin{lstlisting}[name=propsyscars,style=DumuxCode] -NEW_PROP_TAG(TopSpeed); // [km/h] -NEW_PROP_TAG(NumSeats); // [] -NEW_PROP_TAG(CanonCaliber); // [mm] -NEW_PROP_TAG(GasUsage); // [l/100km] -NEW_PROP_TAG(AutomaticTransmission); // true/false -NEW_PROP_TAG(Payload); // [t] +template<class TypeTag, class MyTypeTag> +struct TopSpeed { using type = UndefinedProperty; }; // [km/h] +template<class TypeTag, class MyTypeTag> +struct NumSeats { using type = UndefinedProperty; }; // [] +template<class TypeTag, class MyTypeTag> +struct CanonCaliber { using type = UndefinedProperty; }; // [mm] +template<class TypeTag, class MyTypeTag> +struct GasUsage { using type = UndefinedProperty; }; // [l/100km] +template<class TypeTag, class MyTypeTag> +struct AutomaticTransmission { using type = UndefinedProperty; }; // true/false +template<class TypeTag, class MyTypeTag> +struct Payload { using type = UndefinedProperty; }; // [t] \end{lstlisting} \noindent @@ -321,35 +310,52 @@ the following: Using the \Dumux property system, these assumptions are formulated using \begin{lstlisting}[name=propsyscars,style=DumuxCode] -SET_INT_PROP(CompactCar, TopSpeed, GET_PROP_VALUE(TypeTag, GasUsage) * 30); -SET_INT_PROP(CompactCar, NumSeats, 5); -SET_INT_PROP(CompactCar, GasUsage, 4); +template<class TypeTag> +struct TopSpeed<TypeTag, TTag::CompactCar> +{static constexpr int value = getPropValue<TypeTag, Properties::GasUsage>() * 30}; -SET_INT_PROP(Truck, TopSpeed, 100); -SET_INT_PROP(Truck, NumSeats, 2); -SET_INT_PROP(Truck, GasUsage, 18); -SET_INT_PROP(Truck, Payload, 35); +template<class TypeTag> +struct NumSeats<TypeTag, TTag::CompactCar> { static constexpr int value = 5; }; -SET_INT_PROP(Tank, TopSpeed, 60); -SET_INT_PROP(Tank, GasUsage, 65); -SET_INT_PROP(Tank, CanonCaliber, 120); +template<class TypeTag> +struct GasUsage<TypeTag, TTag::CompactCar> { static constexpr int value = 4; }; -SET_INT_PROP(Sedan, GasUsage, 7); -SET_BOOL_PROP(Sedan, AutomaticTransmission, true); +template<class TypeTag> +struct TopSpeed<TypeTag, TTag::Truck> { static constexpr int value = 100; }; -SET_INT_PROP(Pickup, TopSpeed, 120); -SET_INT_PROP(Pickup, Payload, 5); +template<class TypeTag> +struct NumSeats<TypeTag, TTag::Truck> { static constexpr int value = 2; }; -SET_INT_PROP(HummerH1, TopSpeed, GET_PROP_VALUE(TTAG(Pickup), TopSpeed)); -\end{lstlisting} +template<class TypeTag> +struct GasUsage<TypeTag, TTag::Truck> { static constexpr int value = 18; }; -\noindent -At this point, the Hummer-H1 has a $\unit[120]{mm}$ canon which it inherited -from its military ancestor. It can be removed by -\begin{lstlisting}[name=propsyscars,style=DumuxCode] -UNSET_PROP(HummerH1, CanonCaliber); +template<class TypeTag> +struct Payload<TypeTag, TTag::Truck> { static constexpr int value = 35; }; -}} // close namespaces +template<class TypeTag> +struct TopSpeed<TypeTag, TTag::Tank> { static constexpr int value = 60; }; + +template<class TypeTag> +struct GasUsage<TypeTag, TTag::Tank> { static constexpr int value = 65; }; + +template<class TypeTag> +struct CanonCaliber<TypeTag, TTag::Tank> { static constexpr int value = 120; }; + +template<class TypeTag> +struct GasUsage<TypeTag, TTag::Sedan> { static constexpr int value = 7; }; + +template<class TypeTag> +struct AutomaticTransmission<TypeTag, TTag::Sedan> { static constexpr bool value = true; }; + +template<class TypeTag> +struct TopSpeed<TypeTag, TTag::Pickup> { static constexpr int value = 120; }; + +template<class TypeTag> +struct Payload<TypeTag, TTag::Pickup> { static constexpr int value = 5; }; + +template<class TypeTag> +struct TopSpeed<TypeTag, TTag::HummerH1> +{ static constexpr int value = getPropValue<TypeTag, TTag::Pickup::TopSpeed<TypeTag>>(); }; \end{lstlisting} \noindent @@ -358,30 +364,12 @@ be generated. For example \begin{lstlisting}[name=propsyscars,style=DumuxCode] int main() { - std::cout << "top speed of sedan: " << GET_PROP_VALUE(TTAG(Sedan), TopSpeed) << "\n"; - std::cout << "top speed of truck: " << GET_PROP_VALUE(TTAG(Truck), TopSpeed) << "\n"; - - std::cout << PROP_DIAGNOSTIC(TTAG(Sedan), TopSpeed); - std::cout << PROP_DIAGNOSTIC(TTAG(HummerH1), CanonCaliber); - - Dumux::Properties::print<TTAG(Sedan)>(); + std::cout << "top speed of sedan: " << getPropValue<Properties::TTag::Sedan, Properties::TopSpeed>() << "\n"; + std::cout << "top speed of truck: " << getPropValue<Properties::TTag::Truck, Properties::TopSpeed>() << "\n"; } \end{lstlisting} will yield the following output: \begin{lstlisting}[style=Bash, basicstyle=\ttfamily\scriptsize\let\textcolor\textcolordummy] $ top speed of sedan: 210 $ top speed of truck: 100 -$ Properties for Sedan: -$ bool AutomaticTransmission = 'true' defined at test_propertysystem.cc:68 -$ int GasUsage = '7' defined at test_propertysystem.cc:67 -$ Inherited from CompactCar: -$ int NumSeats = '5' defined at test_propertysystem.cc:55 -$ int TopSpeed = '::Dumux::Properties::GetProperty<TypeTag, ::Dumux::Properties::PTag::GasUsage>::p::value * 30' defined at test_propertysystem.cc:54 \end{lstlisting} - -\subsection{Property Values} -To get the value of a property use: -\begin{description} -\item[\texttt{{\small GET\_PROP\_VALUE:}}] -Always returns the \emph{compile-time} specified value of the property. -\end{description} diff --git a/doc/handbook/5_spatialdiscretizations.tex b/doc/handbook/5_spatialdiscretizations.tex index 516d1bfe8405256ef26e3acf08d9a0ac38e768f3..d45be682e004bb7f22ca4fba56425d8fa09ecd16 100644 --- a/doc/handbook/5_spatialdiscretizations.tex +++ b/doc/handbook/5_spatialdiscretizations.tex @@ -1,10 +1,9 @@ \section{Spatial Discretization Schemes} \label{spatialdiscretization} -We discretize space with the cell-centered finite volume method (\ref{box} ), the box method (\ref{cc}) +We discretize space with the cell-centered finite volume method (\ref{cc} ), the box method (\ref{box}) or a staggered grid scheme. Grid adaption is available for both box and cell-centered finite volume method. -Note that the current implementation only ensures mass conservation for incompressible fluids. In general, the spatial parameters, especially the porosity, have to be assigned on the coarsest level of discretization. @@ -13,13 +12,13 @@ the coarsest level of discretization. The so called box method unites the advantages of the finite-volume (FV) and finite-element (FE) methods. -First, the model domain $G$ is discretized with a FE mesh consisting of nodes +First, the model domain $\Omega$ is discretized with a FE mesh consisting of nodes $i$ and corresponding elements $E_k$. Then, a secondary FV mesh is constructed by connecting the midpoints and barycenters of the elements surrounding node $i$ creating a box $B_i$ around node $i$ (see Figure \ref{pc:box}a). \begin{figure} [ht] -\includegraphics[width=0.8\linewidth,keepaspectratio]{PNG/box_disc.png} +\includegraphics[width=0.8\linewidth,keepaspectratio]{png/box_disc.png} \caption{\label{pc:box} Discretization of the box method} \end{figure} @@ -46,17 +45,17 @@ In the following, the discretization of the balance equation is going to be deri From the \textsc{Reynolds} transport theorem follows the general balance equation: \begin{equation} - \underbrace{\int_G \frac{\partial}{\partial t} \: u \: dG}_{1} - + \underbrace{\int_{\partial G} (\mathbf{v} u + \mathbf w) \cdot \textbf n \: d\varGamma}_{2} = \underbrace{\int_G q \: dG}_{3} + \underbrace{\int_\Omega \frac{\partial}{\partial t} \: u \, \mathrm{d}x}_{1} + + \underbrace{\int_{\partial\Omega} (\mathbf{v} u + \mathbf w) \cdot \textbf n \, \mathrm{d}\Gamma}_{2} = \underbrace{\int_\Omega q \, \mathrm{d}x}_{3} \end{equation} \begin{equation} - f(u) = \int_G \frac{\partial u}{\partial t} \: dG + \int_{G} \nabla \cdot - \underbrace{\left[ \mathbf{v} u + \mathbf w(u)\right] }_{F(u)} \: dG - \int_G q \: dG = 0 + f(u) = \int_\Omega \frac{\partial u}{\partial t} \, \mathrm{d}x + \int_{\Omega} \nabla \cdot + \underbrace{\left[ \mathbf{v} u + \mathbf w(u)\right] }_{F(u)} \, \mathrm{d}x - \int_\Omega q \, \mathrm{d}x = 0 \end{equation} where term 1 describes the changes of entity $u$ within a control volume over time, term 2 the advective, diffusive and dispersive fluxes over the interfaces -of the control volume and term 3 is the source and sink term. $G$ denotes the +of the control volume and term 3 is the source and sink term. $\Omega$ denotes the model domain and $F(u) = F(\mathbf v, p) = F(\mathbf v(x,t), p(x,t))$. Like the FE method, the box method follows the principle of weighted residuals. @@ -68,30 +67,30 @@ this means: \begin{minipage}[b]{0.47\textwidth} \begin{equation} \label{eq:p} - \tilde p = \sum_i N_i \hat{p_i} + \tilde p = \sum_i N_i \hat{p}_i \end{equation} \begin{equation} \label{eq:v} - \tilde{\mathbf v} = \sum_i N_i \hat{\mathbf v} + \tilde{\mathbf v} = \sum_i N_i \hat{\mathbf v}_i \end{equation} \begin{equation} \label{eq:x} - \tilde x^\kappa = \sum_i N_i \hat x^\kappa + \tilde x^\kappa = \sum_i N_i \hat x_i^\kappa \end{equation} \end{minipage} \hfill \begin{minipage}[b]{0.47\textwidth} \begin{equation} \label{eq:dp} - \nabla \tilde p = \sum_i \nabla N_i \hat{p_i} + \nabla \tilde p = \sum_i \nabla N_i \hat{p}_i \end{equation} \begin{equation} \label{eq:dv} - \nabla \tilde{\mathbf v} = \sum_i \nabla N_i \hat{\mathbf v} + \nabla \tilde{\mathbf v} = \sum_i \nabla N_i \hat{\mathbf v}_i \end{equation} \begin{equation} \label{eq:dx} - \nabla \tilde x^\kappa = \sum_i \nabla N_i \hat x^\kappa . + \nabla \tilde x^\kappa = \sum_i \nabla N_i \hat x_i^\kappa . \end{equation} \end{minipage} @@ -107,103 +106,231 @@ of the residual $\varepsilon$ with a weighting function $W_j$ and claiming that this product has to vanish within the whole domain, \begin{equation} - \int_G W_j \cdot \varepsilon \: \overset {!}{=} \: 0 \qquad \textrm{with} \qquad \sum_j W_j =1 + \int_\Omega \varepsilon W_j \, \mathrm{d}x \overset {!}{=} \: 0 \qquad \textrm{with} \qquad \sum_j W_j =1 \end{equation} yields the following equation: \begin{equation} - \int_G W_j \frac{\partial \tilde u}{\partial t} \: dG + \int_G W_j - \cdot \left[ \nabla \cdot F(\tilde u) \right] \: dG - \int_G W_j - \cdot q \: dG = \int_G W_j \cdot \varepsilon \: dG \: \overset {!}{=} \: 0 . + \int_\Omega \frac{\partial \tilde u}{\partial t} W_j \, \mathrm{d}x + \int_\Omega + \left[ \nabla \cdot F(\tilde u) \right] W_j \, \mathrm{d}x - \int_\Omega q W_j \, \mathrm{d}x = \int_\Omega \varepsilon W_j \, \mathrm{d}x \: \overset {!}{=} \: 0. +\label{eq:weightedResidual} \end{equation} -Then, the chain rule and the \textsc{Green-Gaussian} integral theorem are applied. +For standard Galerkin schemes, the weighting functions $W_j$ are chosen the same as the ansatz functions $N_j$. However, this does not yield a locally mass-conservative scheme. +Therefore, for the Box method, the weighting functions $W_j$ are chosen as +the piecewise constant functions over a +control volume box $B_j$, i.e. \begin{equation} - \int_G W_j \frac{\partial \sum_i N_i \hat u_i}{\partial t} \: dG - + \int_{\partial G} \left[ W_j \cdot F(\tilde u)\right] - \cdot \mathbf n \: d\varGamma_G + \int_G \nabla W_j \cdot F(\tilde u) - \: dG - \int_G W_j \cdot q \: dG = 0 + W_j(x) = \begin{cases} + 1 &x \in B_j \\ + 0 &x \notin B_j.\\ + \end{cases} +\label{eq:weightingFunctions} \end{equation} +Thus, the Box method is a Petrov-Galerkin scheme, where the weighting functions do not belong to the same function space than the ansatz functions. -A mass lumping technique is applied by assuming that the storage capacity is -reduced to the nodes. This means that the integrals $M_{i,j} = \int_G W_j \: N_i \: dG$ -are replaced by the mass lumping term $M^{lump}_{i,j}$ which is defined as: +Inserting definition \eqref{eq:weightingFunctions} into equation \eqref{eq:weightedResidual} and using the \textsc{Green-Gaussian} integral theorem results in +\begin{equation} + \int_{B_j} \frac{\partial \tilde u}{\partial t} \, \mathrm{d}x + \int_{\partial B_j} F(\tilde u) \cdot \mathbf n \, \mathrm{d}\Gamma_{B_j} - \int_{B_j} q \, \mathrm{d}x \overset {!}{=} \: 0, +\label{eq:BoxMassBlance} +\end{equation} +which has to hold for every box $B_j$. +The first term in equation \eqref{eq:BoxMassBlance} can be written as \begin{equation} - M^{lump}_{i,j} =\begin{cases} \int_G W_j \: dG = \int_G N_i \: dG = V_i &i = j\\ - 0 &i \neq j\\ +\int_{B_j} \frac{\partial \tilde u}{\partial t} \, \mathrm{d}x = \frac{d}{dt} \int_{B_j} \sum_i \hat u_i N_i \, \mathrm{d}x = \sum_i \frac{\partial \hat u_i}{\partial t} \int_{B_j} N_i \, \mathrm{d}x. +\end{equation} +Here, a mass lumping technique is applied by assuming that the storage capacity is +reduced to the nodes. This means that the integrals $M_{i,j} = \int_{B_j} N_i \, \mathrm{d}x$ +are replaced by some mass lumped terms $M^{lump}_{i,j}$ which are defined as +\begin{equation} + M^{lump}_{i,j} =\begin{cases} |B_j| &j = i\\ + 0 &j \neq i,\\ \end{cases} \end{equation} -where $V_i$ is the volume of the FV box $B_i$ associated with node $i$. -The application of this assumption in combination with -$\int_G W_j \:q \: dG = V_i \: q$ yields +where $|B_j|$ is the volume of the FV box $B_j$ associated with node $j$. +The application of this assumption yields \begin{equation} - V_i \frac{\partial \hat u_i}{\partial t} - + \int_{\partial G} \left[ W_j \cdot F(\tilde u)\right] - \cdot \mathbf n \: d\varGamma_G + \int_G \nabla W_j \cdot F(\tilde u) - \: dG- V_i \cdot q = 0 \, . +\label{eq:disc1} + |B_j| \frac{\partial \hat u_j}{\partial t} + + \int_{\partial B_j} F(\tilde u) \cdot \mathbf n \, \mathrm{d}\Gamma_{B_j} - Q_j = 0, \end{equation} +where $Q_j$ is an approximation (using some quadrature rule) of the integrated source/sink term $\int_{B_j} q \, \mathrm{d}x$. -Defining the weighting function $W_j$ to be piecewisely constant over a -control volume box $B_i$ +Using an implicit Euler time discretization finally +leads to the discretized form which will be applied to the mathematical +flow and transport equations: \begin{equation} - W_j(x) = \begin{cases} - 1 &x \in B_i \\ - 0 &x \notin B_i\\ - \end{cases} +\label{eq:discfin} + |B_j| \frac{\hat u_j^{n+1} - \hat u_j^{n}}{\Delta t} + + \int_{\partial B_j} F(\tilde u^{n+1}) \cdot \mathbf n + \; \mathrm{d}\Gamma_{B_j} - Q_j^{n+1} \: = 0. \end{equation} +Equation \eqref{eq:discfin} has to be fulfilled for each box $B_j$. -causes $\nabla W_j = 0$: +\subsection{Cell Centered Finite Volume Methods -- A Short Introduction}\label{cc} +Cell-centered finite volume methods use the elements of the grid as control volumes. +For each control volume the discrete values are determined at the element/control +volume center (not required to be the barycenters). +We consider a domain $\Omega \subset \mathbb{R}^d$, $d \in \{ 2, 3 \}$ with boundary $\Gamma = \partial \Omega$. Within this section, we consider the following elliptic problem \begin{equation} -\label{eq:disc1} - V_i \frac{\partial \hat u_i}{\partial t} - + \int_{\partial B_i} \left[ W_j \cdot F(\tilde u)\right] - \cdot \mathbf n \; d{\varGamma}_{B_i} - V_i \cdot q = 0 . + \begin{aligned} + \nabla \cdot \left( - \mathbf{\Lambda} \nabla u \right) &= q &&\mathrm{in} \, \Omega \\ + \left( - \mathbf{\Lambda} \nabla u \right) \cdot \mathbf{n} &= v_N &&\mathrm{on} \, \Gamma_N \\ + u &= u_D &&\mathrm{on} \, \Gamma_D. + \label{eq:elliptic} + \end{aligned} \end{equation} -The consideration of the time discretization and inserting $W_j = 1$ finally -leads to the discretized form which will be applied to the mathematical -flow and transport equations: +Here, $\mathbf{\Lambda} = \mathbf{\Lambda}(\mathbf{x}, \mathbf{u})$ is a symmetric and positive definite tensor of second rank (e.g. permeability, diffusivity, etc.), $u = u (\mathbf{x})$ is unknown and $q = q(\mathbf{x}, \mathbf{u})$ is a source/sink. +We denote by $\mathcal{M}$ the mesh that results from the division of the domain $\Omega$ into $n_e$ control volumes $K \subset \Omega$. Each $K$ is a polygonal open set such that $K \cap L = \emptyset, \forall{K \neq L}$ and $\overline{\Omega} = \cup_{K \in \mathcal{M}} \overline{K}$. + +For the derivation of the finite-volume formulation we integrate the first equation of \eqref{eq:elliptic} over a control volume $K$ and apply the Gauss divergence theorem: \begin{equation} -\label{eq:discfin} - V_i \frac{\hat u_i^{n+1} - \hat u_i^{n}}{\Delta t} - + \int_{\partial B_i} F(\tilde u^{n+1}) \cdot \mathbf n - \; d{\varGamma}_{B_i} - V_i \: q^{n+1} \: = 0 + \int_{\partial K} \left( - \mathbf{\Lambda} \nabla u \right) \cdot \mathbf{n} \, \mathrm{d} \Gamma = \int_K q \, \mathrm{d}x. + \label{eq:ellipticIntegrated} \end{equation} -\subsection{Cell Centered Finite Volume Method -- A Short Introduction}\label{cc} +Splitting the control volume boundary $\partial K$ into a finite number of faces $\sigma \subset \partial K$ (such that $\sigma = \overline{K} \cap \overline{L}$ for some neighboring control volume $L$) and replacing the exact fluxes by an approximation, i.e. $F_{K, \sigma} \approx \int_{\sigma} \left( - \mathbf{\Lambda}_K \nabla u \right) \cdot \mathbf{n} \mathrm{d} \Gamma$ (here $\mathbf{\Lambda}_K$ is the value of $\mathbf{\Lambda}$ associated with control volume $K$), yield +\begin{equation} + \sum_{\sigma \subset \partial K} F_{K, \sigma} = Q_K, \quad \forall \, {K \in \mathcal{M}}, +\label{eq:ccdisc} +\end{equation} +where $F_{K, \sigma}$ is the discrete flux through face $\sigma$ flowing out of cell $K$ and $Q_K := \int_K q \, \mathrm{d}x$ is the integrated source/sink term. Equation \eqref{eq:ccdisc} is the typical cell-centered finite-volume formulation. +Finite-volume schemes differ in the way how the term +$(\mathbf{\Lambda}_K \nabla u ) \cdot \mathbf{n} $ is approximated (i.e. the choice of the fluxes $F_{K, \sigma}$). Using the symmetry of the tensor $\mathbf{\Lambda}_K$, this term can be rewritten as +$\nabla u \cdot \mathbf{\Lambda}_K\mathbf{n}$, which corresponds to the directional derivative of $u$ in co-normal direction $\mathbf{\Lambda}_K\mathbf{n}$. +In the following, the main ideas of the two-point flux approximation and the multi-point flux approximation methods are briefly described. Hereby, we restrict the discussion to the two-dimensional case. + +Please also note that other types of equations, e.g. instationary parabolic problems, can be discretized by applying some time discretization scheme to the time derivatives and by using the finite-volume scheme for the flux discretization. For simplicity the discussion is restricted to the elliptic problem \eqref{eq:elliptic}. + +\subsubsection{Tpfa Method}\label{cc_tpfa} +The linear two-point flux approximation is a simple but robust cell-centered finite-volume scheme, which is commonly used in commercial software. +This scheme can be derived by using the conormal decomposition, which reads +\begin{equation} +\mathbf{\Lambda}_K \mathbf{n}_{K, \sigma} = t_{K,\sigma} \mathbf{d}_{K,\sigma} + \mathbf{d}^{\bot}_{K,\sigma}, \quad t_{K,\sigma} = \frac{\mathbf{n}_{K, \sigma}^T \mathbf{\Lambda}_K \mathbf{d}_{K,\sigma} }{\mathbf{d}_{K,\sigma}^T \mathbf{d}_{K,\sigma}}, \; \mathbf{d}^{\bot}_{K,\sigma} = \mathbf{\Lambda}_K \mathbf{n}_{K, \sigma} - t_{K,\sigma} \mathbf{d}_{K,\sigma}, +\label{eq:conormalDecTpfa} +\end{equation} +with the tensor $\mathbf{\Lambda}_K$ associated with control volume $K$, the distance vector $\mathbf{d}_{K,\sigma} := \mathbf{x}_\sigma - \mathbf{x}_K$ and $\mathbf{d}_{K,\sigma}^T \mathbf{d}^{\bot}_{K,\sigma} = 0$, see Figure \ref{pc:cctpfa} for the used notations. The same can be done for the conormal $\mathbf{\Lambda}_L \mathbf{n}_{L, \sigma}$. The $t_{K,\sigma}$ and $t_{L,\sigma}$ are the transmissibilities associated with the face $\sigma$. These transmissibilities are calculated in \Dumux by using the function \texttt{computeTpfaTransmissibility}. \begin{figure} [ht] \centering -\includegraphics[width=0.4\linewidth,keepaspectratio]{PNG/cc_disc.png} -\caption{\label{pc:cc} Discretization of the cell centered finite volume method} +\includegraphics[width=0.4\linewidth,keepaspectratio]{png/cctpfa.png} +\caption{Two neighboring control volumes sharing the face $\sigma$.} +\label{pc:cctpfa} \end{figure} -The cell centered finite volume method uses the elements of the grid as control volumes. -For each control volume all discrete values are determined at the element/control -volume center (see Figure~\ref{pc:cc}). -The mass or energy fluxes are evaluated at the integration points ($x_{ij}$), -which are located at the midpoints of the control -volume faces. This is a two point flux approximation since the flux between -the element/control volume centers $i$ and $j$ is calculated -only with information from these two points. In contrast the box method uses -a multi-point flux approximation where all nodes of the -element influence the flux between two specific nodes. \\ -Neumann boundary conditions are applied at the boundary control volume faces -and Dirichlet boundary conditions at the boundary control volumes. \\ -The cell centered finite volume method is robust and mass conservative but -should only be applied for structured grids -(the control volume face normal vector ($n_{ij}$) should be parallel to the -direction of the gradient between the two element/control -volume centers). - -% \subsubsection{MPFA}\label{cc_mpfa} -% TODO + +With these notations, it follows that for each cell $K$ and face $\sigma$ +\begin{equation} +\nabla u \cdot \mathbf{\Lambda}_K \mathbf{n}_{K, \sigma} = t_{K,\sigma} \nabla u \cdot \mathbf{d}_{K,\sigma} + \nabla u \cdot \mathbf{d}^{\bot}_{K,\sigma}. +\end{equation} +For the Tpfa scheme, the second part in the above equation is neglected. By using the fact that $\nabla u \cdot \mathbf{d}_{K,\sigma} \approx u_\sigma - u_K$, the discrete fluxes for face $\sigma$ are given by +\begin{equation} +F_{K,\sigma} = -\meas{\sigma} t_{K,\sigma} (u_\sigma - u_K), \qquad F_{L,\sigma} = -\meas{\sigma} t_{L,\sigma} (u_\sigma - u_L). +\label{eq:TPFAOneSided} +\end{equation} +Enforcing local flux conservation, i.e. $F_{K,\sigma}+F_{L,\sigma}=0$, results in +\begin{equation} +u_\sigma = \frac{t_{K,\sigma} u_K + t_{L,\sigma} u_L}{t_{K,\sigma} + t_{L,\sigma}}. +\end{equation} +With this, the fluxes \eqref{eq:TPFAOneSided} are rewritten as +\begin{equation} +F_{K,\sigma} = \meas{\sigma} \frac{t_{K,\sigma} t_{L,\sigma}}{t_{K,\sigma} + t_{L,\sigma}} (u_K - u_L), \quad F_{L,\sigma} = \meas{\sigma} \frac{t_{K,\sigma} t_{L,\sigma}}{t_{K,\sigma} + t_{L,\sigma}} (u_L - u_K). +\label{eq:TPFAFlux} +\end{equation} +By neglecting the orthogonal term, the consistency of the scheme is lost for general grids, where $\nabla u \cdot \mathbf{d}^{\bot}_{K,\sigma} \not = 0$. The consistency is achieved only for so-called K-orthogonal grids for which $\mathbf{d}^{\bot}_{K,\sigma} = 0$. For such grids we deduce that +\begin{equation} +\frac{t_{K,\sigma} t_{L,\sigma}}{t_{K,\sigma} + t_{L,\sigma}} = \frac{\tau_{K,\sigma} \tau_{L,\sigma}}{\tau_{K,\sigma} d_{L,\sigma} + \tau_{L,\sigma} d_{K,\sigma}}, +\label{eq:TPFAcoeffNew} +\end{equation} +with $\tau_{K,\sigma} := \mathbf{n}_{K, \sigma} \mathbf{\Lambda}_K\mathbf{n}_{K, \sigma}, \tau_{L,\sigma} := \mathbf{n}_{L, \sigma} \mathbf{\Lambda}_L\mathbf{n}_{L, \sigma}$, $d_{K,\sigma}:= \mathbf{n}_{K, \sigma} \cdot \mathbf{d}_{K, \sigma}$, and $d_{L,\sigma}:= \mathbf{n}_{L, \sigma} \cdot \mathbf{d}_{L, \sigma}$. This reduces, for the case of scalar permeability, to a distance weighted harmonic averaging of permeabilities. + + + +\subsubsection{Mpfa Method}\label{cc_mpfa} +Expressions for the face fluxes $F_{K, \sigma}$ are obtained by introducing intermediate face unknowns $u_\sigma$ in addition to the cell unknowns $u_K$ and enforcing the physically motivated continuity of fluxes and continuity of the solution across the faces. For a face $\sigma$ between the two polygons $K$ and $L$ these conditions read: +\begin{equation} + \begin{aligned} + &F_{K, \sigma} + F_{L, \sigma} = 0 \\ + &{u}_{K,\sigma} = {u}_{L,\sigma} = {u}_{\sigma}. + \label{eq:sigmaConditions} + \end{aligned} +\end{equation} +Using these conditions, the intermediate face unknowns ${u}_\sigma$ can be eliminated and the fluxes are expressed as a function of the cell unknowns $u_N$ and associated transmissibilities $t^N_{K,\sigma}$: + +\begin{equation} + F_{K,\sigma} = \sum_{N \in \mathcal{S}_{K,\sigma}} t^N_{K,\sigma} u_{N}. + \label{eq:FVFluxExpression} +\end{equation} + +\begin{figure} [ht] +\centering +\includegraphics[width=0.8\linewidth,keepaspectratio]{png/mpfa_iv.png} +\caption{Interaction region for the Mpfa-O method. The graphic on the right illustrates how the sub-control volume $L^v$ and face $\sigma^v_2$ are embedded in cell $L$. Note that the face stencils for all sub-control volume faces in the depicted interaction region are $\mathcal{S}_{\sigma^v_i} = \{ K,L,M \}$, meaning that the fluxes over the sub-control volume faces depend on the three cell unknowns $u_K, u_L, u_M$.} +\label{pc:interactionRegion_mpfa} +\end{figure} + +The main difference between the various finite-volume schemes available is the assembly of the face fluxes, i.e. the computation of the $t^N_{K,\sigma}$ and the size of $\mathcal{S}_{K,\sigma}$. For the Tpfa, that has been presented in the last section, the stencil and transmissibilities are given as +\begin{equation*} +\mathcal{S}_{K,\sigma} = \lbrace K,L \rbrace, \quad t^K_{K,\sigma} = \meas{\sigma} \frac{t_{K,\sigma} t_{L,\sigma}}{t_{K,\sigma} + t_{L,\sigma}},\; t^L_{K,\sigma} = -\meas{\sigma} \frac{t_{K,\sigma} t_{L,\sigma}}{t_{K,\sigma} + t_{L,\sigma}}, +\end{equation*} +with $t_{K,\sigma},t_{L,\sigma}$ as defined in equation \eqref{eq:conormalDecTpfa}. + +In the following, a multi-point flux approximation method (Mpfa-O method), which was introduced in \citet{A3:aavatsmark:2002}, is presented. The main difference to the Tpfa scheme is the fact that a consistent discrete gradient is constructed, i.e. the term $\nabla u \cdot \mathbf{d}^{\bot}_{K,\sigma}$ is not neglected. + +For this scheme, a dual grid is created by connecting the barycenters of the cells with the barycenters of the faces ($d=2$) or the barycenters of the faces and edges ($d=3$). This divides each cell into sub-control volumes $K^v$. Analogously, each face is sub-divided into sub-control volume faces $\sigma^v$, see Figure \ref{pc:interactionRegion_mpfa}. We allow for piecewise constant $\mathbf{\Lambda}$ (denoted as $\mathbf{\Lambda}_K$ for each cell $K$) and construct discrete gradients $\nabla_\mathcal{D}^{K^v} u$ (per sub-control volume $K^v$). +In the following, we restrict our discussion to the two-dimensional setup that is shown in Figure \ref{pc:interactionRegion_mpfa}. +Here, the discrete gradients are constructed to be consistent such that the following conditions hold: +\begin{equation} +\nabla_\mathcal{D}^{K^v} u \cdot (\mathbf{x}_{\sigma^v_1}- \mathbf{x}_{K}) = u_{\sigma^v_1} - u_K, \quad \nabla_\mathcal{D}^{K^v} u \cdot (\mathbf{x}_{\sigma^v_3}- \mathbf{x}_{K}) = u_{\sigma^v_3} - u_K. +\end{equation} +Thus, a discrete gradient (for sub-control volume $K^v$) that fulfills these conditions is given as +\begin{equation} +\nabla_\mathcal{D}^{K^v} u = \mathbb{D}^{-T}_{K^v} + \begin{bmatrix} + u_{\sigma^v_1} - u_K \\ + u_{\sigma^v_3} - u_K + \end{bmatrix}, \qquad \text{ with }\; \mathbb{D}_{K^v} := + \begin{bmatrix} + \mathbf{x}_{\sigma^v_1}- \mathbf{x}_K & \mathbf{x}_{\sigma^v_3} - \mathbf{x}_K + \end{bmatrix}. + \label{eq:MPFAGradientRecons} +\end{equation} + +This enables us to write the discrete flux across $\sigma^v_1$ from cell $K$ as follows: +\begin{equation} + F_{K, \sigma^v_1} := - |\sigma^v_1| \mathbf{n}_{\sigma^v_1}^T \mathbf{\Lambda}_K \nabla_\mathcal{D}^{K^v} u. + \label{eq:discreteFlux} +\end{equation} +Inserting the discrete gradient, yields +\begin{equation} + F_{K, \sigma^v_1} = \omega_{K,\sigma^v_1\sigma^v_1}(u_K - u_{\sigma^v_1}) + \omega_{K,\sigma^v_1 \sigma^v_3}(u_K - u_{\sigma^v_3}), + \label{eq:discreteFluxRef} +\end{equation} +with $(\omega_{K,\sigma^v_1\sigma^v_1},\omega_{K,\sigma^v_1 \sigma^v_3})^T = |\sigma^v_1| \mathbb{D}^{-1}_{K^v}\mathbf{\Lambda}_K \mathbf{n}_{\sigma^v_1}$. These values are calculated in \Dumux by using the function \texttt{computeMpfaTransmissibility}. +\\ \ \\ +To deduce a cell-centered scheme, the introduced face unknowns $u_{\sigma^v_i}$ have to be eliminated. This is done by enforcing flux continuity for each sub-control volume face, i.e. +\begin{align} +F_{K, \sigma^v_1} + F_{L, \sigma^v_1} &= 0, \\ F_{K, \sigma^v_3} + F_{M, \sigma^v_3} &= 0, \\ F_{L, \sigma^v_2} + F_{M, \sigma^v_2} &= 0. +\end{align} +This results in a system of equations for the face unknowns $\mathbf{u}_{\sigma}$ +\begin{equation} +\mathbb{A}^{3\times 3} \mathbf{u}_{\sigma} = \mathbb{B}^{3\times 3} \mathbf{u}, +\end{equation} +where $\mathbf{u}$ contains the three cell unknowns $u_K,u_L,u_M$ and $\mathbf{u}_{\sigma}$ the three face unknowns $u_{\sigma^v_1}, u_{\sigma^v_2}, u_{\sigma^v_3}$. +Inserting these face unknowns into the flux expression \eqref{eq:discreteFluxRef} yields +\begin{equation} + F_{K,\sigma^v_i} = \sum_{N \in \lbrace K,L,M \rbrace } t^N_{K,\sigma^v_i} u_{N} = \mathbf{t}_{K,\sigma^v_i} \cdot \mathbf{u}, + \label{eq:FVFluxExpressionSubFace} +\end{equation} +for each cell $K$ and sub-control volume face $\sigma^v_i$. + % \subsubsection{NLTPFA}\label{cc_nltpfa} % TODO @@ -211,64 +338,12 @@ volume centers). \begin{figure}[ht] \centering -\begin{tikzpicture}[scale=3.0,font=\normalsize] -\begin{scope}[shift={(0,2.5)}] -% control volume pressure -\fill[gray!40] (1,1) rectangle (2,2); -% control volume for vertical velocity -\fill[dumuxBlue!30] (0.0,0.5) rectangle (1.0,1.5); -% control volume for horizontal velocity -\fill[dumuxYellow!30] (0.5,0) rectangle (1.5,1); - -% grid cells -\draw [thick] (0,0) grid (2,2); - -% cell centers -\foreach \x in {0.5,...,1.5} - \foreach \y in {0.5,...,1.5} - \fill[gray](\x,\y) circle(0.06); -% velocity x -\foreach \x in {0,1,2} - \foreach \y in {0.5,...,1.5} - \draw[dumuxYellow,->,ultra thick](\x-0.15,\y) -- (\x+0.15,\y); -% velocity y -\foreach \x in {0.5,...,1.5} - \foreach \y in {0,...,2.0} - \draw[dumuxBlue,->,ultra thick](\x,\y-0.15) -- (\x,\y+0.15); -\end{scope} - -% annotations -\begin{scope}[shift={(1.0,2.7)}] -\fill[gray](2.3,1.8) circle(0.06); -\draw(2.5,1.8) node[right, align=left] {cell-centered primary variables\\\color{gray}($p_\alpha$, $x^\kappa_\alpha$, $T$, $k$, $\varepsilon$, ...)}; -\draw[dumuxYellow,->,ultra thick](2.2,1.4) -- (2.4,1.4); -\draw[dumuxYellow](2.5,1.4) node[right, align=left] {$v_{\alpha\textrm{,x}}$}; -\draw[dumuxBlue,->,ultra thick](2.3,0.9) -- (2.3,1.1); -\draw[dumuxBlue](2.5,1.0) node[right, align=left] {$v_{\alpha\textrm{,y}}$}; - -\draw[thick](2.2,0.5) rectangle (2.4,0.7); -\draw(2.5,0.6) node[right, align=left] {finite volume mesh}; -\draw[draw=none,fill=gray!40](2.2,0.1) rectangle (2.4,0.3); -\draw(2.5,0.2) node[right, align=left] {control volumes\\(cell-centered primary variables)}; -\draw[draw=none,fill=dumuxYellow!30](1.9,-0.1) rectangle (2.1,-0.3); -\draw[draw=none,fill=dumuxBlue!30](2.2,-0.1) rectangle (2.4,-0.3); -\draw(2.5,-0.2) node[right, align=left] {staggered control volumes\\(velocity components)}; -\end{scope} -\end{tikzpicture} -\caption{\label{pc:staggered} Discretization of the staggered-grid method} +\includegraphics[width=.8\linewidth]{./pdf/staggered_grid.pdf} +\caption{\label{pc:staggered} Discretization of the staggered-grid method. The figure shows the different control volume arrangements, which are staggered with respect to each other. There are the control volumes centered around the scalar primary variables in black, the control volumes located around the $x$-component of the velocity in blue and the control volumes located around the $y$-components of the velocity in red. The control volume boundaries are given by lines. Additionally, there is one shaded example control volume each.\\ +In the two-dimensional free-flow models, the continuity equation is discretized using the black control volumes, the $x$-component of the momentum equation is discretized using the blue control volumes and the $y$-component is discretized using the red control volumes. In three dimensions this works analogously.} \end{figure} -The staggered-grid or marker-and-cell method uses a cell-centered finite volume method -for the scalar primary variables. -The control volumes for the velocity components are shifted half-a-cell in each direction, -such that the velocity components are located on the edges of the -cell-centered finite volume mesh (see Figure~\ref{pc:staggered}). -As for the cell-centered method, the fluxes are evaluated at the edges -of each control volume with a two-point flux approximation, cf. \ref{cc}.\\ -For cell-centered variables, the boundary handling is as for the cell-centered method. -For the velocity components, Dirichlet values for the component normal to the boundary -face can directly be applied. -For the tangential components the boundary values are treated with contribution of the boundary flux. \\ +The staggered-grid or marker-and-cell method uses a finite volume method with different control volumes for different equations. There are control volumes centered around the scalar primary variables. They correspond to the finite volume mesh. Additionally, there are control volumes located around the $x,y$ and (in 3D) $z$ velocity components which are shifted in the $x,y$ and $z$ direction, such that the velocity components are located on the edges of the cell-centered finite volume mesh (see Figure~\ref{pc:staggered}). As for the cell-centered method, the fluxes are evaluated at the edges of each control volume with a two-point flux approximation, cf. \ref{cc}.\par The staggered-grid method is robust, mass conservative, and free of pressure oscillations but should, as the cell-centered TPFA method, only be applied for structured grids. -At the moment the staggered-grid is the base discretization for all free-flow models. +Currently, all free-flow models in \Dumux use the staggered-grid discretization. diff --git a/doc/handbook/5_stepsofasimulation.tex b/doc/handbook/5_stepsofasimulation.tex index d95e350aa94cf004be9bd1118f06f733baae9b24..96e521aa9d6e41208c68356b49ed7b725f533285 100644 --- a/doc/handbook/5_stepsofasimulation.tex +++ b/doc/handbook/5_stepsofasimulation.tex @@ -2,17 +2,12 @@ \label{flow} -This chapter is supposed to show how things are ``handed around'' in \Dumux. It +This chapter is supposed to give a short overview over how things are ``handed around'' in \Dumux. It is not a comprehenisve guide through the modeling framework of \Dumux, but hopefully it will help getting to grips with it. In Section \ref{content} the structure of \Dumux is shown from a \emph{content} point of view. -% TODO: revise section about implementation structure -% Section \ref{implementation} however is written from the point of view of the \emph{implementation}. -% The same coloration in the flowcharts of both sections refers to the same level of calculation. For keeping things -% simple, the program flow of a \verb+2p+ model is shown in section \ref{implementation}. There are extensive comments -% regarding the formating in the tex file: so feel free, to enhance this description. \subsection{Structure -- by Content} @@ -21,12 +16,11 @@ In Figure \ref{fig:algorithm}, the algorithmic representations of a monolithical solution solution scheme is illustrated down to the element level. \begin{figure}[hbt] -% \begin{tabular}{ l | l } -% \begin{minipage}[t]{0.48\textwidth} \setcounter{thingCounter}{0} \scriptsize \sffamily +\begin{center}\parbox{0cm}{ \begin{tabbing} \textbf{{\begin{turn}{45}\color{black}\numberThis{main}{init}\end{turn}}} \= \textbf{{\begin{turn}{45}\color{dumuxBlue}\numberThis{time step}{prep}\end{turn}}} \= @@ -36,7 +30,6 @@ solution solution scheme is illustrated down to the element level. \color{black}initialize \\ \color{black}\textbf{foreach} time step\\ - \> \color{dumuxBlue}prepare update\\ \> \color{dumuxBlue}\textbf{foreach} \textsc{Newton} iteration \\ \> \> \color{Mulberry}\textbf{foreach} element \\ @@ -59,354 +52,13 @@ solution solution scheme is illustrated down to the element level. \> \color{dumuxBlue}- write result\\ \color{black}\textbf{endfor}\\ \color{black}finalize -\end{tabbing} - -% \end{minipage} -% -% & - -% TODO: revise second figure -% \begin{minipage}[t]{0.48\textwidth} -% \setcounter{thingCounter}{0} -% -% \scriptsize -% \sffamily -% \begin{tabbing} -% \textbf{{\begin{turn}{45}\color{black}1. main\end{turn}}} \= -% \textbf{{\begin{turn}{45}\color{dumuxBlue}2. time step\end{turn}}} \= -% \textbf{{\begin{turn}{45}\color{Mulberry}3. \textsc{IMPES/C}\end{turn}}} \= -% \textbf{{\begin{turn}{45}\color{dumuxYellow}4. element\end{turn}}} \= \\ -% \\ -% \color{black}initialize \\ -% \color{black}\textbf{foreach} time step\\ -% -% \> \color{dumuxBlue}prepare update\\ -% \> \color{dumuxBlue}\textbf{foreach} \textsc{IMPES/C} step \\ -% \> \> \color{Mulberry}\textbf{if} grid is adaptive\\ -% \> \> \> \color{dumuxYellow}- calculate refinement indicator\\ -% \> \> \> \color{dumuxYellow}- mark elements, adapt the grid\\ -% \> \> \> \color{dumuxYellow}- map old solution to new grid\\ -% \> \> \color{Mulberry}- calculate {flow field}\\ -% \> \> \color{Mulberry}\textbf{foreach} element \\ -% -% \> \> \> \color{dumuxYellow}- calculate element stiffness matrix \\ -% \> \> \> \color{dumuxYellow}- assemble into global matrix \\ -% -% \> \> \color{Mulberry} \textbf{endfor} \\ -% \> \> \color{Mulberry} solve linear system\\ -% -% \> \> \color{Mulberry}- calculate {transport} \\ -% \> \> \color{Mulberry}\; (saturations, concentrations,...) \\ -% \> \> \color{Mulberry}\textbf{foreach} element \\ -% \> \> \> \color{dumuxYellow}-calculate update (explicitly) \\ -% \> \> \> \color{dumuxYellow}- adapt time step ({CFL}-like criterion) \\ -% \> \> \color{Mulberry}\textbf{endfor} \\ -% \> \> \color{Mulberry}- update old solution \\ -% \> \> \color{Mulberry}- postprocess (flash calculation, etc.)\\ -% \> \color{dumuxBlue}\textbf{endfor}\\ -% \> \color{dumuxBlue}- write result\\ -% \color{black}\textbf{endfor}\\ -% finalize -% \end{tabbing} -% -% \end{minipage} -% \end{tabular} - -% \caption{Structure of a fully implicit (\textbf{left}) and a sequential -% (\textbf{right}) scheme in \Dumux.} +\end{tabbing}} +\end{center} \caption{Structure of a monolithical solution scheme in \Dumux.} \label{fig:algorithm} \end{figure} -% \subsection{Structure -- by Implementation} -% \label{implementation} -% This section is supposed to help you in getting an idea how things are handled in -% \Dumux and in which files things are written down. -% This is not intuitivly clear, therefore it is mentioned for each \fbox{step-stone}. -% \textbf{called by} tells you from which file a function is -% accessed. \textbf{implemented in} tells you in which file the function is written -% down. The name of the function is set in \verb+typewriter+. -% Being a function is indicated by round brackets \verb+()+ but only the function -% name is given and not the full signature (arguments...) . -% Comments regarding the events within one step-stone are set \scriptsize{smaller}. -% -% \begin{landscape} -% \pagestyle{empty} % switch off headings and footer in order to get more space for the flowchart -% \setlength{\voffset}{4.2cm} -% -% % command for blocks -% \newcommand{\step}[6]{ -% \begin{minipage}{7.5cm} -% {\tiny \color{#1}\texttt{#2} $\Rightarrow$ \texttt{#3}}\\ -% \fcolorbox{#1}{white}{ -% \begin{minipage}{7.0cm} -% \begin{scriptsize} -% \texttt{#4} \hfill \color{gray}in: #5\color{black}\\ -% \hphantom{m}\begin{minipage}[t]{6.8cm}#6\end{minipage} -% \end{scriptsize} -% \end{minipage}} -% \end{minipage} -% } -% -% % command for the arrow with text -% \newcommand{\longArrow}[1]{ -% \begin{minipage}[b]{7.5cm} -% \fcolorbox{white}{white}{ -% \begin{minipage}[b]{7.0cm} -% \begin{center} -% \begin{scriptsize} -% $\overrightarrow{ %an arrow under which things may be written -% \begin{array}{c} % in order to be able to write multiple lines under the arrow -% #1\\ -% \hphantom{\hspace{6.5cm}} -% \end{array} -% }$ -% \end{scriptsize} -% \end{center} -% \end{minipage}% -% } -% \end{minipage}% -% \hphantom{ $\overrightarrow{}$}% -% } -% -% % command for the arrow between steps -% \newcommand{\shortArrow}{$\overrightarrow{}$} -% -% % command for marking things as model specific -% \newcommand{\modelSpecific}{\emph{model specific}\xspace} -% -% % the distance between two lines -% \newcommand{\dummyDistance}{\\[4\baselineskip]} -% -% % THE FLOW CHART STARTS HERE -% \noindent -% \step{black}{main()}{Dumux::start<ProblemTypeTag>() $\Rightarrow$ start\_()}{start\_()}{start.hh}% -% {start the simulation} -% \shortArrow -% \step{black}{start\_()}{timeManager.init()}{init()}{timemanager.hh}% -% {initialization} -% \shortArrow -% \step{black}{start\_()}{timeManager.run()}{run()}{timemanager.hh}% -% {time step management} -% \dummyDistance -% % -% \longArrow{ -% \textnormal{\texttt{while(!finished)}}\\ -% \textnormal{\color{black}main} -% \rightarrow \textnormal{\color{dumuxBlue}time step} -% } -% \step{dumuxBlue}{run()}{problem->timeIntegration()}{timeIntegration()}{implicitproblem.hh}% -% {execute time integration scheme}% -% \longArrow{ -% \textnormal{define number of allowed \textsc{Newton} fails}\\ -% \textnormal{(each halving dt)} -% } -% \dummyDistance -% % -% \step{dumuxBlue}{timeIntegration()}{model->update()}{update()}{implicitmodel.hh}% -% {sth like numerical model} -% \shortArrow -% \step{dumuxBlue}{update()}{solver.execute()}{execute()}{newtonmethod.hh}% -% {applying \textsc{Newton} method\\ -% keeps track of things, catching errors} -% \longArrow{ -% \textnormal{\color{dumuxBlue}time step} -% \rightarrow \textnormal{\color{Mulberry}Newton step}\\ -% \texttt{while(ctl.newtonProceed()}\\ -% \textnormal{uLastIter = uCurrentIter(model.uCur())} -% } -% \dummyDistance -% % -% \noindent -% \step{Mulberry}{execute() $\Rightarrow$ execute\_()}{jacobianAsm.assemble()}{assemble()}{implicitassembler.hh}% -% {linearize the problem:\\ -% add all element contributions to global \textsc{Jacobian} -% and global residual}% -% \shortArrow -% \step{Mulberry}{assemble() $\Rightarrow$ asImp\_().assemble\_()}{resetSystem\_()}{resetSystem\_()}{implicitassembler.hh}% -% {set r.h.s. (i.e. residual)\\ -% set \textsc{Jacobian} to zero } -% \longArrow{ -% \textnormal{\color{Mulberry}Newton step} -% \rightarrow \textnormal{\color{dumuxYellow}element}\\ -% \texttt{loop all elements}\\ -% } -% \dummyDistance -% % -% \noindent -% \step{dumuxYellow}{assemble() $\Rightarrow$ asImp\_().assemble\_()}{asImp\_().assembleElement\_()}{assembleElement\_()}{e.g. boxassembler.hh}% -% {call local \textsc{Jacobian} and residual assembly}% -% \shortArrow -% \step{dumuxYellow}{assembleElement\_()}{model\_().localJacobian().assemble()}{assemble()}{implicitlocaljacobian.hh}% -% {set curr. element, update element's fin.vol.geom.\\ -% reset local \textsc{Jacobian} to 0\\ -% update types of boundaries on this element}% -% \shortArrow -% \step{dumuxYellow}{assemble()}{prevVolVars\_.update(),curVolVars\_.update()}{update()}{e.g. 2pvolumevariables.hh}% -% {call model (e.g. \texttt{2p})specific update of quantities defined for the volume:\\ -% variables for the \emph{current} and \emph{previous} timestep}% -% \dummyDistance -% % -% \noindent -% \step{dumuxYellow}{update()}{completeFluidState()}{completeFluidState()}{e.g. 2pvolumevariables.hh}% -% {calculate all required fluid properties from the primary variables, -% here the fluid system does the real work:\\ -% calculates, saves, and provides: densities, etc.} -% \shortArrow -% \step{dumuxYellow}{assemble()}{localResidual().eval()$\Rightarrow$asImp\_().eval()}{eval()}{e.g. implicitlocalresidual.hh}% -% {the element's local residual is calculated:\\ -% see the next two stepstones}% -% \shortArrow -% \step{dumuxYellow}{eval()}{asImp\_().evalFluxes\_()}{evalFluxes\_()}{e.g. boxlocalresidual.hh}% -% {evaluate the fluxes going into each finite volume, -% this is \modelSpecific} -% \dummyDistance -% % -% \step{dumuxYellow}{evalFluxes\_()}{this$\rightarrow$asImp\_().computeFlux()}{computeFlux()}{e.g. 2plocalresidual.hh}% -% {this calculate the \modelSpecific fluxes (e.g. advective and diffusive) -% using the \texttt{FluxVariables}} -% \shortArrow -% \step{dumuxYellow}{eval()}{asImp\_().evalVolumeTerms\_()}{evalVolumeTerms\_()}{implicitlocalresidual.hh}% -% {evaluate the \modelSpecific storage and source terms for each finite volume}% -% \shortArrow -% \step{dumuxYellow}{eval()}{asImp\_().evalBoundary\_()}{evalBoundary\_()}{implicitlocalresidual.hh}% -% {evaluate the \modelSpecific boundary conditions}% -% \dummyDistance -% % -% \step{dumuxYellow}{assemble()}{asImp\_().evalPartialDerivative\_()}{evalPartialDerivative\_()}{e.g. implicitlocaljacobian.hh}% -% {actually calculate the element's (local) \textsc{Jacobian}\\ -% matrix a property chooses backward/central/foward\\ -% differences. here: central differences} -% \shortArrow -% \begin{minipage}{0.50\textwidth} -% \begin{scriptsize}\textnormal{approximation of partial derivatives: numerical differentiation}\end{scriptsize}\\ -% \begin{scriptsize}\textnormal{add $\pm \epsilon$ solution, divide difference of residual by $2\epsilon$}\end{scriptsize}\\ -% \begin{scriptsize}\textnormal{all partial derivatives for the element from the local \textsc{Jacobian} matrix}\end{scriptsize}\\ -% $\left \lbrace -% \begin{tabular}{l}%these question marks are for the \verb, not meant as ``unclear'' -% \verb?priVars[pvIdx]+=eps?\\ -% \begin{scriptsize}\textnormal{this is adding eps to the current solution}\end{scriptsize}\\ -% \verb?curVolVars_[scvIdx].update(+eps)?\\ -% \begin{scriptsize}\textnormal{recalculate volume variables, having $\epsilon$ added}\end{scriptsize}\\ -% \verb?localResidual().eval(+eps)?\\ -% \begin{scriptsize}\textnormal{calculate local residual for modified solution as before: involves}\end{scriptsize}\\ -% {\scriptsize $\begin{array}{l} -% \textnormal{- \textbf{computeFlux}}\\ -% \textnormal{- \textbf{computeStorage}}\\ -% \textnormal{- \textbf{computeSource}} \\ -% \end{array}$} \\ -% \verb?store the residual()?\\ -% \verb?repeat for priVars[pvIdx]-=eps?\\ -% \verb?derivative is (residual(+eps) - residual(-eps))/2eps?\\ -% \end{tabular} -% \right . -% $ -% \end{minipage} -% \dummyDistance -% % -% \step{dumuxYellow}{assemble\_()}{asImp\_().assembleElement\_()}{assembleElement\_()}{implicitassembler.hh}% -% {Residual of the current solution is now\\ -% ``numerically differentiated'', for the element i.e.\\ -% the local \textsc{Jacobian} matrix is calculated. }% -% \longArrow{ -% \textnormal{The contribution of a single element is done.}\\ -% \textnormal{Now, it needs to be added to the global quantities:}\\ -% \textnormal{Add to global residual and global \textsc{Jacobian}}.} -% \step{dumuxYellow}{assemble\_()}{asImp\_().assembleElement\_()}{assembleElement\_()}{e.g. boxassembler.hh} -% {Add to global residual.:\\ -% \texttt{resdidual\_[globI+=\\model\_().globalJacobian().resdidual(i)]}} -% \dummyDistance -% % -% \longArrow{ -% \textnormal{loop vertices}\\ -% \textnormal{of an element} -% } -% \step{dumuxYellow}{assemble\_()}{asImp\_().assembleElement\_()}{assembleElement\_()}{e.g. boxassembler.hh} -% {Add to global residual:\\ -% \texttt{(*matrix\_)[globI][globJ] +=\\model\_().localJacobian().mat(i,j)}} -% \longArrow{ -% \textbf{\textbf{\color{dumuxYellow}element}} -% \rightarrow \textbf{\color{Mulberry}Newton step}\\ -% \textnormal{Assembling of elements to global quantities is done.} -% } -% \dummyDistance -% % -% \step{Mulberry}{execute\_()}{while(ctl.newtonProceed())}{newtonProceed()}{newtoncontroller.hh}% -% {Print information.\\ -% Start/ stop timer.}% -% -% \longArrow{ -% \textnormal{set delta Vector to zero} \\ -% \textnormal{(this is what is}\\ -% \textnormal{solved for later)}\\ -% } -% \step{Mulberry}{execute\_()}{ctl.newtonSolveLinear()}{newtonSolveLinear()}{newtoncontroller.hh}% -% {Catching errors.\\ -% Ask the linear solver to solve the system.\\ -% i.e.: give \textsc{Jacobian}(matrix), delta(x), r.h.s.(residual) to linear solver\\ -% $\nabla r(x^k) \cdot \Delta x^k = r(x^k)$\\ -% tricky: each \textsc{Newton} step solves a linear system of equations.}% -% \shortArrow -% \step{Mulberry}{newtonSolveLinear()}{int converged = linearSolver\_.solve()}{solve()}{boxlinearsolver.hh}% -% {Solve the linear system with the chosen backend.}% -% \dummyDistance -% % -% \step{Mulberry}{execute\_()}{ctl.newtonUpdate()}{newtonUpdate()}{newtoncontroller.hh}% -% {We solved for the change in solution, but need the solution:\\ -% Calculate current (this iteration) solution\\ -% \quad from last (iteration) solution and current (iteration) change in solution:\\ -% $x^{k+1} = x^k - \Delta x^k$ where $\Delta x^k = (\nabla r(x^k))^{-1} \cdot r(x^k)$} -% \shortArrow -% \step{Mulberry}{execute\_()}{ctl.newtonEndStep()}{newtonEndStep()}{newtoncontroller.hh}% -% {Increase counter for number of \textsc{Newton} steps.\\ -% Print info.}% -% \longArrow{ -% \textnormal{check whether to do another \textsc{Newton} iteration:} \\ -% \textnormal{that is: check if the error is below tolerance or}\\ -% \textnormal{maximum number of iterations was reached.} -% } -% \dummyDistance -% % -% \longArrow{ -% \textbf{\textbf{\color{Mulberry}Newton step}} -% \rightarrow \textbf{\color{dumuxBlue}Time step}\\ -% \textnormal{\textsc{Newton} done}\\ -% \textnormal{if failed $\rightsquigarrow$ halve timestep size, restart loop}\\ -% } -% \step{dumuxBlue}{execute\_()}{ctl.newtonEnd()}{newtonEnd()}{newtoncontroller.hh}% -% {Tell the controller we are done}% -% \shortArrow -% \step{dumuxBlue}{update()}{asImp\_().updateSuccessful()}{updateSuccessful()}{e.g. implicitmodel.hh}% -% {can be filled \modelSpecific}% -% \dummyDistance -% % -% \longArrow{ -% \textnormal{in while(!finished)} -% } -% \step{dumuxBlue}{run()}{problem\_->postTimeStep()}{postTimeStep(),writeOutput()}{implicitproblem.hh}% -% {Give the problem the chance to post-process the solution.}% -% \longArrow{ -% \textnormal{write output}\\ -% \textnormal{uPrev $\leftarrow$ uCur}\\ -% \textnormal{time += dt, timestepIdx++}\\ -% \textnormal{deal with restart and episodes } -% } -% \dummyDistance -% % -% \step{dumuxBlue}{run()$\Rightarrow$setTimeStepSize(problem\_->nextTimeStepSize(dt))\\ -% $\Rightarrow$nextTimeStepSize()} -% {newtonCtl\_.suggestTimestepSize()}{suggestTimestepSize()}{newtoncontroller.hh}% -% {Determine new time step size from number of \textsc{Newton} steps.}% -% \longArrow{ -% \textbf{\color{dumuxBlue}Time step} -% \rightarrow \textbf{\color{black}main}\\ -% \textnormal{loop until simulation is finished} -% } -% -% \end{landscape} -% -% \newpage -% % Original pagestyle (headings and footer) were switched off, -% % in order to get more space for the flowchart. -% \pagestyle{scrheadings} -% \normalsize +\subsection{Structure -- by Implementation} +A possible starting point to understand how the abovementioned algorithm is implemented within \Dumux, +is the example main file +\url{https://git.iws.uni-stuttgart.de/dumux-repositories/dumux-course/releases/3.0/exercises/exercise-mainfile/exercise_1p_a.cc} diff --git a/doc/handbook/CMakeLists.txt b/doc/handbook/CMakeLists.txt index ea2f0e6c6cfee59ffa8912e00154110383478cc5..5b3a54ea25982e5640bbc939e4e6cf579352b358 100644 --- a/doc/handbook/CMakeLists.txt +++ b/doc/handbook/CMakeLists.txt @@ -4,31 +4,33 @@ set(TEX_INPUTS 1_introduction.tex 2_detailedinstall.tex 2_quickinstall.tex - 3_tutorial.tex + 3_course.tex 3_furtherpractice.tex 4_assemblinglinearsystem.tex - 4_guidelines.tex 4_developingdumux.tex 4_externaltools.tex 4_newfoldersetup.tex 4_parameterfiles.tex 4_restartsimulations.tex 4_structure.tex - 5_stepsofasimulation.tex - 5_grids.tex + 5_inputoutput.tex 5_models.tex + 5_parallel.tex 5_propertysystem.tex 5_spatialdiscretizations.tex + 5_stepsofasimulation.tex installDumux.sh) set(TEX_IMAGES - PNG/box_disc.png - PNG/cc_disc.png - PNG/dumux_strucutre_flowchart_horizontal_explained.png - PNG/dunedesign.png + png/box_disc.png + png/cctpfa.png + png/dumux_strucutre_flowchart_horizontal_explained.png + png/dunedesign.png ../logo/dumux_logo_hires_whitebg.png - PNG/dalton1.png - PNG/dalton2.png) + png/dalton1.png + png/dalton2.png + pdf/staggered_grid.pdf + png/mpfa_iv.png) dune_add_latex_document(0_dumux-handbook.tex BIBFILES dumux-handbook.bib diff --git a/doc/handbook/PNG/dalton1.png b/doc/handbook/PNG/dalton1.png deleted file mode 100644 index f78081daeb94c010ee1986d1ea4523f4800dc530..0000000000000000000000000000000000000000 Binary files a/doc/handbook/PNG/dalton1.png and /dev/null differ diff --git a/doc/handbook/PNG/dalton2.png b/doc/handbook/PNG/dalton2.png deleted file mode 100644 index 6d8a861bedadeb6cba69402e750fed07adafdfe3..0000000000000000000000000000000000000000 Binary files a/doc/handbook/PNG/dalton2.png and /dev/null differ diff --git a/doc/handbook/installDumux.sh b/doc/handbook/installDumux.sh index bca2ab4612c51921a4048f3826fbda70edb282f2..74b14f05cb754c75aab1060ceca63cbc5c6a3d64 100644 --- a/doc/handbook/installDumux.sh +++ b/doc/handbook/installDumux.sh @@ -11,22 +11,22 @@ echo "*************************************************" # the core modules for MOD in common geometry grid localfunctions istl; do if [ ! -d "dune-$MOD" ]; then - git clone -b releases/2.5 https://gitlab.dune-project.org/core/dune-$MOD.git + git clone -b releases/2.6 https://gitlab.dune-project.org/core/dune-$MOD.git else echo "Skip cloning dune-$MOD because the folder already exists." cd dune-$MOD - git checkout releases/2.5 + git checkout releases/2.6 cd .. fi done # dumux if [ ! -d "dumux" ]; then - git clone -b 3.0.0-alpha https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git + git clone -b releases/3.0 https://git.iws.uni-stuttgart.de/dumux-repositories/dumux.git else echo "Skip cloning dumux because the folder already exists." cd dumux - git checkout 3.0.0-alpha + git checkout releases/3.0 cd .. fi @@ -42,7 +42,7 @@ echo "(2/2) Configure dune modules and dumux. Build the dune libaries. This may take several minutes." echo "*************************************************" # run build -./dune-common/bin/dunecontrol --opts=dumux/myoptim.opts all +./dune-common/bin/dunecontrol --opts=dumux/optim.opts all # if [ $? -ne 0 ]; then echo "*************************************************" diff --git a/doc/handbook/pdf/staggered_grid.pdf b/doc/handbook/pdf/staggered_grid.pdf new file mode 100644 index 0000000000000000000000000000000000000000..35fd6e39ef023091f7745dc16e306560fc4dce10 Binary files /dev/null and b/doc/handbook/pdf/staggered_grid.pdf differ diff --git a/doc/handbook/PNG/box_disc.png b/doc/handbook/png/box_disc.png similarity index 100% rename from doc/handbook/PNG/box_disc.png rename to doc/handbook/png/box_disc.png diff --git a/doc/handbook/PNG/cc_disc.png b/doc/handbook/png/cc_disc.png similarity index 100% rename from doc/handbook/PNG/cc_disc.png rename to doc/handbook/png/cc_disc.png diff --git a/doc/handbook/png/cctpfa.png b/doc/handbook/png/cctpfa.png new file mode 100644 index 0000000000000000000000000000000000000000..ef61ef9cba8a11c77cda9f2fa847b91c5a26f12e Binary files /dev/null and b/doc/handbook/png/cctpfa.png differ diff --git a/doc/handbook/png/dalton1.png b/doc/handbook/png/dalton1.png new file mode 100644 index 0000000000000000000000000000000000000000..b681e597953cffe3cae320f8d029188c5e187cab Binary files /dev/null and b/doc/handbook/png/dalton1.png differ diff --git a/doc/handbook/png/dalton2.png b/doc/handbook/png/dalton2.png new file mode 100644 index 0000000000000000000000000000000000000000..be04f04bfad603d43b39830d4174b3cc3749f913 Binary files /dev/null and b/doc/handbook/png/dalton2.png differ diff --git a/doc/handbook/PNG/dumux_strucutre_flowchart_horizontal_explained.png b/doc/handbook/png/dumux_strucutre_flowchart_horizontal_explained.png similarity index 100% rename from doc/handbook/PNG/dumux_strucutre_flowchart_horizontal_explained.png rename to doc/handbook/png/dumux_strucutre_flowchart_horizontal_explained.png diff --git a/doc/handbook/PNG/dunedesign.png b/doc/handbook/png/dunedesign.png similarity index 100% rename from doc/handbook/PNG/dunedesign.png rename to doc/handbook/png/dunedesign.png diff --git a/doc/handbook/png/mpfa_iv.png b/doc/handbook/png/mpfa_iv.png new file mode 100644 index 0000000000000000000000000000000000000000..a54765dd8792a7e66b783696048467143c90cdec Binary files /dev/null and b/doc/handbook/png/mpfa_iv.png differ diff --git a/doc/handbook/SVG/box_disc.svg b/doc/handbook/svg/box_disc.svg similarity index 100% rename from doc/handbook/SVG/box_disc.svg rename to doc/handbook/svg/box_disc.svg diff --git a/doc/handbook/SVG/cc_disc.svg b/doc/handbook/svg/cc_disc.svg similarity index 100% rename from doc/handbook/SVG/cc_disc.svg rename to doc/handbook/svg/cc_disc.svg diff --git a/doc/handbook/svg/cctpfa.svg b/doc/handbook/svg/cctpfa.svg new file mode 100644 index 0000000000000000000000000000000000000000..490ab0a792c6faf5e8f196c3df9696449fb35c7d --- /dev/null +++ b/doc/handbook/svg/cctpfa.svg @@ -0,0 +1,800 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:ns0="http://www.iki.fi/pav/software/textext/" + xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" + 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:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="71.802628mm" + height="40.243732mm" + viewBox="0 0 254.41874 142.5959" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="cctpfa.svg" + inkscape:export-filename="/temp/martins/DUMUX-3.0/dumux/doc/handbook/PNG/cctpfa.png" + inkscape:export-xdpi="600" + inkscape:export-ydpi="600"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.979899" + inkscape:cx="44.448389" + inkscape:cy="49.744113" + inkscape:document-units="px" + inkscape:current-layer="layer1" + showgrid="false" + inkscape:window-width="1920" + inkscape:window-height="1015" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + fit-margin-top="0" + fit-margin-left="0" + fit-margin-right="0" + fit-margin-bottom="0" /> + <defs + id="defs4"> + <inkscape:path-effect + is_visible="true" + id="path-effect4310" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4306" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4294" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4290" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4274" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4362" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect4346" + effect="spiro" /> + <linearGradient + id="linearGradient8369" + osb:paint="solid"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop8371" /> + </linearGradient> + <marker + inkscape:stockid="Arrow2Mstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Mstart" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path5803" + 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,0.6)" /> + </marker> + <marker + inkscape:stockid="Arrow1Lend" + orient="auto" + refY="0" + refX="0" + id="Arrow1Lend" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path5782" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.8,0,0,-0.8,-10,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mstart" + orient="auto" + refY="0" + refX="0" + id="Arrow2Mstart-2" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path5803-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,0.6)" /> + </marker> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + transform="translate(-208.76986,-105.29102)" + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 209.28571,114.8622 3.44253,112.36607 85.84319,20.13393 44.64286,-19.46428 -27.18448,-110.92737 z" + id="path4152" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccc" /> + <ellipse + style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:26.36899948;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4287" + cx="273.60333" + cy="173.65892" + rx="3.5" + ry="3.325" /> + <ellipse + style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:26.36899948;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4287-3" + cx="394.74966" + cy="166.06581" + rx="3.5" + ry="3.325" /> + <g + transform="matrix(2,0,0,2,-187.0287,-79.592661)" + ns0:text="$\\mathbf{x}_K$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + id="g4934"> + <defs + id="defs4936"> + <g + id="g4938"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-dc706633-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path4941" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-dc706633-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.453125,-2.453125 4.609375,-3.75 C 4.75,-3.890625 4.8125,-3.953125 5.625,-3.953125 l 0,-0.46875 c -0.34375,0.015625 -0.859375,0.03125 -0.90625,0.03125 -0.25,0 -0.75,-0.03125 -1.03125,-0.03125 l 0,0.46875 c 0.140625,0 0.265625,0.015625 0.375,0.078125 -0.03125,0.0625 -0.03125,0.09375 -0.078125,0.125 l -0.828125,0.9375 -0.984375,-1.140625 0.40625,0 0,-0.46875 c -0.265625,0 -0.890625,0.03125 -1.21875,0.03125 -0.3125,0 -0.765625,-0.03125 -1.09375,-0.03125 l 0,0.46875 0.71875,0 1.546875,1.828125 -1.3125,1.46875 c -0.15625,0.1875 -0.515625,0.1875 -1,0.1875 l 0,0.46875 c 0.34375,-0.015625 0.875,-0.03125 0.921875,-0.03125 0.25,0 0.828125,0.015625 1.015625,0.03125 l 0,-0.46875 c -0.171875,0 -0.359375,-0.046875 -0.359375,-0.109375 0,-0.015625 0,-0.015625 0.0625,-0.09375 l 0.96875,-1.09375 1.09375,1.296875 -0.390625,0 0,0.46875 c 0.265625,-0.015625 0.875,-0.03125 1.203125,-0.03125 0.3125,0 0.765625,0.015625 1.09375,0.03125 l 0,-0.46875 -0.703125,0 z m 0,0" + id="path4944" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-dc706633-2"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path4947" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-dc706633-3"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.984375,-2.796875 C 3.953125,-2.859375 3.9375,-2.875 3.9375,-2.890625 c 0,-0.015625 0.015625,-0.015625 0.171875,-0.125 l 0.703125,-0.5 c 0.921875,-0.640625 1.359375,-0.953125 1.84375,-1 0.078125,0 0.171875,0 0.171875,-0.140625 0,-0.0625 -0.046875,-0.09375 -0.09375,-0.09375 -0.15625,0 -0.328125,0.015625 -0.484375,0.015625 -0.1875,0 -0.65625,-0.03125 -0.84375,-0.03125 -0.046875,0 -0.140625,0 -0.140625,0.15625 0,0.015625 0,0.09375 0.09375,0.09375 0.09375,0.015625 0.1875,0.03125 0.1875,0.109375 0,0.125 -0.21875,0.28125 -0.3125,0.34375 L 2.328125,-2.015625 2.875,-4.21875 c 0.0625,-0.234375 0.078125,-0.296875 0.609375,-0.296875 0.125,0 0.21875,0 0.21875,-0.140625 0,-0.0625 -0.046875,-0.109375 -0.109375,-0.109375 -0.203125,0 -0.71875,0.03125 -0.921875,0.03125 -0.109375,0 -0.359375,0 -0.484375,0 C 2.0625,-4.75 1.890625,-4.765625 1.75,-4.765625 c -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.234375,0.09375 0.109375,0 0.140625,0 0.265625,0.015625 0.140625,0.015625 0.15625,0.03125 0.15625,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.9375,3.703125 C 1.25,-0.3125 1.234375,-0.25 0.6875,-0.25 c -0.125,0 -0.203125,0 -0.203125,0.15625 0,0 0,0.09375 0.109375,0.09375 0.203125,0 0.703125,-0.03125 0.90625,-0.03125 0.109375,0 0.359375,0 0.484375,0.015625 C 2.125,-0.015625 2.296875,0 2.421875,0 2.46875,0 2.578125,0 2.578125,-0.15625 2.578125,-0.25 2.484375,-0.25 2.34375,-0.25 c 0,0 -0.140625,0 -0.265625,-0.015625 C 1.921875,-0.28125 1.921875,-0.296875 1.921875,-0.375 1.921875,-0.421875 2,-0.6875 2.25,-1.703125 l 1.15625,-0.8125 1.015625,1.953125 c 0.046875,0.09375 0.046875,0.09375 0.046875,0.125 0,0.171875 -0.203125,0.1875 -0.328125,0.1875 -0.078125,0 -0.171875,0 -0.171875,0.15625 0,0 0,0.09375 0.109375,0.09375 C 4.28125,0 4.78125,-0.03125 4.96875,-0.03125 5.1875,-0.03125 5.46875,0 5.65625,0 5.75,0 5.796875,-0.046875 5.796875,-0.140625 5.796875,-0.25 5.703125,-0.25 5.640625,-0.25 c -0.125,0 -0.34375,-0.015625 -0.46875,-0.234375 z m 0,0" + id="path4950" /> + </symbol> + </g> + </defs> + <g + id="textext-dc706633-4"> + <g + style="fill:#000000;fill-opacity:1" + id="g4953"> + <use + height="100%" + width="100%" + xlink:href="#textext-dc706633-1" + x="223.43201" + y="134.765" + id="use4955" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g4957"> + <use + height="100%" + width="100%" + xlink:href="#textext-dc706633-3" + x="229.479" + y="136.259" + id="use4959" /> + </g> + </g> + </g> + <g + id="g5119" + transform="matrix(2,0,0,2,-50.45217,-88.701173)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$\\mathbf{x}_L$"> + <defs + id="defs5121"> + <g + id="g5123"> + <symbol + style="overflow:visible" + id="textext-96de7a1a-0" + overflow="visible"> + <path + inkscape:connector-curvature="0" + id="path5126" + d="" + style="stroke:none" /> + </symbol> + <symbol + style="overflow:visible" + id="textext-96de7a1a-1" + overflow="visible"> + <path + inkscape:connector-curvature="0" + id="path5129" + d="M 3.453125,-2.453125 4.609375,-3.75 C 4.75,-3.890625 4.8125,-3.953125 5.625,-3.953125 l 0,-0.46875 c -0.34375,0.015625 -0.859375,0.03125 -0.90625,0.03125 -0.25,0 -0.75,-0.03125 -1.03125,-0.03125 l 0,0.46875 c 0.140625,0 0.265625,0.015625 0.375,0.078125 -0.03125,0.0625 -0.03125,0.09375 -0.078125,0.125 l -0.828125,0.9375 -0.984375,-1.140625 0.40625,0 0,-0.46875 c -0.265625,0 -0.890625,0.03125 -1.21875,0.03125 -0.3125,0 -0.765625,-0.03125 -1.09375,-0.03125 l 0,0.46875 0.71875,0 1.546875,1.828125 -1.3125,1.46875 c -0.15625,0.1875 -0.515625,0.1875 -1,0.1875 l 0,0.46875 c 0.34375,-0.015625 0.875,-0.03125 0.921875,-0.03125 0.25,0 0.828125,0.015625 1.015625,0.03125 l 0,-0.46875 c -0.171875,0 -0.359375,-0.046875 -0.359375,-0.109375 0,-0.015625 0,-0.015625 0.0625,-0.09375 l 0.96875,-1.09375 1.09375,1.296875 -0.390625,0 0,0.46875 c 0.265625,-0.015625 0.875,-0.03125 1.203125,-0.03125 0.3125,0 0.765625,0.015625 1.09375,0.03125 l 0,-0.46875 -0.703125,0 z m 0,0" + style="stroke:none" /> + </symbol> + <symbol + style="overflow:visible" + id="textext-96de7a1a-2" + overflow="visible"> + <path + inkscape:connector-curvature="0" + id="path5132" + d="" + style="stroke:none" /> + </symbol> + <symbol + style="overflow:visible" + id="textext-96de7a1a-3" + overflow="visible"> + <path + inkscape:connector-curvature="0" + id="path5135" + d="m 2.875,-4.1875 c 0.0625,-0.25 0.078125,-0.328125 0.71875,-0.328125 0.21875,0 0.28125,0 0.28125,-0.140625 0,-0.015625 0,-0.109375 -0.109375,-0.109375 -0.15625,0 -0.34375,0.015625 -0.515625,0.03125 -0.171875,0 -0.390625,0 -0.5625,0 -0.140625,0 -0.328125,0 -0.484375,0 -0.140625,0 -0.3125,-0.03125 -0.453125,-0.03125 -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.21875,0.09375 0.015625,0 0.140625,0 0.265625,0.015625 0.15625,0.015625 0.171875,0.03125 0.171875,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.9375,3.703125 C 1.234375,-0.3125 1.21875,-0.25 0.6875,-0.25 c -0.109375,0 -0.203125,0 -0.203125,0.140625 C 0.484375,0 0.5625,0 0.6875,0 l 3.5,0 c 0.1875,0 0.1875,0 0.25,-0.140625 0.0625,-0.1875 0.59375,-1.53125 0.59375,-1.59375 0,-0.015625 -0.015625,-0.09375 -0.125,-0.09375 -0.078125,0 -0.09375,0.03125 -0.140625,0.140625 C 4.5,-1.03125 4.1875,-0.25 2.921875,-0.25 l -0.796875,0 c -0.203125,0 -0.21875,-0.015625 -0.21875,-0.078125 0,0 0,-0.03125 0.03125,-0.140625 z m 0,0" + style="stroke:none" /> + </symbol> + </g> + </defs> + <g + id="textext-96de7a1a-4"> + <g + id="g5138" + style="fill:#000000;fill-opacity:1"> + <use + height="100%" + width="100%" + id="use5140" + y="134.765" + x="223.43201" + xlink:href="#textext-96de7a1a-1" /> + </g> + <g + id="g5142" + style="fill:#000000;fill-opacity:1"> + <use + height="100%" + width="100%" + id="use5144" + y="136.259" + x="229.479" + xlink:href="#textext-96de7a1a-3" /> + </g> + </g> + </g> + <g + ns0:text="$\\sigma$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(2,0,0,2,-143.52759,-131.71097)" + id="g5342"> + <defs + id="defs5344"> + <g + id="g5346"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6fb24ff5-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path5349" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6fb24ff5-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0" + id="path5352" /> + </symbol> + </g> + </defs> + <g + id="textext-6fb24ff5-2"> + <g + style="fill:#000000;fill-opacity:1" + id="g5355"> + <use + height="100%" + width="100%" + xlink:href="#textext-6fb24ff5-1" + x="223.43201" + y="134.765" + id="use5357" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path5454-9-5" + d="m 359.89296,187.5634 -24.88086,6.12185" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Mstart)" /> + <g + ns0:text="$\\mathbf{n}_{K,\\sigma}$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(2,0,0,2,-100.82684,-65.431384)" + id="g6357"> + <defs + id="defs6359"> + <g + id="g6361"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path6364" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 1.140625,-3.546875 0,3.078125 -0.6875,0 0,0.46875 c 0.28125,-0.015625 0.875,-0.03125 1.25,-0.03125 0.390625,0 0.984375,0.015625 1.25,0.03125 l 0,-0.46875 -0.6875,0 0,-2.078125 c 0,-1.09375 0.859375,-1.578125 1.5,-1.578125 0.328125,0 0.546875,0.203125 0.546875,0.96875 l 0,2.6875 -0.6875,0 0,0.46875 c 0.265625,-0.015625 0.875,-0.03125 1.25,-0.03125 0.390625,0 0.984375,0.015625 1.25,0.03125 l 0,-0.46875 -0.6875,0 0,-2.578125 c 0,-1.046875 -0.53125,-1.4375 -1.53125,-1.4375 -0.953125,0 -1.484375,0.5625 -1.75,1.078125 l 0,-1.078125 -1.703125,0.078125 0,0.46875 c 0.609375,0 0.6875,0 0.6875,0.390625 z m 0,0" + id="path6367" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-2"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path6370" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-3"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.984375,-2.796875 C 3.953125,-2.859375 3.9375,-2.875 3.9375,-2.890625 c 0,-0.015625 0.015625,-0.015625 0.171875,-0.125 l 0.703125,-0.5 c 0.921875,-0.640625 1.359375,-0.953125 1.84375,-1 0.078125,0 0.171875,0 0.171875,-0.140625 0,-0.0625 -0.046875,-0.09375 -0.09375,-0.09375 -0.15625,0 -0.328125,0.015625 -0.484375,0.015625 -0.1875,0 -0.65625,-0.03125 -0.84375,-0.03125 -0.046875,0 -0.140625,0 -0.140625,0.15625 0,0.015625 0,0.09375 0.09375,0.09375 0.09375,0.015625 0.1875,0.03125 0.1875,0.109375 0,0.125 -0.21875,0.28125 -0.3125,0.34375 L 2.328125,-2.015625 2.875,-4.21875 c 0.0625,-0.234375 0.078125,-0.296875 0.609375,-0.296875 0.125,0 0.21875,0 0.21875,-0.140625 0,-0.0625 -0.046875,-0.109375 -0.109375,-0.109375 -0.203125,0 -0.71875,0.03125 -0.921875,0.03125 -0.109375,0 -0.359375,0 -0.484375,0 C 2.0625,-4.75 1.890625,-4.765625 1.75,-4.765625 c -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.234375,0.09375 0.109375,0 0.140625,0 0.265625,0.015625 0.140625,0.015625 0.15625,0.03125 0.15625,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.9375,3.703125 C 1.25,-0.3125 1.234375,-0.25 0.6875,-0.25 c -0.125,0 -0.203125,0 -0.203125,0.15625 0,0 0,0.09375 0.109375,0.09375 0.203125,0 0.703125,-0.03125 0.90625,-0.03125 0.109375,0 0.359375,0 0.484375,0.015625 C 2.125,-0.015625 2.296875,0 2.421875,0 2.46875,0 2.578125,0 2.578125,-0.15625 2.578125,-0.25 2.484375,-0.25 2.34375,-0.25 c 0,0 -0.140625,0 -0.265625,-0.015625 C 1.921875,-0.28125 1.921875,-0.296875 1.921875,-0.375 1.921875,-0.421875 2,-0.6875 2.25,-1.703125 l 1.15625,-0.8125 1.015625,1.953125 c 0.046875,0.09375 0.046875,0.09375 0.046875,0.125 0,0.171875 -0.203125,0.1875 -0.328125,0.1875 -0.078125,0 -0.171875,0 -0.171875,0.15625 0,0 0,0.09375 0.109375,0.09375 C 4.28125,0 4.78125,-0.03125 4.96875,-0.03125 5.1875,-0.03125 5.46875,0 5.65625,0 5.75,0 5.796875,-0.046875 5.796875,-0.140625 5.796875,-0.25 5.703125,-0.25 5.640625,-0.25 c -0.125,0 -0.34375,-0.015625 -0.46875,-0.234375 z m 0,0" + id="path6373" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-4"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 1.46875,-0.109375 c 0,0.375 -0.0625,0.828125 -0.546875,1.265625 C 0.90625,1.1875 0.875,1.21875 0.875,1.25 c 0,0.046875 0.0625,0.09375 0.09375,0.09375 0.109375,0 0.703125,-0.5625 0.703125,-1.390625 0,-0.421875 -0.171875,-0.75 -0.5,-0.75 -0.21875,0 -0.390625,0.171875 -0.390625,0.390625 C 0.78125,-0.1875 0.9375,0 1.1875,0 1.359375,0 1.46875,-0.109375 1.46875,-0.109375 Z m 0,0" + id="path6376" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-0eee0e28-5"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 4.078125,-2.53125 c 0.109375,0 0.1875,0 0.25,-0.046875 0.09375,-0.078125 0.125,-0.1875 0.125,-0.234375 C 4.453125,-3 4.265625,-3 4.140625,-3 l -1.78125,0 C 1.25,-3 0.40625,-1.90625 0.40625,-1.0625 c 0,0.640625 0.484375,1.125 1.203125,1.125 0.875,0 1.875,-0.78125 1.875,-1.859375 0,-0.109375 0,-0.421875 -0.203125,-0.734375 z M 1.609375,-0.125 c -0.375,0 -0.6875,-0.25 -0.6875,-0.75 0,-0.203125 0.125,-1.65625 1.328125,-1.65625 0.34375,0 0.71875,0.140625 0.71875,0.65625 0,0.140625 -0.0625,0.765625 -0.40625,1.234375 C 2.265625,-0.265625 1.875,-0.125 1.609375,-0.125 Z m 0,0" + id="path6379" /> + </symbol> + </g> + </defs> + <g + id="textext-0eee0e28-6"> + <g + style="fill:#000000;fill-opacity:1" + id="g6382"> + <use + height="100%" + width="100%" + xlink:href="#textext-0eee0e28-1" + x="223.43201" + y="134.765" + id="use6384" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g6386"> + <use + height="100%" + width="100%" + xlink:href="#textext-0eee0e28-3" + x="229.797" + y="136.259" + id="use6388" /> + </g> + <g + style="fill:#000000;fill-opacity:1" + id="g6390"> + <use + height="100%" + width="100%" + xlink:href="#textext-0eee0e28-4" + x="236.55391" + y="136.259" + id="use6392" /> + <use + height="100%" + width="100%" + xlink:href="#textext-0eee0e28-5" + x="238.92012" + y="136.259" + id="use6394" /> + </g> + </g> + </g> + <g + id="g9099" + transform="matrix(2,0,0,2,-224.08727,-51.656381)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$K$"> + <defs + id="defs9101"> + <g + id="g9103"> + <symbol + id="textext-e8b43e81-0" + overflow="visible" + style="overflow:visible"> + <path + id="path9106" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-e8b43e81-1" + overflow="visible" + style="overflow:visible"> + <path + id="path9109" + d="M 5.078125,-4.03125 C 5.0625,-4.0625 5.03125,-4.140625 5.03125,-4.171875 c 0,0 0.171875,-0.140625 0.28125,-0.21875 l 1.75,-1.34375 C 8,-6.4375 8.390625,-6.46875 8.6875,-6.5 8.765625,-6.515625 8.859375,-6.515625 8.859375,-6.703125 8.859375,-6.734375 8.828125,-6.8125 8.75,-6.8125 c -0.21875,0 -0.46875,0.03125 -0.703125,0.03125 -0.359375,0 -0.75,-0.03125 -1.109375,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.0625 0.046875,0.09375 0.125,0.109375 0.21875,0.015625 0.296875,0.0625 0.296875,0.203125 0,0.1875 -0.296875,0.421875 -0.359375,0.46875 L 2.9375,-2.84375 3.734375,-6.046875 C 3.8125,-6.40625 3.84375,-6.5 4.5625,-6.5 c 0.25,0 0.34375,0 0.34375,-0.203125 0,-0.078125 -0.078125,-0.109375 -0.140625,-0.109375 -0.28125,0 -1,0.03125 -1.28125,0.03125 C 3.203125,-6.78125 2.5,-6.8125 2.203125,-6.8125 2.140625,-6.8125 2,-6.8125 2,-6.625 2,-6.5 2.09375,-6.5 2.296875,-6.5 c 0.125,0 0.3125,0.015625 0.421875,0.015625 0.15625,0.03125 0.21875,0.046875 0.21875,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.28125,0 -0.28125,0.1875 C 0.375,0 0.5,0 0.53125,0 0.8125,0 1.515625,-0.03125 1.796875,-0.03125 2,-0.03125 2.21875,-0.015625 2.4375,-0.015625 2.65625,-0.015625 2.875,0 3.078125,0 3.15625,0 3.28125,0 3.28125,-0.203125 3.28125,-0.3125 3.1875,-0.3125 3,-0.3125 c -0.375,0 -0.640625,0 -0.640625,-0.171875 0,-0.078125 0.046875,-0.296875 0.078125,-0.4375 C 2.578125,-1.453125 2.71875,-1.96875 2.84375,-2.5 l 1.484375,-1.15625 1.15625,2.6875 c 0.125,0.265625 0.125,0.296875 0.125,0.34375 0,0.3125 -0.4375,0.3125 -0.53125,0.3125 -0.109375,0 -0.21875,0 -0.21875,0.203125 C 4.859375,0 4.984375,0 5,0 5.40625,0 5.828125,-0.03125 6.21875,-0.03125 6.4375,-0.03125 6.984375,0 7.203125,0 7.25,0 7.375,0 7.375,-0.203125 7.375,-0.3125 7.265625,-0.3125 7.171875,-0.3125 c -0.40625,0 -0.53125,-0.09375 -0.6875,-0.4375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-e8b43e81-2"> + <g + id="g9112" + style="fill:#000000;fill-opacity:1"> + <use + id="use9114" + y="134.765" + x="223.43201" + xlink:href="#textext-e8b43e81-1" + width="100%" + height="100%" /> + </g> + </g> + </g> + <g + ns0:text="$L$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(2,0,0,2,-28.007272,-122.06873)" + id="g9482"> + <defs + id="defs9484"> + <g + id="g9486"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-c69f47de-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path9489" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-c69f47de-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.734375,-6.03125 C 3.8125,-6.390625 3.84375,-6.5 4.78125,-6.5 c 0.296875,0 0.375,0 0.375,-0.1875 0,-0.125 -0.109375,-0.125 -0.15625,-0.125 -0.328125,0 -1.140625,0.03125 -1.46875,0.03125 -0.296875,0 -1.03125,-0.03125 -1.328125,-0.03125 -0.0625,0 -0.1875,0 -0.1875,0.203125 0,0.109375 0.09375,0.109375 0.28125,0.109375 0.015625,0 0.203125,0 0.375,0.015625 0.171875,0.03125 0.265625,0.03125 0.265625,0.171875 0,0.03125 0,0.0625 -0.03125,0.1875 L 1.5625,-0.78125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.171875,0 -0.265625,0 -0.265625,0.203125 C 0.390625,0 0.484375,0 0.65625,0 l 4.625,0 C 5.515625,0 5.515625,0 5.578125,-0.171875 L 6.375,-2.328125 c 0.03125,-0.109375 0.03125,-0.125 0.03125,-0.140625 0,-0.03125 -0.03125,-0.109375 -0.109375,-0.109375 -0.09375,0 -0.109375,0.0625 -0.171875,0.21875 -0.34375,0.90625 -0.78125,2.046875 -2.5,2.046875 l -0.9375,0 c -0.140625,0 -0.171875,0 -0.21875,0 -0.109375,-0.015625 -0.140625,-0.03125 -0.140625,-0.109375 0,-0.03125 0,-0.046875 0.046875,-0.21875 z m 0,0" + id="path9492" /> + </symbol> + </g> + </defs> + <g + id="textext-c69f47de-2"> + <g + style="fill:#000000;fill-opacity:1" + id="g9495"> + <use + height="100%" + width="100%" + xlink:href="#textext-c69f47de-1" + x="223.43201" + y="134.765" + id="use9497" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + inkscape:original-d="M 316.13027,116.97598 444.41964,105.8643" + inkscape:path-effect="#path-effect4290" + id="path4288" + d="M 316.13027,116.97598 444.41964,105.8643" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + inkscape:original-d="m 342.89931,227.0826 119.70308,17.67767 -19.1929,-139.40105" + inkscape:path-effect="#path-effect4310" + id="path4308" + d="m 342.89931,227.0826 119.70308,17.67767 -19.1929,-139.40105" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <ellipse + style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:26.36899948;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="path4287-36" + cx="329.09641" + cy="168.97037" + rx="3.5" + ry="3.325" /> + <g + id="g4501" + transform="matrix(2,0,0,2,-118.32126,-107.70481)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$\\mathbf{x}_\\sigma$"> + <defs + id="defs4503"> + <g + id="g4505"> + <symbol + id="textext-fcd1e4d0-0" + overflow="visible" + style="overflow:visible"> + <path + id="path4508" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-fcd1e4d0-1" + overflow="visible" + style="overflow:visible"> + <path + id="path4511" + d="M 3.453125,-2.453125 4.609375,-3.75 C 4.75,-3.890625 4.8125,-3.953125 5.625,-3.953125 l 0,-0.46875 c -0.34375,0.015625 -0.859375,0.03125 -0.90625,0.03125 -0.25,0 -0.75,-0.03125 -1.03125,-0.03125 l 0,0.46875 c 0.140625,0 0.265625,0.015625 0.375,0.078125 -0.03125,0.0625 -0.03125,0.09375 -0.078125,0.125 l -0.828125,0.9375 -0.984375,-1.140625 0.40625,0 0,-0.46875 c -0.265625,0 -0.890625,0.03125 -1.21875,0.03125 -0.3125,0 -0.765625,-0.03125 -1.09375,-0.03125 l 0,0.46875 0.71875,0 1.546875,1.828125 -1.3125,1.46875 c -0.15625,0.1875 -0.515625,0.1875 -1,0.1875 l 0,0.46875 c 0.34375,-0.015625 0.875,-0.03125 0.921875,-0.03125 0.25,0 0.828125,0.015625 1.015625,0.03125 l 0,-0.46875 c -0.171875,0 -0.359375,-0.046875 -0.359375,-0.109375 0,-0.015625 0,-0.015625 0.0625,-0.09375 l 0.96875,-1.09375 1.09375,1.296875 -0.390625,0 0,0.46875 c 0.265625,-0.015625 0.875,-0.03125 1.203125,-0.03125 0.3125,0 0.765625,0.015625 1.09375,0.03125 l 0,-0.46875 -0.703125,0 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-fcd1e4d0-2" + overflow="visible" + style="overflow:visible"> + <path + id="path4514" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-fcd1e4d0-3" + overflow="visible" + style="overflow:visible"> + <path + id="path4517" + d="m 4.078125,-2.53125 c 0.109375,0 0.1875,0 0.25,-0.046875 0.09375,-0.078125 0.125,-0.1875 0.125,-0.234375 C 4.453125,-3 4.265625,-3 4.140625,-3 l -1.78125,0 C 1.25,-3 0.40625,-1.90625 0.40625,-1.0625 c 0,0.640625 0.484375,1.125 1.203125,1.125 0.875,0 1.875,-0.78125 1.875,-1.859375 0,-0.109375 0,-0.421875 -0.203125,-0.734375 z M 1.609375,-0.125 c -0.375,0 -0.6875,-0.25 -0.6875,-0.75 0,-0.203125 0.125,-1.65625 1.328125,-1.65625 0.34375,0 0.71875,0.140625 0.71875,0.65625 0,0.140625 -0.0625,0.765625 -0.40625,1.234375 C 2.265625,-0.265625 1.875,-0.125 1.609375,-0.125 Z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-fcd1e4d0-4"> + <g + id="g4520" + style="fill:#000000;fill-opacity:1"> + <use + id="use4522" + y="134.765" + x="223.43201" + xlink:href="#textext-fcd1e4d0-1" + width="100%" + height="100%" /> + </g> + <g + id="g4524" + style="fill:#000000;fill-opacity:1"> + <use + id="use4526" + y="136.259" + x="229.479" + xlink:href="#textext-fcd1e4d0-3" + width="100%" + height="100%" /> + </g> + </g> + </g> + <path + inkscape:connector-curvature="0" + id="path5454-9-5-1" + d="m 324.39742,169.50716 -48.43061,3.1601" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-start:url(#Arrow2Mstart-2)" + sodipodi:nodetypes="cc" /> + <g + id="g6110" + transform="matrix(1.5529801,0,0,1.5529801,-63.745926,-43.974706)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="\\small$\\mathbf{d}_{K,\\sigma}$"> + <defs + id="defs6112"> + <g + id="g6114"> + <symbol + id="textext-411cea76-0" + overflow="visible" + style="overflow:visible"> + <path + id="path6117" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-411cea76-1" + overflow="visible" + style="overflow:visible"> + <path + id="path6120" + d="m 3.296875,-6.15625 0,0.4375 c 0.546875,0 0.609375,0 0.609375,0.359375 l 0,1.734375 c -0.390625,-0.296875 -0.8125,-0.40625 -1.25,-0.40625 -1.453125,0 -2.3125,0.890625 -2.3125,2.046875 0,1.1875 0.84375,2.03125 2.21875,2.03125 0.5625,0 1,-0.203125 1.296875,-0.4375 l 0,0.4375 L 5.515625,0 l 0,-0.4375 c -0.53125,0 -0.609375,0 -0.609375,-0.359375 l 0,-5.421875 z m 0.5625,5.171875 C 3.65625,-0.65625 3.234375,-0.3125 2.65625,-0.3125 c -1.109375,0 -1.109375,-1.0625 -1.109375,-1.65625 0,-0.53125 0,-0.90625 0.234375,-1.234375 0.234375,-0.359375 0.671875,-0.46875 0.984375,-0.46875 0.4375,0 0.8125,0.1875 1.09375,0.546875 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-411cea76-2" + overflow="visible" + style="overflow:visible"> + <path + id="path6123" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-411cea76-3" + overflow="visible" + style="overflow:visible"> + <path + id="path6126" + d="m 3.625,-2.40625 c 0,0 -0.03125,-0.0625 -0.03125,-0.078125 0,0 0.015625,0 0.109375,-0.078125 0.609375,-0.40625 1.40625,-0.96875 1.75,-1.125 0.203125,-0.09375 0.375,-0.15625 0.5625,-0.15625 C 6.078125,-3.859375 6.15625,-3.859375 6.15625,-4 6.15625,-4.046875 6.125,-4.078125 6.078125,-4.078125 5.9375,-4.078125 5.78125,-4.0625 5.625,-4.0625 c -0.078125,0 -0.28125,0 -0.375,0 -0.078125,-0.015625 -0.296875,-0.03125 -0.359375,-0.03125 -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.078125 0.09375,0.09375 0.109375,0.09375 C 5,-3.84375 5,-3.796875 5,-3.765625 5,-3.6875 4.875,-3.59375 4.84375,-3.578125 4.828125,-3.5625 4.828125,-3.5625 4.8125,-3.546875 c 0,0 -0.0625,0.03125 -0.078125,0.046875 l -2.59375,1.765625 0.46875,-1.875 c 0.046875,-0.1875 0.046875,-0.234375 0.53125,-0.234375 0.109375,0 0.1875,0 0.1875,-0.15625 0,-0.03125 -0.015625,-0.09375 -0.09375,-0.09375 -0.125,0 -0.265625,0.03125 -0.40625,0.03125 -0.125,0 -0.265625,0 -0.40625,0 -0.125,0 -0.265625,0 -0.40625,0 -0.125,0 -0.28125,-0.03125 -0.40625,-0.03125 -0.046875,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.1875,0.09375 0.109375,0 0.265625,0 0.390625,0.03125 0,0.0625 0,0.109375 -0.03125,0.203125 L 1.234375,-0.5 c -0.046875,0.21875 -0.0625,0.265625 -0.515625,0.265625 -0.125,0 -0.203125,0 -0.203125,0.140625 0,0.046875 0.03125,0.09375 0.09375,0.09375 0.125,0 0.265625,-0.015625 0.40625,-0.015625 0.140625,0 0.265625,-0.015625 0.390625,-0.015625 0.140625,0 0.28125,0.015625 0.421875,0.015625 C 1.953125,-0.015625 2.109375,0 2.234375,0 2.28125,0 2.375,0 2.375,-0.15625 c 0,-0.078125 -0.078125,-0.078125 -0.203125,-0.078125 -0.015625,0 -0.125,0 -0.234375,-0.015625 C 1.828125,-0.265625 1.796875,-0.265625 1.796875,-0.328125 1.796875,-0.359375 1.828125,-0.5 1.84375,-0.59375 1.875,-0.6875 1.875,-0.703125 1.921875,-0.84375 2,-1.15625 2,-1.171875 2.0625,-1.453125 l 1.046875,-0.703125 0.984375,1.75 c 0,0.078125 0,0.15625 -0.28125,0.171875 -0.0625,0 -0.15625,0 -0.15625,0.140625 C 3.65625,-0.046875 3.6875,0 3.765625,0 3.9375,0 4.375,-0.03125 4.546875,-0.03125 c 0.109375,0 0.203125,0.015625 0.3125,0.015625 C 4.953125,-0.015625 5.0625,0 5.171875,0 c 0.0625,0 0.125,-0.03125 0.125,-0.15625 0,-0.078125 -0.09375,-0.078125 -0.140625,-0.078125 C 4.84375,-0.25 4.796875,-0.328125 4.71875,-0.453125 Z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-411cea76-4" + overflow="visible" + style="overflow:visible"> + <path + id="path6129" + d="m 1.375,-0.078125 c 0,0.5625 -0.296875,0.890625 -0.453125,1.03125 C 0.875,1 0.84375,1.015625 0.84375,1.046875 c 0,0.0625 0.0625,0.109375 0.109375,0.109375 0.078125,0 0.625,-0.46875 0.625,-1.203125 0,-0.390625 -0.15625,-0.671875 -0.453125,-0.671875 -0.234375,0 -0.359375,0.1875 -0.359375,0.359375 C 0.765625,-0.1875 0.890625,0 1.140625,0 1.234375,0 1.3125,-0.03125 1.375,-0.078125 Z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-411cea76-5" + overflow="visible" + style="overflow:visible"> + <path + id="path6132" + d="m 3.734375,-2.15625 c 0.0625,0 0.328125,0 0.328125,-0.25 0,-0.171875 -0.171875,-0.171875 -0.28125,-0.171875 l -1.609375,0 c -0.984375,0 -1.734375,0.90625 -1.734375,1.640625 0,0.609375 0.484375,1 1.078125,1 0.828125,0 1.6875,-0.703125 1.6875,-1.578125 C 3.203125,-1.796875 3.125,-2 3.015625,-2.15625 Z M 1.53125,-0.140625 c -0.203125,0 -0.640625,-0.078125 -0.640625,-0.65625 0,-0.375 0.203125,-1.359375 1.1875,-1.359375 0.34375,0 0.65625,0.125 0.65625,0.578125 0,0.171875 -0.078125,0.703125 -0.390625,1.046875 -0.234375,0.25 -0.546875,0.390625 -0.8125,0.390625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-411cea76-6"> + <g + id="g6135" + style="fill:#000000;fill-opacity:1"> + <use + id="use6137" + y="134.765" + x="223.43201" + xlink:href="#textext-411cea76-1" + width="100%" + height="100%" /> + </g> + <g + id="g6139" + style="fill:#000000;fill-opacity:1"> + <use + id="use6141" + y="135.761" + x="229.327" + xlink:href="#textext-411cea76-3" + width="100%" + height="100%" /> + </g> + <g + id="g6143" + style="fill:#000000;fill-opacity:1"> + <use + id="use6145" + y="135.761" + x="235.48213" + xlink:href="#textext-411cea76-4" + width="100%" + height="100%" /> + <use + id="use6147" + y="135.761" + x="237.75124" + xlink:href="#textext-411cea76-5" + width="100%" + height="100%" /> + </g> + </g> + </g> + </g> +</svg> diff --git a/doc/handbook/SVG/dalton1.svg b/doc/handbook/svg/dalton1.svg similarity index 100% rename from doc/handbook/SVG/dalton1.svg rename to doc/handbook/svg/dalton1.svg diff --git a/doc/handbook/SVG/dalton2.svg b/doc/handbook/svg/dalton2.svg similarity index 100% rename from doc/handbook/SVG/dalton2.svg rename to doc/handbook/svg/dalton2.svg diff --git a/doc/handbook/svg/mpfa_iv.svg b/doc/handbook/svg/mpfa_iv.svg new file mode 100644 index 0000000000000000000000000000000000000000..5642e339cdb545b4a545efc3cea73f21c3886c51 --- /dev/null +++ b/doc/handbook/svg/mpfa_iv.svg @@ -0,0 +1,2764 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:ns0="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:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="40.551994mm" + height="25.4217mm" + viewBox="0 0 143.68817 90.076891" + id="svg4484" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="mpfa_iv.svg" + inkscape:export-filename="/temp/martins/DUMUX-3.0/dumux/doc/handbook/PNG/mpfa_iv.png" + inkscape:export-xdpi="600" + inkscape:export-ydpi="600"> + <sodipodi:namedview + inkscape:current-layer="svg4484" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="5.6568545" + inkscape:cx="29.562883" + inkscape:cy="47.337235" + inkscape:document-units="px" + showgrid="false" + inkscape:window-width="1920" + inkscape:window-height="1015" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + inkscape:lockguides="false" + inkscape:snap-global="false"> + <inkscape:grid + id="grid5254" + type="xygrid" + originx="-238.26109" + originy="-466.50551" /> + </sodipodi:namedview> + <defs + id="defs4486"> + <linearGradient + id="linearGradient5025" + inkscape:collect="always"> + <stop + id="stop5027" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop5029" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <marker + inkscape:stockid="Arrow1Mend" + orient="auto" + refY="0" + refX="0" + id="marker4446" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path4448" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="matrix(-0.4,0,0,-0.4,-4,0)" /> + </marker> + <linearGradient + id="linearGradient6451" + inkscape:collect="always"> + <stop + id="stop6453" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop6455" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient6332" + inkscape:collect="always"> + <stop + id="stop6334" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop6336" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5972" + inkscape:collect="always"> + <stop + id="stop5974" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop5976" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5889" + inkscape:collect="always"> + <stop + id="stop5891" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop5893" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5851" + inkscape:collect="always"> + <stop + id="stop5853" + offset="0" + style="stop-color:#006600;stop-opacity:1;" /> + <stop + id="stop5855" + offset="1" + style="stop-color:#006600;stop-opacity:0;" /> + </linearGradient> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4360" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="DotS" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="DotS"> + <path + transform="matrix(0.2,0,0,0.2,1.48,0.2)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="m -2.5,-1 c 0,2.76 -2.24,5 -5,5 -2.76,0 -5,-2.24 -5,-5 0,-2.76 2.24,-5 5,-5 2.76,0 5,2.24 5,5 z" + id="path4412" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow2Mend" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path4372" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4649" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4651" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4621" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4623" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mend" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4354" + inkscape:connector-curvature="0" /> + </marker> + <linearGradient + id="linearGradient5238" + inkscape:collect="always"> + <stop + id="stop5240" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5242" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5230" + inkscape:collect="always"> + <stop + id="stop5232" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5234" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5214" + inkscape:collect="always"> + <stop + id="stop5216" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5218" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5206" + inkscape:collect="always"> + <stop + id="stop5208" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5210" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5198" + inkscape:collect="always"> + <stop + id="stop5200" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5202" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5190" + inkscape:collect="always"> + <stop + id="stop5192" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5194" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5182" + inkscape:collect="always"> + <stop + id="stop5184" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5186" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5174" + inkscape:collect="always"> + <stop + id="stop5176" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5178" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5166" + inkscape:collect="always"> + <stop + id="stop5168" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5170" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + id="linearGradient5158" + inkscape:collect="always"> + <stop + id="stop5160" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop5162" + offset="1" + style="stop-color:#000000;stop-opacity:0;" /> + </linearGradient> + <linearGradient + gradientTransform="translate(-1.078966,4.6274441)" + gradientUnits="userSpaceOnUse" + y2="492.49277" + x2="267.51883" + y1="498.70392" + x1="260.29568" + id="linearGradient5164" + xlink:href="#linearGradient5158" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="508.93021" + x2="307.27963" + y1="516.16058" + x1="299.24631" + id="linearGradient5172" + xlink:href="#linearGradient5166" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="534.25848" + x2="337.98065" + y1="543.18219" + x1="328.27145" + id="linearGradient5180" + xlink:href="#linearGradient5174" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="552.27863" + x2="338.70917" + y1="543.84515" + x1="328.52731" + id="linearGradient5188" + xlink:href="#linearGradient5182" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="581.95972" + x2="304.6731" + y1="574.9389" + x1="294.65863" + id="linearGradient5196" + xlink:href="#linearGradient5190" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="586.11371" + x2="288.01828" + y1="574.40222" + x1="294.49619" + id="linearGradient5204" + xlink:href="#linearGradient5198" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="585.11365" + x2="242.88976" + y1="575.93823" + x1="246.63487" + id="linearGradient5212" + xlink:href="#linearGradient5206" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="575.44562" + x2="238.20656" + y1="575.68256" + x1="246.71516" + id="linearGradient5220" + xlink:href="#linearGradient5214" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.078966,4.6274441)" + gradientUnits="userSpaceOnUse" + y2="500.57123" + x2="250.07574" + y1="498.57767" + x1="260.29785" + id="linearGradient5236" + xlink:href="#linearGradient5230" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(-1.078966,4.6274441)" + gradientUnits="userSpaceOnUse" + y2="490.98294" + x2="256.31219" + y1="498.23041" + x1="260.56091" + id="linearGradient5244" + xlink:href="#linearGradient5238" + inkscape:collect="always" /> + <linearGradient + gradientTransform="translate(0.04496638,-1.5853895)" + gradientUnits="userSpaceOnUse" + y2="542.21362" + x2="239.67636" + y1="541.47437" + x1="250.10336" + id="linearGradient5366-7" + xlink:href="#linearGradient5238" + inkscape:collect="always" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Send-2" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Send"> + <path + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4360-9" + inkscape:connector-curvature="0" /> + </marker> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="520.922" + x2="245.28424" + y1="519.79968" + x1="255.17828" + id="linearGradient5857" + xlink:href="#linearGradient5851" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="501.49594" + x2="287.59021" + y1="509.26846" + x1="278.66565" + id="linearGradient5895" + xlink:href="#linearGradient5889" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="521.49799" + x2="322.27444" + y1="529.2735" + x1="313.73505" + id="linearGradient5978" + xlink:href="#linearGradient5972" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="519.9848" + x2="246.49393" + y1="519.79968" + x1="255.17828" + id="linearGradient5857-6" + xlink:href="#linearGradient5972" + inkscape:collect="always" + gradientTransform="translate(-6.4681871,37.239409)" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="585.60724" + x2="263.92542" + y1="575.33026" + x1="270.29593" + id="linearGradient6338" + xlink:href="#linearGradient6332" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="566.99493" + x2="323.09808" + y1="558.29376" + x1="312.16949" + id="linearGradient6457" + xlink:href="#linearGradient6451" + inkscape:collect="always" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mend-2" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4354-0" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mend-2-8-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4354-0-9-6" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mend-2-8-6-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4354-0-9-6-5" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow2Mend-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path4372-3" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="Arrow1Mend-2-8-6-9-1" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow1Mend"> + <path + transform="matrix(-0.4,0,0,-0.4,-4,0)" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" + id="path4354-0-9-6-5-4" + inkscape:connector-curvature="0" /> + </marker> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="495.11441" + x2="295.0936" + y1="490.86441" + x1="307.30145" + id="linearGradient5031" + xlink:href="#linearGradient5025" + inkscape:collect="always" + gradientTransform="matrix(1,0,0,-1,26.074164,1017.4839)" /> + <linearGradient + gradientUnits="userSpaceOnUse" + y2="495.11441" + x2="295.0936" + y1="490.86441" + x1="307.30145" + id="linearGradient5031-5" + xlink:href="#linearGradient5158" + inkscape:collect="always" + gradientTransform="matrix(1,0,0,-1,11.496113,1003.7794)" /> + </defs> + <metadata + id="metadata4489"> + <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 + style="display:inline" + id="layer1" + inkscape:groupmode="layer" + inkscape:label="Layer 1" + transform="translate(-238.2611,-495.77983)"> + <path + style="opacity:1;fill:#a76800;fill-opacity:0.21176471;stroke:none;stroke-width:1.51181102;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 267.90207,559.91339 c -0.11054,-0.10146 -0.28152,-0.20058 -0.37995,-0.22026 -0.0984,-0.0197 -0.17896,-0.0506 -0.17896,-0.0688 0,-0.0181 -0.72609,-4.369 -1.61354,-9.66865 -0.88746,-5.29963 -1.60558,-9.66592 -1.59583,-9.70282 0.0128,-0.0481 2.28821,0.0125 8.0595,0.21455 4.423,0.15491 8.0532,0.29304 8.06711,0.30696 0.0139,0.0139 0.80376,1.83006 1.75523,4.03586 l 1.72992,4.01056 -0.1101,0.18239 c -0.31331,0.51896 -0.058,1.16607 0.52108,1.32095 0.15874,0.0425 0.28276,0.11866 0.3175,0.19507 0.34796,0.7656 2.50842,5.82692 2.49358,5.84176 -0.0109,0.0109 -4.20515,0.84446 -9.32058,1.85235 -5.11542,1.00789 -9.35549,1.84423 -9.42236,1.8585 -0.0763,0.0163 -0.19631,-0.0426 -0.3226,-0.1585 z" + id="path2273" + inkscape:connector-curvature="0" /> + <path + style="opacity:1;fill:#a76800;fill-opacity:0.21176471;stroke:none;stroke-width:1.51181102;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 274.88956,540.86532 c -2.15415,-0.0766 -5.52236,-0.19406 -7.48489,-0.26095 -1.96253,-0.0668 -3.58211,-0.13499 -3.59908,-0.15132 -0.0169,-0.0163 1.62836,-3.99109 3.65626,-8.83282 3.45244,-8.24291 3.6965,-8.80311 3.8353,-8.80311 0.19572,0 0.48466,-0.14755 0.6003,-0.30654 0.0733,-0.10086 0.12958,-0.11883 0.26799,-0.0858 0.28962,0.0691 18.51339,5.3123 18.53588,5.33299 0.0114,0.0105 -0.71038,0.95091 -1.60405,2.08975 -1.62047,2.06503 -1.62547,2.0706 -1.85478,2.07082 -0.26558,2.5e-4 -0.58197,0.16693 -0.73004,0.38458 -0.11018,0.16196 -0.14733,0.50944 -0.0805,0.75282 0.0356,0.12982 -0.36489,0.66632 -3.01738,4.04156 l -3.05849,3.89187 -0.77494,0.008 c -0.42621,0.004 -2.53742,-0.055 -4.69159,-0.13159 z" + id="path2271" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path7894" + d="m 285.33612,553.50582 -1.23255,-2.87207 0.1346,-0.18902 c 0.39226,-0.55088 0.1324,-1.20854 -0.54555,-1.38068 l -0.29948,-0.0761 -1.70023,-3.96078 -1.70024,-3.9608 5.00593,-6.60654 c 2.75328,-3.6336 5.02913,-6.6151 5.05747,-6.62556 0.0283,-0.0104 2.641,3.04651 5.80591,6.79324 5.68902,6.73485 5.75326,6.81397 5.65441,6.96484 -0.0682,0.10403 -0.0928,0.25912 -0.0774,0.48729 l 0.0226,0.33469 -7.40399,6.98175 c -4.0722,3.83997 -7.42309,6.98175 -7.44644,6.98175 -0.0233,0 -0.59709,-1.29243 -1.275,-2.87207 z" + style="opacity:0.21199999;fill:#a76600;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path5393" + d="m 271.44062,522.12051 -7.39338,18.32763 3.32751,19.85613 19.26866,-3.8007 15.46796,-14.58407 -12.02081,-14.23053 z" + style="opacity:1;fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5834" + d="M 271.35223,522.2089 255.25,519.9247" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-7" + d="m 255.23862,519.8793 -10.15956,1.44108" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5857);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-0-9" + d="m 287.70953,501.30965 -9.26065,8.09795" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5895);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6" + d="m 267.48364,560.23535 2.57546,14.77423" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6-0" + d="m 302.12786,541.9204 9.85227,16.25278" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6-0-6" + d="m 302.0024,542.01322 11.62004,-12.60601" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6-0-6-2" + d="m 313.65873,529.47771 8.98513,-7.80827" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5978);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-7-7" + d="m 248.77044,557.11871 -8.51033,-0.0117" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5857-6);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6-4" + d="m 270.32966,575.10264 -6.33429,10.67755" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient6338);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3-6-9-2-0-9-2-7-2-9-4-6-3-2-0" + d="m 312.21737,558.33734 11.07399,8.88927" + style="opacity:1;fill:none;fill-rule:evenodd;stroke:url(#linearGradient6457);stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5248-2" + d="m 250.17745,539.95403 30.00486,1.12461" + style="opacity:1;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path5049" + d="m 250.40781,540.01854 8.70838,-36.75309 40.1415,12.45321 -19.20111,25.34418" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5059" + d="m 259.22471,503.42605 c -2.26926,-4.12916 -2.34687,-4.01718 -4.0302,-7.5604" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5244);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path5061" + d="m 266.50804,497.13202 c -3.20607,2.69436 -3.19382,2.64402 -7.22019,6.04149" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5164);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path5063" + d="m 307.26668,509.08291 -8.19839,6.76202" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5172);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5065" + d="m 294.49104,574.37065 -6.18943,11.12913" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5204);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5067" + d="m 246.66663,575.75194 -3.45564,9.09125" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5212);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5129" + d="m 299.25769,515.71866 29.42069,27.7792" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5131" + d="m 294.3332,574.43378 33.96638,-31.18846" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5133" + d="m 246.7151,575.67415 -8.45162,-0.10072" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5220);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5137" + d="m 259.25628,503.26821 -10.45,1.92254" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5236);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5152" + d="m 328.23644,543.27689 9.6486,-8.9971" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5180);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5154" + d="m 294.45947,574.30751 10.34966,8.0499" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5196);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5156" + d="m 328.36271,543.18219 10.28064,9.08973" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5188);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5246" + d="m 246.53653,575.68881 47.92294,-1.31816" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5250" + d="M 294.45947,574.56005 280.0224,540.97063" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5252" + d="m 246.60349,575.94901 3.81034,-36.03895" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path5135-36" + d="m 250.25096,539.97641 -10.47104,0.65182" + style="opacity:1;fill:none;fill-rule:evenodd;stroke:url(#linearGradient5366-7);stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path4213-5-3-5" + d="m 250.35602,541.44064 0.17858,-3.01626" + style="opacity:0.49500002;fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.94509804" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-0" + d="m 278.48862,509.3168 -7.35224,12.9658" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path5834-3" + d="m 267.4779,560.26059 -18.84228,-3.1213" + style="fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.3, 0.6;stroke-dashoffset:0;stroke-opacity:1" /> + <circle + r="0.81912094" + cy="560.38812" + cx="267.37924" + id="path5370" + style="opacity:1;fill:#950000;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" /> + <circle + r="0.81912094" + cy="542.00793" + cx="302.11136" + id="path5370-9" + style="opacity:1;fill:#940000;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" /> + <circle + r="0.81912094" + cy="522.12048" + cx="271.35223" + id="path5370-1" + style="opacity:1;fill:#950000;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path4425" + d="m 280.05847,541.07983 10.03207,-13.28035" + style="fill:#940081;fill-opacity:1;fill-rule:evenodd;stroke:#840073;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + r="0.81912094" + cy="527.81329" + cx="290.21231" + id="path5370-6-2-4" + style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path4425-3" + d="m 264.10595,540.49805 16.09457,0.5634" + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path4425-3-6" + d="m 280.05627,541.06406 6.66417,15.45428" + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + r="0.81912094" + cy="556.10583" + cx="286.6434" + id="path5370-6-2" + style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path7894-1" + d="m 314.77547,581.21088 -0.46751,-1.0894 0.0511,-0.0717 c 0.14879,-0.20895 0.0502,-0.45841 -0.20693,-0.5237 l -0.1136,-0.0289 -0.64491,-1.50235 -0.64491,-1.50236 1.89879,-2.50591 c 1.04433,-1.37826 1.90758,-2.50916 1.91833,-2.51313 0.0107,-0.004 1.00175,1.15557 2.20223,2.57673 2.15789,2.55458 2.18225,2.58459 2.14476,2.64182 -0.0259,0.0395 -0.0352,0.0983 -0.0293,0.18483 l 0.009,0.12695 -2.80839,2.64823 c -1.54462,1.45653 -2.81564,2.64823 -2.8245,2.64823 -0.009,0 -0.22648,-0.49023 -0.48361,-1.0894 z" + style="opacity:0.21199999;fill:#a76600;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path4425-36" + d="m 327.22305,570.0186 4.74243,-6.27798" + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.23636359;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <g + transform="translate(36.166885,-51.199123)" + id="g5409"> + <path + style="opacity:1;fill:none;fill-rule:evenodd;stroke:#006600;stroke-width:0.07089366;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 307.38594,600.01189 -1.74714,4.33105 0.78633,4.69224 4.55342,-0.89815 3.65526,-3.44639 -2.84066,-3.36285 z" + id="path5393-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.1181561;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 309.42244,604.49221 2.37071,-3.13831" + id="path4425-2" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.1181561;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 305.65267,604.35473 3.80334,0.13314" + id="path4425-3-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#840074;stroke-width:0.1181561;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 309.42192,604.48849 1.57483,3.65203" + id="path4425-3-6-0" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + style="opacity:0.21499999;fill:#a76600;fill-opacity:1;stroke:none;stroke-width:0.162;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 306.45977,608.98713 c -4.7e-4,-7.1e-4 -0.17329,-1.02947 -0.38426,-2.28617 l -0.38357,-2.28492 0.084,0.006 c 0.0462,0.003 0.85239,0.0317 1.79153,0.0633 0.93915,0.0317 1.73131,0.06 1.76036,0.063 l 0.0528,0.005 0.76556,1.77548 c 0.42106,0.97651 0.76386,1.77697 0.76177,1.77878 -0.002,0.002 -0.9625,0.19229 -2.13428,0.42328 -1.17177,0.23099 -2.17162,0.42837 -2.22188,0.43863 -0.0503,0.0103 -0.0917,0.0181 -0.0921,0.0174 z" + id="path4509" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.21499999;fill:#a76600;fill-opacity:1;stroke:none;stroke-width:0.162;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 307.4124,604.35361 c -0.93253,-0.0334 -1.69779,-0.063 -1.70057,-0.0658 -0.005,-0.005 1.68484,-4.20414 1.69753,-4.21776 0.0102,-0.0109 4.29949,1.27286 4.29646,1.2859 -0.001,0.006 -0.52004,0.69604 -1.15251,1.53331 l -1.14995,1.52231 -0.14772,10e-4 c -0.0813,7.1e-4 -0.9107,-0.0259 -1.84324,-0.0594 z" + id="path4511" + inkscape:connector-curvature="0" /> + <path + style="opacity:0.21499999;fill:#a76600;fill-opacity:1;stroke:none;stroke-width:0.162;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + d="m 310.26425,606.26808 c -0.65446,-1.51865 -0.75458,-1.76451 -0.73279,-1.7994 0.0139,-0.0222 0.53314,-0.71317 1.15391,-1.53542 0.62078,-0.82225 1.12994,-1.49693 1.13148,-1.49928 0.006,-0.009 2.73742,3.23486 2.73742,3.25157 0,0.0136 -3.2824,3.12142 -3.49118,3.30552 -0.04,0.0352 -0.0568,-0.001 -0.79884,-1.72299 z" + id="path4513" + inkscape:connector-curvature="0" /> + </g> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path5023" + d="m 322.44916,522.55919 c 2.4375,0.27083 4.58222,-0.45833 6.75,0.625 2.04509,1.19098 1.51516,2.45947 4.3125,3.375" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5031);stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + inkscape:connector-curvature="0" + id="path5023-6" + d="m 307.87111,508.8547 c 2.4375,0.27083 4.58222,-0.45833 6.75,0.625 2.04509,1.19098 1.51516,2.45947 4.3125,3.37499" + style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient5031-5);stroke-width:0.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <circle + r="0.819121" + cy="540.48767" + cx="264.12827" + id="path5370-6-2-3" + style="display:inline;opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:0.3617582;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175818, 0.72351638;stroke-dashoffset:0;stroke-opacity:1" /> + <ellipse + cy="541.04425" + cx="280.07361" + id="path5370-6-2-5" + style="display:inline;opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.36175817;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:0.36175817, 0.72351635;stroke-dashoffset:0;stroke-opacity:1" + rx="0.81912094" + ry="0.819121" /> + </g> + <g + style="display:none" + inkscape:label="text" + id="layer2" + inkscape:groupmode="layer" + transform="translate(-238.2611,-495.77983)"> + <text + id="text12561-3" + y="561.89935" + x="268.43735" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="561.89935" + x="268.43735" + id="tspan12563-6" + sodipodi:role="line">$u_1$</tspan></text> + <text + id="text12561-8-7" + y="542.43317" + x="303.88229" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="542.43317" + x="303.88229" + id="tspan12563-7-5" + sodipodi:role="line">$u_2$</tspan></text> + <text + id="text12561-8-1-3" + y="521.48505" + x="272.81381" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="521.48505" + x="272.81381" + id="tspan12563-7-7-5" + sodipodi:role="line">$u_3$</tspan></text> + <text + id="text12561-8-1-2-6" + y="546.00702" + x="283.21143" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="546.00702" + x="283.21143" + id="tspan12563-7-7-7-29" + sodipodi:role="line">$\bar{u}_{\sigma_1}$</tspan></text> + <text + id="text12561-8-1-2-2-1" + y="536.96051" + x="285.45306" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="536.96051" + x="285.45306" + id="tspan12563-7-7-7-2-2" + sodipodi:role="line">$\bar{u}_{\sigma_2}$</tspan></text> + <text + id="text12561-8-1-2-3-9" + y="553.08307" + x="286.09006" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="553.08307" + x="286.09006" + id="tspan12563-7-7-7-6-3" + sodipodi:role="line">\tiny $q$</tspan></text> + <text + id="text12561-8-6-0-6" + y="571.84045" + x="356.35568" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="571.84045" + x="356.35568" + id="tspan12563-7-2-9-2" + sodipodi:role="line">sub-control volume</tspan></text> + <text + id="text12561-8-6-0-0-6" + y="584.7547" + x="336.60547" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="584.7547" + x="336.60547" + id="tspan12563-7-2-9-6-1" + sodipodi:role="line">sub-control volume face</tspan></text> + <text + id="text12561-8-6-9-8" + y="598.94989" + x="324.27731" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="598.94989" + x="324.27731" + id="tspan12563-7-2-3-7" + sodipodi:role="line">interaction region</tspan></text> + <text + id="text12561-8-6-9-6-9" + y="491.0112" + x="308.02261" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="491.0112" + x="308.02261" + id="tspan12563-7-2-3-1-2" + sodipodi:role="line">dual grid</tspan></text> + <text + id="text12561-8-6-9-6-8-0" + y="498.22592" + x="327.2836" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="498.22592" + x="327.2836" + id="tspan12563-7-2-3-1-1-2" + sodipodi:role="line">primary grid</tspan></text> + <text + id="text12561-8-1-2-2-6-0-7-7" + y="538.25848" + x="252.31363" + style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;display:inline;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve" + sodipodi:linespacing="0%"><tspan + style="font-size:1.25px;line-height:1.25" + y="538.25848" + x="252.31363" + id="tspan12563-7-7-7-2-1-6-0-3" + sodipodi:role="line">$\bar{u}_{\sigma_3}$</tspan></text> + </g> + <g + inkscape:label="text rendered" + id="layer3" + inkscape:groupmode="layer" + style="display:inline" + transform="translate(-238.2611,-495.77983)"> + <g + transform="matrix(0.07136887,0,0,0.07136869,314.17516,502.0796)" + id="g5499"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.01172829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="g5501" + transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)" + xml:space="preserve" + stroke-miterlimit="10.433" + font-style="normal" + font-variant="normal" + font-weight="normal" + font-stretch="normal" + font-size-adjust="none" + letter-spacing="normal" + word-spacing="normal"><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 474.93,408.74 0,-3.29 7.32,0.55 0,1.54 c -3.48,0 -3.88,0.35 -3.88,2.79 l 0,30.24 -7.18,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-10.76 c -1.45,1.79 -3.59,3.09 -6.28,3.09 l 0.2,-1.1 c 1.75,0 3.84,-0.74 5.38,-2.99 0.55,-0.84 0.55,-0.95 0.55,-1.84 l 0,0 0,-10.21 c 0,-0.9 0,-1 -0.55,-1.84 -1.49,-2.4 -3.74,-3.49 -5.88,-3.49 -2.24,0 -4.03,1.29 -5.23,3.18 -1.29,2.05 -1.44,4.89 -1.44,6.93 0,1.84 0.1,4.83 1.54,7.07 1.05,1.55 2.94,3.19 5.63,3.19 l -0.2,1.1 c -5.87,0 -11.1,-4.88 -11.1,-11.31 0,-6.33 4.87,-11.26 10.55,-11.26 3.19,0 5.43,1.69 6.68,3.29 z" + id="path5503" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 502.48,409.93 0,-4.48 7.17,0.55 0,1.54 c -3.49,0 -3.88,0.35 -3.88,2.79 l 0,17.69 -7.33,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-8.87 c 0,-4.34 -2.39,-7.72 -6.03,-7.72 -4.18,0 -4.38,2.34 -4.38,4.93 l 0,16.54 -7.33,-0.55 0,-1.54 c 3.89,0 3.89,-0.15 3.89,-4.59 l 0,-7.47 c 0,-3.89 0,-8.42 7.57,-8.42 2.79,0 4.98,1.4 6.43,4.48 z" + id="path5505" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 527.59,409.79 0.02,-0.19 0.03,-0.19 0.03,-0.19 0.04,-0.18 0.05,-0.19 0.06,-0.18 0.06,-0.18 0.07,-0.18 0.07,-0.18 0.08,-0.18 0.09,-0.17 0.1,-0.16 0.1,-0.17 0.1,-0.15 0.12,-0.16 0.12,-0.14 0.12,-0.15 0.13,-0.13 0.14,-0.13 0.15,-0.12 0.15,-0.12 0.15,-0.1 0.17,-0.1 0.17,-0.09 0.17,-0.08 0.18,-0.07 0.19,-0.07 0.19,-0.05 0.2,-0.04 0.21,-0.03 0.21,-0.01 0.21,-0.01 c 1.05,0 4.09,0.7 4.09,4.73 l 0,2.79 -1.25,0 0,-2.79 c 0,-2.89 -1.24,-3.18 -1.79,-3.18 -1.64,0 -1.84,2.24 -1.84,2.48 l 0,9.97 c 0,2.09 0,4.03 -1.8,5.88 -1.94,1.94 -4.43,2.74 -6.82,2.74 -4.09,0 -7.53,-2.34 -7.53,-5.63 0,-1.5 1,-2.34 2.3,-2.34 1.39,0 2.29,0.99 2.29,2.29 0,0.59 -0.25,2.24 -2.54,2.29 1.35,1.74 3.78,2.29 5.38,2.29 2.44,0 5.28,-1.94 5.28,-6.38 l 0,-1.84 0,-1.04 0,-4.99 c 0,-4.73 -3.59,-6.42 -5.83,-6.42 -2.44,0 -4.48,1.74 -4.48,4.23 0,2.74 2.09,6.88 10.31,7.18 l 0,0 0,1.04 c -2.54,-0.15 -6.03,-0.3 -9.17,-1.79 -3.73,-1.69 -4.98,-4.28 -4.98,-6.48 0,-4.03 4.84,-5.28 7.97,-5.28 3.29,0 5.58,2 6.53,4.34 z" + id="path5507" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 544.82,440.57 -7.17,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-25.9 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 11.05,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 z" + id="path5509" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 571.28,412.62 0,0.03 0,0.02 0,0.04 0,0.03 0,0.04 0.01,0.05 0,0.05 0,0.05 0.01,0.06 0.01,0.07 0.01,0.06 0.01,0.07 0.01,0.07 0.01,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.03,0.09 0.03,0.09 0.03,0.09 0.04,0.09 0.04,0.09 0.04,0.1 0.05,0.09 0.05,0.1 0.05,0.09 0.06,0.1 0.06,0.09 0.07,0.1 0.07,0.09 0.08,0.09 c 1.94,-1.39 3.98,-1.54 4.93,-1.54 l 0,1.15 c -4.33,0 -4.33,4.98 -4.33,6.13 0,1.34 0.04,2.93 0.79,4.18 0.4,0.6 1.55,1.99 3.54,1.99 4.33,0 4.33,-4.98 4.33,-6.12 0,-1.35 -0.05,-2.95 -0.8,-4.19 -0.39,-0.6 -1.54,-1.99 -3.53,-1.99 l 0,0 0,-1.15 c 4.63,0 8.07,3.44 8.07,7.28 0,1.84 -0.8,3.68 -2.04,4.83 1.79,1.69 3.58,1.94 4.48,1.94 0.1,0 0.35,0 0.5,-0.05 -0.55,-0.2 -0.8,-0.75 -0.8,-1.35 0,-0.84 0.65,-1.44 1.45,-1.44 0.5,0 1.44,0.35 1.44,1.49 0,0.85 -0.6,2.45 -2.54,2.45 -1,0 -3.19,-0.3 -5.28,-2.35 -2.09,1.65 -4.18,1.8 -5.28,1.8 -4.63,0 -8.07,-3.44 -8.07,-7.27 0,-2.2 1.1,-4.09 2.34,-5.14 -0.65,-0.74 -1.55,-2.39 -1.55,-4.13 0,-1.55 0.65,-3.44 2.2,-4.43 -2.99,-0.85 -4.58,-2.99 -4.58,-4.98 0,-3.59 4.93,-6.33 11,-6.33 l 0.05,1.14 c -5.03,0 -8.47,2.55 -8.47,5.19 0,2.29 1.9,4.13 4.09,4.28 l 2.94,0 c 4.28,0 9.86,0 9.86,-4.28 0,-2.69 -3.53,-5.19 -8.42,-5.19 l 0,0 -0.05,-1.14 c 5.88,0 11.06,2.54 11.06,6.42 0,1.75 -0.69,4.29 -3.24,5.68 -2.63,1.4 -5.52,1.4 -8.56,1.4 -1.25,0 -3.39,0 -3.74,0.05 -1.59,0.2 -2.64,1.74 -2.64,3.33 z" + id="path5511" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 599.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + id="path5513" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 619.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 10.65,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + id="path5515" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 620.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + id="path5517" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 643.93,408.74 0,-3.29 7.32,0.55 0,1.54 c -3.48,0 -3.88,0.35 -3.88,2.79 l 0,30.24 -7.18,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-10.76 c -1.45,1.79 -3.59,3.09 -6.28,3.09 l 0.2,-1.1 c 1.75,0 3.84,-0.74 5.38,-2.99 0.55,-0.84 0.55,-0.95 0.55,-1.84 l 0,0 0,-10.21 c 0,-0.9 0,-1 -0.55,-1.84 -1.49,-2.4 -3.73,-3.49 -5.88,-3.49 -2.24,0 -4.03,1.29 -5.23,3.18 -1.29,2.05 -1.44,4.89 -1.44,6.93 0,1.84 0.1,4.83 1.54,7.07 1.05,1.55 2.94,3.19 5.63,3.19 l -0.2,1.1 c -5.87,0 -11.1,-4.88 -11.1,-11.31 0,-6.33 4.87,-11.26 10.55,-11.26 3.19,0 5.43,1.69 6.68,3.29 z" + id="path5519" /></g> </g> + <g + id="g6095" + transform="matrix(0.03268924,0,0,0.03268917,310.3268,502.54054)"> + <g + word-spacing="normal" + letter-spacing="normal" + font-size-adjust="none" + font-stretch="normal" + font-weight="normal" + font-variant="normal" + font-style="normal" + stroke-miterlimit="10.433" + xml:space="preserve" + transform="matrix(2.3207796,0,0,-2.3207796,-761.32304,1287.0293)" + id="g6097" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.0117321;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path + id="path6099" + d="m 464.57,424.73 0,3.29 -7.18,-0.55 0,-1.54 c 3.54,0 3.89,-0.31 3.89,-2.5 l 0,-23.31 c 0,-2.24 -0.55,-2.24 -3.89,-2.24 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.24 l 0,8.37 0,0.45 0.69,0.65 c -0.69,1.04 -0.69,1.09 -0.69,2.09 l 0,0 0,11.11 c 1.44,2.54 3.88,3.98 6.42,3.98 3.64,0 6.68,-4.38 6.68,-10.01 0,-6.03 -3.49,-10.21 -7.18,-10.21 -1.99,0 -3.88,0.99 -5.23,3.04 l -0.69,-0.65 c 0.24,-0.8 2.34,-3.49 6.12,-3.49 5.93,0 11.11,4.88 11.11,11.31 0,6.33 -4.83,11.26 -10.41,11.26 -3.88,0 -5.98,-2.2 -6.97,-3.29 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6101" + d="m 491.32,422.54 0,5.48 -6.93,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 12.01,0 0,1.54 -1.04,0 c -3.69,0 -3.79,0.55 -3.79,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.44,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.04,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6103" + d="m 511.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 10.66,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6105" + d="m 512.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6107" + d="m 522.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.89,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.54,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -4.19,0 -6.38,-2.99 -7.23,-4.88 -0.69,4.33 -4.38,4.88 -6.62,4.88 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6109" + d="m 574.59,409.79 0.02,-0.19 0.03,-0.19 0.03,-0.19 0.04,-0.18 0.05,-0.19 0.06,-0.18 0.06,-0.18 0.07,-0.18 0.07,-0.18 0.08,-0.18 0.09,-0.17 0.1,-0.16 0.1,-0.17 0.1,-0.15 0.12,-0.16 0.12,-0.14 0.12,-0.15 0.13,-0.13 0.14,-0.13 0.15,-0.12 0.15,-0.12 0.15,-0.1 0.17,-0.1 0.17,-0.09 0.17,-0.08 0.18,-0.07 0.19,-0.07 0.19,-0.05 0.2,-0.04 0.21,-0.03 0.21,-0.01 0.21,-0.01 c 1.05,0 4.09,0.7 4.09,4.73 l 0,2.79 -1.25,0 0,-2.79 c 0,-2.89 -1.24,-3.18 -1.79,-3.18 -1.64,0 -1.84,2.24 -1.84,2.48 l 0,9.97 c 0,2.09 0,4.03 -1.8,5.88 -1.94,1.94 -4.43,2.74 -6.82,2.74 -4.09,0 -7.53,-2.34 -7.53,-5.63 0,-1.5 1,-2.34 2.3,-2.34 1.39,0 2.29,0.99 2.29,2.29 0,0.59 -0.25,2.24 -2.54,2.29 1.35,1.74 3.78,2.29 5.38,2.29 2.44,0 5.28,-1.94 5.28,-6.38 l 0,-1.84 0,-1.04 0,-4.99 c 0,-4.73 -3.59,-6.42 -5.83,-6.42 -2.44,0 -4.48,1.74 -4.48,4.23 0,2.74 2.09,6.88 10.31,7.18 l 0,0 0,1.04 c -2.54,-0.15 -6.03,-0.3 -9.17,-1.79 -3.73,-1.69 -4.98,-4.28 -4.98,-6.48 0,-4.03 4.84,-5.28 7.97,-5.28 3.29,0 5.58,2 6.53,4.34 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6111" + d="m 591.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6113" + d="m 623.67,422.74 0.06,0.14 0.07,0.14 0.06,0.14 0.07,0.13 0.07,0.13 0.07,0.12 0.07,0.12 0.07,0.12 0.15,0.21 0.15,0.21 0.16,0.19 0.16,0.17 0.16,0.16 0.17,0.15 0.17,0.13 0.17,0.13 0.17,0.11 0.17,0.1 0.17,0.09 0.17,0.08 0.16,0.07 0.17,0.06 0.16,0.06 0.16,0.04 0.16,0.04 0.15,0.04 0.15,0.03 0.14,0.02 0.13,0.02 0.13,0.01 0.13,0.01 0.11,0.01 0.11,0 0.1,0 0.09,0.01 0.07,0 0,1.54 -8.07,0 0,-1.54 c 1.55,-0.05 2.35,-0.9 2.35,-2.14 0,-0.5 -0.05,-0.61 -0.3,-1.2 l -5.03,-12.26 -5.53,13.4 c -0.2,0.5 -0.3,0.7 -0.3,0.9 0,1.3 1.84,1.3 2.79,1.3 l 0,1.54 -10.26,0 0,-1.54 c 2.39,0 3.33,0 4.03,-1.75 L 615.45,406 c -0.25,-0.65 -0.94,-2.29 -1.24,-2.94 -1.1,-2.74 -2.49,-6.18 -5.68,-6.18 -0.25,0 -1.4,0 -2.34,0.9 1.54,0.2 1.94,1.29 1.94,2.09 0,1.3 -0.95,2.09 -2.09,2.09 -1,0 -2.09,-0.64 -2.09,-2.14 0,-2.24 2.09,-4.03 4.58,-4.03 3.14,0 5.18,2.84 6.38,5.68 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6115" + d="m 650.28,412.62 0,0.03 0,0.02 0,0.04 0,0.03 0,0.04 0.01,0.05 0,0.05 0,0.05 0.01,0.06 0.01,0.07 0.01,0.06 0.01,0.07 0.01,0.07 0.01,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.03,0.09 0.03,0.09 0.03,0.09 0.04,0.09 0.04,0.09 0.04,0.1 0.05,0.09 0.05,0.1 0.05,0.09 0.06,0.1 0.06,0.09 0.07,0.1 0.07,0.09 0.08,0.09 c 1.94,-1.39 3.98,-1.54 4.93,-1.54 l 0,1.15 c -4.33,0 -4.33,4.98 -4.33,6.13 0,1.34 0.04,2.93 0.79,4.18 0.4,0.6 1.55,1.99 3.54,1.99 4.33,0 4.33,-4.98 4.33,-6.12 0,-1.35 -0.05,-2.95 -0.8,-4.19 -0.39,-0.6 -1.54,-1.99 -3.53,-1.99 l 0,0 0,-1.15 c 4.63,0 8.07,3.44 8.07,7.28 0,1.84 -0.8,3.68 -2.04,4.83 1.79,1.69 3.58,1.94 4.48,1.94 0.1,0 0.35,0 0.5,-0.05 -0.55,-0.2 -0.8,-0.75 -0.8,-1.35 0,-0.84 0.65,-1.44 1.45,-1.44 0.5,0 1.44,0.35 1.44,1.49 0,0.85 -0.6,2.45 -2.54,2.45 -1,0 -3.19,-0.3 -5.28,-2.35 -2.09,1.65 -4.18,1.8 -5.28,1.8 -4.63,0 -8.07,-3.44 -8.07,-7.27 0,-2.2 1.1,-4.09 2.34,-5.14 -0.65,-0.74 -1.55,-2.39 -1.55,-4.13 0,-1.55 0.65,-3.44 2.2,-4.43 -2.99,-0.85 -4.58,-2.99 -4.58,-4.98 0,-3.59 4.93,-6.33 11,-6.33 l 0.05,1.14 c -5.03,0 -8.47,2.55 -8.47,5.19 0,2.29 1.9,4.13 4.09,4.28 l 2.94,0 c 4.28,0 9.86,0 9.86,-4.28 0,-2.69 -3.53,-5.19 -8.42,-5.19 l 0,0 -0.05,-1.14 c 5.88,0 11.06,2.54 11.06,6.42 0,1.75 -0.69,4.29 -3.24,5.68 -2.63,1.4 -5.52,1.4 -8.56,1.4 -1.25,0 -3.39,0 -3.74,0.05 -1.59,0.2 -2.64,1.74 -2.64,3.33 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6117" + d="m 678.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6119" + d="m 698.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 10.65,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6121" + d="m 699.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path6123" + d="m 722.93,408.74 0,-3.29 7.32,0.55 0,1.54 c -3.48,0 -3.88,0.35 -3.88,2.79 l 0,30.24 -7.18,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-10.76 c -1.45,1.79 -3.59,3.09 -6.28,3.09 l 0.2,-1.1 c 1.75,0 3.84,-0.74 5.38,-2.99 0.55,-0.84 0.55,-0.95 0.55,-1.84 l 0,0 0,-10.21 c 0,-0.9 0,-1 -0.55,-1.84 -1.49,-2.4 -3.73,-3.49 -5.88,-3.49 -2.24,0 -4.03,1.29 -5.23,3.18 -1.29,2.05 -1.44,4.89 -1.44,6.93 0,1.84 0.1,4.83 1.54,7.07 1.05,1.55 2.94,3.19 5.63,3.19 l -0.2,1.1 c -5.87,0 -11.1,-4.88 -11.1,-11.31 0,-6.33 4.87,-11.26 10.55,-11.26 3.19,0 5.43,1.69 6.68,3.29 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /></g> </g> + <g + id="g7409" + transform="matrix(0.07687878,0,0,0.07687857,308.70189,541.03791)"> + <g + word-spacing="normal" + letter-spacing="normal" + font-size-adjust="none" + font-stretch="normal" + font-weight="normal" + font-variant="normal" + font-style="normal" + stroke-miterlimit="10.433" + xml:space="preserve" + transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)" + id="g7411" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:13.00750923;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"><path + id="path7413" + d="m 466.36,415.66 0.11,-0.02 0.13,-0.02 0.14,-0.03 0.16,-0.03 0.17,-0.04 0.18,-0.05 0.18,-0.05 0.2,-0.05 0.21,-0.06 0.21,-0.07 0.21,-0.08 0.22,-0.09 0.22,-0.09 0.22,-0.1 0.22,-0.12 0.22,-0.12 0.22,-0.13 0.21,-0.14 0.2,-0.15 0.2,-0.16 0.19,-0.18 0.18,-0.19 0.17,-0.2 0.16,-0.21 0.14,-0.22 0.07,-0.12 0.06,-0.12 0.06,-0.13 0.05,-0.12 0.05,-0.13 0.05,-0.14 0.04,-0.14 0.03,-0.14 0.03,-0.15 0.03,-0.15 0.02,-0.15 0.01,-0.16 0.01,-0.16 0,-0.17 c 0,-2.54 -1.74,-4.53 -5.63,-4.53 -4.18,0 -5.98,2.84 -6.92,7.07 -0.15,0.65 -0.2,0.85 -0.7,0.85 -0.65,0 -0.65,-0.35 -0.65,-1.25 l 0,-6.57 c 0,-0.85 0,-1.2 0.55,-1.2 0.25,0 0.3,0.05 1.25,1 0.1,0.1 0.1,0.2 0.99,1.14 2.19,-2.09 4.44,-2.14 5.48,-2.14 5.73,0 8.02,3.34 8.02,6.93 0,2.64 -1.49,4.13 -2.09,4.73 -1.64,1.59 -3.59,1.99 -5.68,2.39 -2.79,0.55 -6.12,1.2 -6.12,4.09 0,1.74 1.29,3.78 5.57,3.78 5.48,0 5.73,-4.48 5.83,-6.03 0.05,-0.45 0.5,-0.45 0.6,-0.45 0.65,0 0.65,0.25 0.65,1.2 l 0,5.03 c 0,0.85 0,1.2 -0.55,1.2 -0.25,0 -0.35,0 -1,-0.6 -0.15,-0.2 -0.64,-0.65 -0.84,-0.8 -1.9,1.4 -3.94,1.4 -4.69,1.4 -6.07,0 -7.97,-3.34 -7.97,-6.13 0,-1.74 0.8,-3.14 2.15,-4.23 1.59,-1.3 2.98,-1.6 6.57,-2.3 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7415" + d="m 494.48,409.93 0,-4.48 7.17,0.55 0,1.54 c -3.49,0 -3.88,0.35 -3.88,2.79 l 0,17.69 -7.33,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-8.87 c 0,-4.34 -2.39,-7.72 -6.03,-7.72 -4.18,0 -4.38,2.34 -4.38,4.93 l 0,16.54 -7.33,-0.55 0,-1.54 c 3.89,0 3.89,-0.15 3.89,-4.59 l 0,-7.47 c 0,-3.89 0,-8.42 7.57,-8.42 2.79,0 4.98,1.4 6.43,4.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7417" + d="m 511.57,424.78 0,15.79 -7.18,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-29.69 1.25,0 c 0.04,0.05 0.44,0.75 1.79,3.09 0.75,-1.15 2.84,-3.64 6.52,-3.64 l -0.19,1.1 c -2.25,0 -4.04,1.19 -5.24,3.04 -0.69,1.04 -0.69,1.19 -0.69,2.09 l 0,0 0,10.26 c 0,0.95 0,1 0.55,1.79 1.94,2.79 4.68,3.19 5.88,3.19 2.24,0 4.03,-1.3 5.23,-3.19 1.29,-2.04 1.44,-4.88 1.44,-6.92 0,-1.85 -0.1,-4.83 -1.55,-7.08 -1.04,-1.54 -2.93,-3.18 -5.62,-3.18 l 0.19,-1.1 c 5.93,0 11.11,4.88 11.11,11.31 0,6.33 -4.88,11.26 -10.56,11.26 -3.88,0 -6.03,-2.34 -6.82,-3.24 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><polygon + id="polygon7419" + points="531.55,418.2 531.55,415.32 544.75,415.32 544.75,418.2 " + style="fill:#000000;stroke-width:0" /><path + id="path7421" + d="m 552.83,416.86 0,0.38 0.01,0.36 0.01,0.36 0.02,0.35 0.03,0.34 0.03,0.34 0.04,0.32 0.04,0.32 0.05,0.31 0.05,0.3 0.05,0.29 0.06,0.29 0.14,0.54 0.15,0.52 0.16,0.49 0.19,0.46 0.19,0.43 0.21,0.4 0.22,0.37 0.23,0.35 0.24,0.33 0.25,0.3 0.26,0.28 0.26,0.25 0.27,0.23 0.28,0.21 0.27,0.19 0.28,0.17 0.29,0.15 0.28,0.13 0.28,0.11 0.28,0.09 0.28,0.08 0.28,0.06 0.27,0.05 0.26,0.03 0.26,0.02 0.25,0.01 c 0.45,0 3.59,-0.05 5.33,-1.84 -2.04,-0.15 -2.34,-1.64 -2.34,-2.29 0,-1.3 0.9,-2.3 2.29,-2.3 1.3,0 2.29,0.85 2.29,2.34 0,3.4 -3.78,5.34 -7.62,5.34 -6.22,0 -10.8,-5.38 -10.8,-11.56 0,-6.38 4.92,-11.31 10.7,-11.31 6.68,0 8.27,5.98 8.27,6.48 0,0.5 -0.49,0.5 -0.65,0.5 -0.44,0 -0.54,-0.2 -0.64,-0.5 -1.45,-4.63 -4.68,-5.23 -6.53,-5.23 -2.64,0 -7.02,2.14 -7.02,10.16 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7423" + d="m 592.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7425" + d="m 599.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.88,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.55,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7427" + d="m 629.62,425.93 7.12,0 0,1.54 -7.12,0 0,9.17 -1.25,0 c -0.05,-4.09 -1.54,-9.42 -6.42,-9.62 l 0,-1.09 4.23,0 0,-13.75 c 0,-6.13 4.63,-6.73 6.42,-6.73 3.55,0 4.94,3.54 4.94,6.73 l 0,2.84 -1.25,0 0,-2.74 c 0,-3.69 -1.49,-5.58 -3.33,-5.58 -3.34,0 -3.34,4.53 -3.34,5.38 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7429" + d="m 648.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7431" + d="m 682.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7433" + d="m 692.82,440.57 -7.17,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-25.9 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 11.05,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7435" + d="m 735.72,422.59 0.05,0.11 0.04,0.11 0.05,0.12 0.05,0.13 0.06,0.13 0.06,0.13 0.07,0.13 0.07,0.14 0.07,0.13 0.08,0.14 0.09,0.14 0.09,0.13 0.1,0.14 0.11,0.13 0.12,0.14 0.12,0.13 0.13,0.12 0.14,0.13 0.15,0.12 0.16,0.11 0.17,0.11 0.18,0.1 0.18,0.1 0.2,0.08 0.22,0.08 0.22,0.08 0.23,0.06 0.25,0.05 0.26,0.05 0.14,0.02 0.14,0.01 0.14,0.02 0.14,0.01 0.15,0 0.15,0.01 0,1.54 -8.07,0 0,-1.54 c 1.85,-0.05 2.39,-1.2 2.39,-2.14 0,-0.45 -0.09,-0.65 -0.29,-1.2 l -5.08,-12.7 -5.58,13.9 c -0.3,0.64 -0.3,0.74 -0.3,0.84 0,1.3 1.94,1.3 2.84,1.3 l 0,1.54 -10.26,0 0,-1.54 c 3.14,0 3.33,-0.31 3.98,-1.85 l 7.17,-17.68 c 0.3,-0.7 0.4,-0.95 1.05,-0.95 0.65,0 0.85,0.45 1.05,0.95 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7437" + d="m 763.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7439" + d="m 772.82,440.57 -7.17,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-25.9 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 11.05,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7441" + d="m 797.48,409.93 0,-4.48 7.17,0.55 0,1.54 c -3.49,0 -3.88,0.35 -3.88,2.79 l 0,17.69 -7.33,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-8.87 c 0,-4.34 -2.39,-7.72 -6.03,-7.72 -4.18,0 -4.38,2.34 -4.38,4.93 l 0,16.54 -7.33,-0.55 0,-1.54 c 3.89,0 3.89,-0.15 3.89,-4.59 l 0,-7.47 c 0,-3.89 0,-8.42 7.57,-8.42 2.79,0 4.98,1.4 6.43,4.48 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7443" + d="m 811.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.89,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.54,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -4.19,0 -6.38,-2.99 -7.23,-4.88 -0.69,4.33 -4.38,4.88 -6.62,4.88 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7445" + d="m 853.53,417.51 0.05,1.04 c 0.3,7.43 4.48,8.67 6.18,8.67 5.13,0 5.63,-6.72 5.63,-8.67 l -11.81,0 -0.05,-1.04 13.9,0 c 1.09,0 1.24,0 1.24,1.04 0,4.93 -2.69,9.77 -8.91,9.77 -5.78,0 -10.36,-5.14 -10.36,-11.36 0,-6.67 5.22,-11.51 10.95,-11.51 6.08,0 8.32,5.53 8.32,6.48 0,0.5 -0.4,0.6 -0.65,0.6 -0.44,0 -0.54,-0.3 -0.64,-0.7 -1.75,-5.13 -6.23,-5.13 -6.73,-5.13 -2.49,0 -4.48,1.49 -5.63,3.34 -1.49,2.39 -1.49,5.67 -1.49,7.47 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7447" + d="m 894.72,427.47 0,5.78 c 0,4.38 2.39,6.77 4.58,6.77 0.15,0 0.9,0 1.65,-0.35 -0.6,-0.2 -1.5,-0.84 -1.5,-2.09 0,-1.14 0.8,-2.14 2.14,-2.14 1.44,0 2.19,1 2.19,2.19 0,1.84 -1.84,3.49 -4.48,3.49 -3.49,0 -7.72,-2.64 -7.72,-7.92 l 0,-5.73 -3.93,0 0,-1.54 3.93,0 0,-16.14 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,16.04 5.68,0 0,1.54 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7449" + d="m 918.59,409.79 0.02,-0.19 0.03,-0.19 0.03,-0.19 0.04,-0.18 0.05,-0.19 0.06,-0.18 0.06,-0.18 0.07,-0.18 0.07,-0.18 0.08,-0.18 0.09,-0.17 0.1,-0.16 0.1,-0.17 0.1,-0.15 0.12,-0.16 0.12,-0.14 0.12,-0.15 0.13,-0.13 0.14,-0.13 0.15,-0.12 0.15,-0.12 0.15,-0.1 0.17,-0.1 0.17,-0.09 0.17,-0.08 0.18,-0.07 0.19,-0.07 0.19,-0.05 0.2,-0.04 0.21,-0.03 0.21,-0.01 0.21,-0.01 c 1.05,0 4.09,0.7 4.09,4.73 l 0,2.79 -1.25,0 0,-2.79 c 0,-2.89 -1.24,-3.18 -1.79,-3.18 -1.64,0 -1.84,2.24 -1.84,2.48 l 0,9.97 c 0,2.09 0,4.03 -1.8,5.88 -1.94,1.94 -4.43,2.74 -6.82,2.74 -4.09,0 -7.53,-2.34 -7.53,-5.63 0,-1.5 1,-2.34 2.3,-2.34 1.39,0 2.29,0.99 2.29,2.29 0,0.59 -0.25,2.24 -2.54,2.29 1.35,1.74 3.78,2.29 5.38,2.29 2.44,0 5.28,-1.94 5.28,-6.38 l 0,-1.84 0,-1.04 0,-4.99 c 0,-4.73 -3.59,-6.42 -5.83,-6.42 -2.44,0 -4.48,1.74 -4.48,4.23 0,2.74 2.09,6.88 10.31,7.18 l 0,0 0,1.04 c -2.54,-0.15 -6.03,-0.3 -9.17,-1.79 -3.73,-1.69 -4.98,-4.28 -4.98,-6.48 0,-4.03 4.84,-5.28 7.97,-5.28 3.29,0 5.58,2 6.53,4.34 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7451" + d="m 931.83,416.86 0,0.38 0.01,0.36 0.01,0.36 0.02,0.35 0.03,0.34 0.03,0.34 0.04,0.32 0.04,0.32 0.05,0.31 0.05,0.3 0.05,0.29 0.06,0.29 0.14,0.54 0.15,0.52 0.16,0.49 0.19,0.46 0.19,0.43 0.21,0.4 0.22,0.37 0.23,0.35 0.24,0.33 0.25,0.3 0.26,0.28 0.26,0.25 0.27,0.23 0.28,0.21 0.27,0.19 0.28,0.17 0.29,0.15 0.28,0.13 0.28,0.11 0.28,0.09 0.28,0.08 0.28,0.06 0.27,0.05 0.26,0.03 0.26,0.02 0.25,0.01 c 0.45,0 3.59,-0.05 5.33,-1.84 -2.04,-0.15 -2.34,-1.64 -2.34,-2.29 0,-1.3 0.9,-2.3 2.29,-2.3 1.3,0 2.29,0.85 2.29,2.34 0,3.4 -3.78,5.34 -7.62,5.34 -6.22,0 -10.8,-5.38 -10.8,-11.56 0,-6.38 4.92,-11.31 10.7,-11.31 6.68,0 8.27,5.98 8.27,6.48 0,0.5 -0.49,0.5 -0.65,0.5 -0.44,0 -0.54,-0.2 -0.64,-0.5 -1.45,-4.63 -4.68,-5.23 -6.53,-5.23 -2.64,0 -7.02,2.14 -7.02,10.16 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /><path + id="path7453" + d="m 954.53,417.51 0.05,1.04 c 0.3,7.43 4.48,8.67 6.18,8.67 5.13,0 5.63,-6.72 5.63,-8.67 l -11.81,0 -0.05,-1.04 13.9,0 c 1.09,0 1.24,0 1.24,1.04 0,4.93 -2.69,9.77 -8.91,9.77 -5.78,0 -10.36,-5.14 -10.36,-11.36 0,-6.67 5.22,-11.51 10.95,-11.51 6.08,0 8.32,5.53 8.32,6.48 0,0.5 -0.4,0.6 -0.65,0.6 -0.44,0 -0.54,-0.3 -0.64,-0.7 -1.75,-5.13 -6.23,-5.13 -6.73,-5.13 -2.49,0 -4.48,1.49 -5.63,3.34 -1.49,2.39 -1.49,5.67 -1.49,7.47 z" + inkscape:connector-curvature="0" + style="fill:#000000;stroke-width:0" /></g> </g> + <g + transform="matrix(0.07341573,0,0,0.07341554,330.15779,528.75607)" + id="g8143"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:13.62107658;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="g8145" + transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)" + xml:space="preserve" + stroke-miterlimit="10.433" + font-style="normal" + font-variant="normal" + font-weight="normal" + font-stretch="normal" + font-size-adjust="none" + letter-spacing="normal" + word-spacing="normal"><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 464.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 10.66,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + id="path8147" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 465.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + id="path8149" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 474.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.88,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.55,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -3.63,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + id="path8151" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 504.62,425.93 7.12,0 0,1.54 -7.12,0 0,9.17 -1.25,0 c -0.05,-4.09 -1.54,-9.42 -6.42,-9.62 l 0,-1.09 4.23,0 0,-13.75 c 0,-6.13 4.63,-6.73 6.43,-6.73 3.53,0 4.93,3.54 4.93,6.73 l 0,2.84 -1.25,0 0,-2.74 c 0,-3.69 -1.49,-5.58 -3.33,-5.58 -3.34,0 -3.34,4.53 -3.34,5.38 z" + id="path8153" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 520.53,417.51 0.05,1.04 c 0.3,7.43 4.48,8.67 6.18,8.67 5.13,0 5.63,-6.72 5.63,-8.67 l -11.81,0 -0.05,-1.04 13.9,0 c 1.09,0 1.24,0 1.24,1.04 0,4.93 -2.69,9.77 -8.91,9.77 -5.78,0 -10.36,-5.14 -10.36,-11.36 0,-6.67 5.22,-11.51 10.95,-11.51 6.08,0 8.32,5.53 8.32,6.48 0,0.5 -0.4,0.6 -0.65,0.6 -0.44,0 -0.54,-0.3 -0.64,-0.7 -1.75,-5.13 -6.23,-5.13 -6.73,-5.13 -2.49,0 -4.48,1.49 -5.63,3.34 -1.49,2.39 -1.49,5.67 -1.49,7.47 z" + id="path8155" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 545.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + id="path8157" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 573.59,409.79 0.02,-0.19 0.03,-0.19 0.03,-0.19 0.04,-0.18 0.05,-0.19 0.06,-0.18 0.06,-0.18 0.07,-0.18 0.07,-0.18 0.08,-0.18 0.09,-0.17 0.1,-0.16 0.1,-0.17 0.1,-0.15 0.12,-0.16 0.12,-0.14 0.12,-0.15 0.13,-0.13 0.14,-0.13 0.15,-0.12 0.15,-0.12 0.15,-0.1 0.17,-0.1 0.17,-0.09 0.17,-0.08 0.18,-0.07 0.19,-0.07 0.19,-0.05 0.2,-0.04 0.21,-0.03 0.21,-0.01 0.21,-0.01 c 1.05,0 4.09,0.7 4.09,4.73 l 0,2.79 -1.25,0 0,-2.79 c 0,-2.89 -1.24,-3.18 -1.79,-3.18 -1.64,0 -1.84,2.24 -1.84,2.48 l 0,9.97 c 0,2.09 0,4.03 -1.8,5.88 -1.94,1.94 -4.43,2.74 -6.82,2.74 -4.09,0 -7.53,-2.34 -7.53,-5.63 0,-1.5 1,-2.34 2.3,-2.34 1.39,0 2.29,0.99 2.29,2.29 0,0.59 -0.25,2.24 -2.54,2.29 1.35,1.74 3.78,2.29 5.38,2.29 2.44,0 5.28,-1.94 5.28,-6.38 l 0,-1.84 0,-1.04 0,-4.99 c 0,-4.73 -3.59,-6.42 -5.83,-6.42 -2.44,0 -4.48,1.74 -4.48,4.23 0,2.74 2.09,6.88 10.31,7.18 l 0,0 0,1.04 c -2.54,-0.15 -6.03,-0.3 -9.17,-1.79 -3.73,-1.69 -4.98,-4.28 -4.98,-6.48 0,-4.03 4.84,-5.28 7.97,-5.28 3.29,0 5.58,2 6.53,4.34 z" + id="path8159" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 587.83,416.86 0,0.38 0.01,0.36 0.01,0.36 0.02,0.35 0.03,0.34 0.03,0.34 0.04,0.32 0.04,0.32 0.05,0.31 0.05,0.3 0.05,0.29 0.06,0.29 0.14,0.54 0.15,0.52 0.16,0.49 0.19,0.46 0.19,0.43 0.21,0.4 0.22,0.37 0.23,0.35 0.24,0.33 0.25,0.3 0.26,0.28 0.26,0.25 0.27,0.23 0.28,0.21 0.27,0.19 0.28,0.17 0.29,0.15 0.28,0.13 0.28,0.11 0.28,0.09 0.28,0.08 0.28,0.06 0.27,0.05 0.26,0.03 0.26,0.02 0.25,0.01 c 0.45,0 3.59,-0.05 5.33,-1.84 -2.04,-0.15 -2.34,-1.64 -2.34,-2.29 0,-1.3 0.9,-2.3 2.29,-2.3 1.3,0 2.29,0.85 2.29,2.34 0,3.4 -3.78,5.34 -7.62,5.34 -6.22,0 -10.8,-5.38 -10.8,-11.56 0,-6.38 4.92,-11.31 10.7,-11.31 6.68,0 8.27,5.98 8.27,6.48 0,0.5 -0.49,0.5 -0.65,0.5 -0.44,0 -0.54,-0.2 -0.64,-0.5 -1.45,-4.63 -4.68,-5.23 -6.53,-5.23 -2.64,0 -7.02,2.14 -7.02,10.16 z" + id="path8161" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 612.62,425.93 7.12,0 0,1.54 -7.12,0 0,9.17 -1.25,0 c -0.05,-4.09 -1.54,-9.42 -6.42,-9.62 l 0,-1.09 4.23,0 0,-13.75 c 0,-6.13 4.63,-6.73 6.42,-6.73 3.55,0 4.94,3.54 4.94,6.73 l 0,2.84 -1.25,0 0,-2.74 c 0,-3.69 -1.49,-5.58 -3.33,-5.58 -3.34,0 -3.34,4.53 -3.34,5.38 z" + id="path8163" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 631.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 10.65,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + id="path8165" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 632.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + id="path8167" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 660.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + id="path8169" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 667.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.88,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.55,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + id="path8171" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 714.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + id="path8173" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 731.53,417.51 0.05,1.04 c 0.3,7.43 4.48,8.67 6.18,8.67 5.13,0 5.63,-6.72 5.63,-8.67 l -11.81,0 -0.05,-1.04 13.9,0 c 1.09,0 1.24,0 1.24,1.04 0,4.93 -2.69,9.77 -8.91,9.77 -5.78,0 -10.36,-5.14 -10.36,-11.36 0,-6.67 5.22,-11.51 10.95,-11.51 6.08,0 8.32,5.53 8.32,6.48 0,0.5 -0.4,0.6 -0.65,0.6 -0.44,0 -0.54,-0.3 -0.64,-0.7 -1.75,-5.13 -6.23,-5.13 -6.73,-5.13 -2.49,0 -4.48,1.49 -5.63,3.34 -1.49,2.39 -1.49,5.67 -1.49,7.47 z" + id="path8175" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 753.28,412.62 0,0.03 0,0.02 0,0.04 0,0.03 0,0.04 0.01,0.05 0,0.05 0,0.05 0.01,0.06 0.01,0.07 0.01,0.06 0.01,0.07 0.01,0.07 0.01,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.02,0.08 0.03,0.09 0.03,0.09 0.03,0.09 0.04,0.09 0.04,0.09 0.04,0.1 0.05,0.09 0.05,0.1 0.05,0.09 0.06,0.1 0.06,0.09 0.07,0.1 0.07,0.09 0.08,0.09 c 1.94,-1.39 3.98,-1.54 4.93,-1.54 l 0,1.15 c -4.33,0 -4.33,4.98 -4.33,6.13 0,1.34 0.04,2.93 0.79,4.18 0.4,0.6 1.55,1.99 3.54,1.99 4.33,0 4.33,-4.98 4.33,-6.12 0,-1.35 -0.05,-2.95 -0.8,-4.19 -0.39,-0.6 -1.54,-1.99 -3.53,-1.99 l 0,0 0,-1.15 c 4.63,0 8.07,3.44 8.07,7.28 0,1.84 -0.8,3.68 -2.04,4.83 1.79,1.69 3.58,1.94 4.48,1.94 0.1,0 0.35,0 0.5,-0.05 -0.55,-0.2 -0.8,-0.75 -0.8,-1.35 0,-0.84 0.65,-1.44 1.45,-1.44 0.5,0 1.44,0.35 1.44,1.49 0,0.85 -0.6,2.45 -2.54,2.45 -1,0 -3.19,-0.3 -5.28,-2.35 -2.09,1.65 -4.18,1.8 -5.28,1.8 -4.63,0 -8.07,-3.44 -8.07,-7.27 0,-2.2 1.1,-4.09 2.34,-5.14 -0.65,-0.74 -1.55,-2.39 -1.55,-4.13 0,-1.55 0.65,-3.44 2.2,-4.43 -2.99,-0.85 -4.58,-2.99 -4.58,-4.98 0,-3.59 4.93,-6.33 11,-6.33 l 0.05,1.14 c -5.03,0 -8.47,2.55 -8.47,5.19 0,2.29 1.9,4.13 4.09,4.28 l 2.94,0 c 4.28,0 9.86,0 9.86,-4.28 0,-2.69 -3.53,-5.19 -8.42,-5.19 l 0,0 -0.05,-1.14 c 5.88,0 11.06,2.54 11.06,6.42 0,1.75 -0.69,4.29 -3.24,5.68 -2.63,1.4 -5.52,1.4 -8.56,1.4 -1.25,0 -3.39,0 -3.74,0.05 -1.59,0.2 -2.64,1.74 -2.64,3.33 z" + id="path8177" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 781.82,428.02 -6.98,-0.55 0,-1.54 c 3.24,0 3.69,-0.31 3.69,-2.75 l 0,-13.39 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 10.65,0 0,1.54 c -3.28,0 -3.48,0.25 -3.48,2.19 z" + id="path8179" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 782.02,436.68 -0.01,0.15 -0.01,0.15 -0.02,0.14 -0.02,0.13 -0.03,0.14 -0.04,0.13 -0.04,0.13 -0.05,0.12 -0.06,0.12 -0.06,0.11 -0.06,0.11 -0.07,0.11 -0.08,0.1 -0.08,0.1 -0.08,0.09 -0.09,0.09 -0.09,0.09 -0.1,0.07 -0.1,0.08 -0.11,0.07 -0.1,0.06 -0.11,0.06 -0.12,0.06 -0.11,0.05 -0.12,0.04 -0.12,0.04 -0.13,0.03 -0.12,0.03 -0.13,0.02 -0.13,0.01 -0.12,0.01 -0.13,0 c -1.55,0 -2.65,-1.34 -2.65,-2.64 0,-1.34 1.1,-2.64 2.65,-2.64 1.39,0 2.64,1.05 2.64,2.64 z" + id="path8181" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 810.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + id="path8183" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 817.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.88,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.55,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + id="path8185" /></g> </g> + <g + style="display:inline" + transform="matrix(0.07808264,0,0,0.07808253,298.37853,551.75108)" + id="g6692"> + <g + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:12.80695343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.43299961;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="g9776" + transform="matrix(1.0629921,0,0,-1.0629921,-186.02362,789.27165)" + xml:space="preserve" + stroke-miterlimit="10.433" + font-style="normal" + font-variant="normal" + font-weight="normal" + font-stretch="normal" + font-size-adjust="none" + letter-spacing="normal" + word-spacing="normal"><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 466.36,415.66 0.11,-0.02 0.13,-0.02 0.14,-0.03 0.16,-0.03 0.17,-0.04 0.18,-0.05 0.18,-0.05 0.2,-0.05 0.21,-0.06 0.21,-0.07 0.21,-0.08 0.22,-0.09 0.22,-0.09 0.22,-0.1 0.22,-0.12 0.22,-0.12 0.22,-0.13 0.21,-0.14 0.2,-0.15 0.2,-0.16 0.19,-0.18 0.18,-0.19 0.17,-0.2 0.16,-0.21 0.14,-0.22 0.07,-0.12 0.06,-0.12 0.06,-0.13 0.05,-0.12 0.05,-0.13 0.05,-0.14 0.04,-0.14 0.03,-0.14 0.03,-0.15 0.03,-0.15 0.02,-0.15 0.01,-0.16 0.01,-0.16 0,-0.17 c 0,-2.54 -1.74,-4.53 -5.63,-4.53 -4.18,0 -5.98,2.84 -6.92,7.07 -0.15,0.65 -0.2,0.85 -0.7,0.85 -0.65,0 -0.65,-0.35 -0.65,-1.25 l 0,-6.57 c 0,-0.85 0,-1.2 0.55,-1.2 0.25,0 0.3,0.05 1.25,1 0.1,0.1 0.1,0.2 0.99,1.14 2.19,-2.09 4.44,-2.14 5.48,-2.14 5.73,0 8.02,3.34 8.02,6.93 0,2.64 -1.49,4.13 -2.09,4.73 -1.64,1.59 -3.59,1.99 -5.68,2.39 -2.79,0.55 -6.12,1.2 -6.12,4.09 0,1.74 1.29,3.78 5.57,3.78 5.48,0 5.73,-4.48 5.83,-6.03 0.05,-0.45 0.5,-0.45 0.6,-0.45 0.65,0 0.65,0.25 0.65,1.2 l 0,5.03 c 0,0.85 0,1.2 -0.55,1.2 -0.25,0 -0.35,0 -1,-0.6 -0.15,-0.2 -0.64,-0.65 -0.84,-0.8 -1.9,1.4 -3.94,1.4 -4.69,1.4 -6.07,0 -7.97,-3.34 -7.97,-6.13 0,-1.74 0.8,-3.14 2.15,-4.23 1.59,-1.3 2.98,-1.6 6.57,-2.3 z" + id="path6695" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 494.48,409.93 0,-4.48 7.17,0.55 0,1.54 c -3.49,0 -3.88,0.35 -3.88,2.79 l 0,17.69 -7.33,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-8.87 c 0,-4.34 -2.39,-7.72 -6.03,-7.72 -4.18,0 -4.38,2.34 -4.38,4.93 l 0,16.54 -7.33,-0.55 0,-1.54 c 3.89,0 3.89,-0.15 3.89,-4.59 l 0,-7.47 c 0,-3.89 0,-8.42 7.57,-8.42 2.79,0 4.98,1.4 6.43,4.48 z" + id="path6697" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 511.57,424.78 0,15.79 -7.18,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-29.69 1.25,0 c 0.04,0.05 0.44,0.75 1.79,3.09 0.75,-1.15 2.84,-3.64 6.52,-3.64 l -0.19,1.1 c -2.25,0 -4.04,1.19 -5.24,3.04 -0.69,1.04 -0.69,1.19 -0.69,2.09 l 0,0 0,10.26 c 0,0.95 0,1 0.55,1.79 1.94,2.79 4.68,3.19 5.88,3.19 2.24,0 4.03,-1.3 5.23,-3.19 1.29,-2.04 1.44,-4.88 1.44,-6.92 0,-1.85 -0.1,-4.83 -1.55,-7.08 -1.04,-1.54 -2.93,-3.18 -5.62,-3.18 l 0.19,-1.1 c 5.93,0 11.11,4.88 11.11,11.31 0,6.33 -4.88,11.26 -10.56,11.26 -3.88,0 -6.03,-2.34 -6.82,-3.24 z" + id="path6699" /><polygon + style="fill:#000000;stroke-width:0" + points="531.55,418.2 531.55,415.32 544.75,415.32 544.75,418.2 " + id="polygon6701" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 552.83,416.86 0,0.38 0.01,0.36 0.01,0.36 0.02,0.35 0.03,0.34 0.03,0.34 0.04,0.32 0.04,0.32 0.05,0.31 0.05,0.3 0.05,0.29 0.06,0.29 0.14,0.54 0.15,0.52 0.16,0.49 0.19,0.46 0.19,0.43 0.21,0.4 0.22,0.37 0.23,0.35 0.24,0.33 0.25,0.3 0.26,0.28 0.26,0.25 0.27,0.23 0.28,0.21 0.27,0.19 0.28,0.17 0.29,0.15 0.28,0.13 0.28,0.11 0.28,0.09 0.28,0.08 0.28,0.06 0.27,0.05 0.26,0.03 0.26,0.02 0.25,0.01 c 0.45,0 3.59,-0.05 5.33,-1.84 -2.04,-0.15 -2.34,-1.64 -2.34,-2.29 0,-1.3 0.9,-2.3 2.29,-2.3 1.3,0 2.29,0.85 2.29,2.34 0,3.4 -3.78,5.34 -7.62,5.34 -6.22,0 -10.8,-5.38 -10.8,-11.56 0,-6.38 4.92,-11.31 10.7,-11.31 6.68,0 8.27,5.98 8.27,6.48 0,0.5 -0.49,0.5 -0.65,0.5 -0.44,0 -0.54,-0.2 -0.64,-0.5 -1.45,-4.63 -4.68,-5.23 -6.53,-5.23 -2.64,0 -7.02,2.14 -7.02,10.16 z" + id="path6703" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 592.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + id="path6705" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 599.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.88,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.55,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + id="path6707" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 629.62,425.93 7.12,0 0,1.54 -7.12,0 0,9.17 -1.25,0 c -0.05,-4.09 -1.54,-9.42 -6.42,-9.62 l 0,-1.09 4.23,0 0,-13.75 c 0,-6.13 4.63,-6.73 6.42,-6.73 3.55,0 4.94,3.54 4.94,6.73 l 0,2.84 -1.25,0 0,-2.74 c 0,-3.69 -1.49,-5.58 -3.33,-5.58 -3.34,0 -3.34,4.53 -3.34,5.38 z" + id="path6709" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 648.32,422.54 0,5.48 -6.92,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 12,0 0,1.54 -1.05,0 c -3.68,0 -3.78,0.55 -3.78,2.35 l 0,7.66 c 0,4.94 2.09,9.37 5.88,9.37 0.34,0 0.45,0 0.54,-0.05 -0.15,-0.05 -1.14,-0.65 -1.14,-1.94 0,-1.39 1.05,-2.14 2.14,-2.14 0.9,0 2.14,0.59 2.14,2.19 0,1.59 -1.54,3.04 -3.68,3.04 -3.64,0 -5.43,-3.34 -6.13,-5.48 z" + id="path6711" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 682.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + id="path6713" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 692.82,440.57 -7.17,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-25.9 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 11.05,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 z" + id="path6715" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 735.72,422.59 0.05,0.11 0.04,0.11 0.05,0.12 0.05,0.13 0.06,0.13 0.06,0.13 0.07,0.13 0.07,0.14 0.07,0.13 0.08,0.14 0.09,0.14 0.09,0.13 0.1,0.14 0.11,0.13 0.12,0.14 0.12,0.13 0.13,0.12 0.14,0.13 0.15,0.12 0.16,0.11 0.17,0.11 0.18,0.1 0.18,0.1 0.2,0.08 0.22,0.08 0.22,0.08 0.23,0.06 0.25,0.05 0.26,0.05 0.14,0.02 0.14,0.01 0.14,0.02 0.14,0.01 0.15,0 0.15,0.01 0,1.54 -8.07,0 0,-1.54 c 1.85,-0.05 2.39,-1.2 2.39,-2.14 0,-0.45 -0.09,-0.65 -0.29,-1.2 l -5.08,-12.7 -5.58,13.9 c -0.3,0.64 -0.3,0.74 -0.3,0.84 0,1.3 1.94,1.3 2.84,1.3 l 0,1.54 -10.26,0 0,-1.54 c 3.14,0 3.33,-0.31 3.98,-1.85 l 7.17,-17.68 c 0.3,-0.7 0.4,-0.95 1.05,-0.95 0.65,0 0.85,0.45 1.05,0.95 z" + id="path6717" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 763.46,416.66 -0.01,0.59 -0.05,0.59 -0.07,0.58 -0.09,0.57 -0.13,0.56 -0.15,0.55 -0.17,0.54 -0.2,0.53 -0.22,0.52 -0.25,0.5 -0.26,0.49 -0.29,0.47 -0.31,0.46 -0.33,0.44 -0.35,0.42 -0.36,0.41 -0.39,0.39 -0.4,0.36 -0.41,0.35 -0.44,0.33 -0.44,0.3 -0.46,0.29 -0.48,0.26 -0.48,0.23 -0.5,0.21 -0.51,0.19 -0.52,0.16 -0.53,0.13 -0.54,0.1 -0.55,0.08 -0.56,0.04 -0.56,0.02 -0.05,-1.1 c 2.19,0 4.34,-1.1 5.63,-3.24 1.3,-2.14 1.3,-5.03 1.3,-6.92 0,-1.79 0,-4.49 -1.1,-6.68 -1.09,-2.24 -3.28,-3.68 -5.78,-3.68 l 0,0 c -2.14,0 -4.33,1.04 -5.68,3.34 -1.24,2.19 -1.24,5.23 -1.24,7.02 0,1.94 0,4.63 1.2,6.82 1.34,2.3 3.68,3.34 5.67,3.34 l 0.05,1.1 c -6.22,0 -11.05,-5.43 -11.05,-11.66 0,-6.43 5.17,-11.21 11,-11.21 6.03,0 11.06,4.88 11.06,11.21 z" + id="path6719" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 772.82,440.57 -7.17,-0.55 0,-1.54 c 3.48,0 3.88,-0.35 3.88,-2.79 l 0,-25.9 c 0,-2.25 -0.55,-2.25 -3.88,-2.25 l 0,-1.54 11.05,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 z" + id="path6721" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 797.48,409.93 0,-4.48 7.17,0.55 0,1.54 c -3.49,0 -3.88,0.35 -3.88,2.79 l 0,17.69 -7.33,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 l 0,-8.87 c 0,-4.34 -2.39,-7.72 -6.03,-7.72 -4.18,0 -4.38,2.34 -4.38,4.93 l 0,16.54 -7.33,-0.55 0,-1.54 c 3.89,0 3.89,-0.15 3.89,-4.59 l 0,-7.47 c 0,-3.89 0,-8.42 7.57,-8.42 2.79,0 4.98,1.4 6.43,4.48 z" + id="path6723" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 811.48,423.14 0,-13.35 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.33,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -3.34,0 -3.88,0 -3.88,2.25 l 0,9.16 c 0,5.18 3.53,7.97 6.72,7.97 3.14,0 3.69,-2.69 3.69,-5.53 l 0,-11.6 c 0,-2.25 -0.55,-2.25 -3.89,-2.25 l 0,-1.54 11.21,0 0,1.54 c -2.59,0 -3.84,0 -3.89,1.5 l 0,9.51 c 0,4.29 0,5.83 -1.54,7.63 -0.7,0.84 -2.34,1.84 -5.23,1.84 -4.19,0 -6.38,-2.99 -7.23,-4.88 -0.69,4.33 -4.38,4.88 -6.62,4.88 -3.64,0 -5.98,-2.14 -7.37,-5.23 l 0,5.23 -7.03,-0.55 0,-1.54 c 3.49,0 3.89,-0.35 3.89,-2.79 z" + id="path6725" /><path + style="fill:#000000;stroke-width:0" + inkscape:connector-curvature="0" + d="m 853.53,417.51 0.05,1.04 c 0.3,7.43 4.48,8.67 6.18,8.67 5.13,0 5.63,-6.72 5.63,-8.67 l -11.81,0 -0.05,-1.04 13.9,0 c 1.09,0 1.24,0 1.24,1.04 0,4.93 -2.69,9.77 -8.91,9.77 -5.78,0 -10.36,-5.14 -10.36,-11.36 0,-6.67 5.22,-11.51 10.95,-11.51 6.08,0 8.32,5.53 8.32,6.48 0,0.5 -0.4,0.6 -0.65,0.6 -0.44,0 -0.54,-0.3 -0.64,-0.7 -1.75,-5.13 -6.23,-5.13 -6.73,-5.13 -2.49,0 -4.48,1.49 -5.63,3.34 -1.49,2.39 -1.49,5.67 -1.49,7.47 z" + id="path6727" /></g> </g> + </g> + <g + style="fill:#940000;fill-opacity:1" + transform="matrix(0.50845278,0,0,0.50845278,-83.397412,-1.2563371)" + ns0:text="$u_K$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + id="g4928"> + <defs + id="defs4930"> + <g + id="g4932"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6ab7fae3-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path4935" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6ab7fae3-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.484375,-0.5625 C 3.59375,-0.15625 3.953125,0.109375 4.375,0.109375 4.71875,0.109375 4.953125,-0.125 5.109375,-0.4375 5.28125,-0.796875 5.40625,-1.40625 5.40625,-1.421875 c 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.109375,0 -0.109375,0.046875 -0.140625,0.1875 -0.140625,0.5625 -0.328125,1.234375 -0.75,1.234375 -0.203125,0 -0.3125,-0.125 -0.3125,-0.453125 0,-0.21875 0.125,-0.6875 0.203125,-1.046875 L 4.578125,-2.6875 C 4.609375,-2.828125 4.703125,-3.203125 4.75,-3.359375 4.796875,-3.59375 4.890625,-3.96875 4.890625,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.046875,0 -0.3125,0.015625 -0.390625,0.34375 -0.1875,0.734375 -0.625,2.484375 -0.75,3 -0.015625,0.046875 -0.40625,0.84375 -1.140625,0.84375 -0.515625,0 -0.609375,-0.453125 -0.609375,-0.8125 0,-0.5625 0.28125,-1.34375 0.53125,-2.03125 0.125,-0.3125 0.171875,-0.453125 0.171875,-0.640625 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.25,-0.859375 0.640625,-1.234375 1.015625,-1.234375 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.234375 -0.109375,0.53125 -0.171875,0.671875 -0.375,1 -0.578125,1.609375 -0.578125,2.09375 0,0.953125 0.6875,1.203125 1.21875,1.203125 0.65625,0 1.015625,-0.453125 1.1875,-0.671875 z m 0,0" + id="path4938" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6ab7fae3-2"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path4941" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-6ab7fae3-3"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.984375,-2.796875 C 3.953125,-2.859375 3.9375,-2.875 3.9375,-2.890625 c 0,-0.015625 0.015625,-0.015625 0.171875,-0.125 l 0.703125,-0.5 c 0.921875,-0.640625 1.359375,-0.953125 1.84375,-1 0.078125,0 0.171875,0 0.171875,-0.140625 0,-0.0625 -0.046875,-0.09375 -0.09375,-0.09375 -0.15625,0 -0.328125,0.015625 -0.484375,0.015625 -0.1875,0 -0.65625,-0.03125 -0.84375,-0.03125 -0.046875,0 -0.140625,0 -0.140625,0.15625 0,0.015625 0,0.09375 0.09375,0.09375 0.09375,0.015625 0.1875,0.03125 0.1875,0.109375 0,0.125 -0.21875,0.28125 -0.3125,0.34375 L 2.328125,-2.015625 2.875,-4.21875 c 0.0625,-0.234375 0.078125,-0.296875 0.609375,-0.296875 0.125,0 0.21875,0 0.21875,-0.140625 0,-0.0625 -0.046875,-0.109375 -0.109375,-0.109375 -0.203125,0 -0.71875,0.03125 -0.921875,0.03125 -0.109375,0 -0.359375,0 -0.484375,0 C 2.0625,-4.75 1.890625,-4.765625 1.75,-4.765625 c -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.234375,0.09375 0.109375,0 0.140625,0 0.265625,0.015625 0.140625,0.015625 0.15625,0.03125 0.15625,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.9375,3.703125 C 1.25,-0.3125 1.234375,-0.25 0.6875,-0.25 c -0.125,0 -0.203125,0 -0.203125,0.15625 0,0 0,0.09375 0.109375,0.09375 0.203125,0 0.703125,-0.03125 0.90625,-0.03125 0.109375,0 0.359375,0 0.484375,0.015625 C 2.125,-0.015625 2.296875,0 2.421875,0 2.46875,0 2.578125,0 2.578125,-0.15625 2.578125,-0.25 2.484375,-0.25 2.34375,-0.25 c 0,0 -0.140625,0 -0.265625,-0.015625 C 1.921875,-0.28125 1.921875,-0.296875 1.921875,-0.375 1.921875,-0.421875 2,-0.6875 2.25,-1.703125 l 1.15625,-0.8125 1.015625,1.953125 c 0.046875,0.09375 0.046875,0.09375 0.046875,0.125 0,0.171875 -0.203125,0.1875 -0.328125,0.1875 -0.078125,0 -0.171875,0 -0.171875,0.15625 0,0 0,0.09375 0.109375,0.09375 C 4.28125,0 4.78125,-0.03125 4.96875,-0.03125 5.1875,-0.03125 5.46875,0 5.65625,0 5.75,0 5.796875,-0.046875 5.796875,-0.140625 5.796875,-0.25 5.703125,-0.25 5.640625,-0.25 c -0.125,0 -0.34375,-0.015625 -0.46875,-0.234375 z m 0,0" + id="path4944" /> + </symbol> + </g> + </defs> + <g + style="fill:#940000;fill-opacity:1" + id="textext-6ab7fae3-4"> + <g + style="fill:#940000;fill-opacity:1" + id="g4947"> + <use + style="fill:#940000;fill-opacity:1" + height="100%" + width="100%" + xlink:href="#textext-6ab7fae3-1" + x="223.43201" + y="134.765" + id="use4949" /> + </g> + <g + style="fill:#940000;fill-opacity:1" + id="g4951"> + <use + style="fill:#940000;fill-opacity:1" + height="100%" + width="100%" + xlink:href="#textext-6ab7fae3-3" + x="229.13499" + y="136.259" + id="use4953" /> + </g> + </g> + </g> + <g + id="g5637" + style="fill:#940000;fill-opacity:1" + transform="matrix(0.50845278,0,0,0.50845278,-48.364869,-20.926264)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$u_L$"> + <defs + id="defs5639"> + <g + id="g5641"> + <symbol + id="textext-4c2d31a6-0" + overflow="visible" + style="overflow:visible"> + <path + id="path5644" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-4c2d31a6-1" + overflow="visible" + style="overflow:visible"> + <path + id="path5647" + d="M 3.484375,-0.5625 C 3.59375,-0.15625 3.953125,0.109375 4.375,0.109375 4.71875,0.109375 4.953125,-0.125 5.109375,-0.4375 5.28125,-0.796875 5.40625,-1.40625 5.40625,-1.421875 c 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.109375,0 -0.109375,0.046875 -0.140625,0.1875 -0.140625,0.5625 -0.328125,1.234375 -0.75,1.234375 -0.203125,0 -0.3125,-0.125 -0.3125,-0.453125 0,-0.21875 0.125,-0.6875 0.203125,-1.046875 L 4.578125,-2.6875 C 4.609375,-2.828125 4.703125,-3.203125 4.75,-3.359375 4.796875,-3.59375 4.890625,-3.96875 4.890625,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.046875,0 -0.3125,0.015625 -0.390625,0.34375 -0.1875,0.734375 -0.625,2.484375 -0.75,3 -0.015625,0.046875 -0.40625,0.84375 -1.140625,0.84375 -0.515625,0 -0.609375,-0.453125 -0.609375,-0.8125 0,-0.5625 0.28125,-1.34375 0.53125,-2.03125 0.125,-0.3125 0.171875,-0.453125 0.171875,-0.640625 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.25,-0.859375 0.640625,-1.234375 1.015625,-1.234375 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.234375 -0.109375,0.53125 -0.171875,0.671875 -0.375,1 -0.578125,1.609375 -0.578125,2.09375 0,0.953125 0.6875,1.203125 1.21875,1.203125 0.65625,0 1.015625,-0.453125 1.1875,-0.671875 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-4c2d31a6-2" + overflow="visible" + style="overflow:visible"> + <path + id="path5650" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-4c2d31a6-3" + overflow="visible" + style="overflow:visible"> + <path + id="path5653" + d="m 2.875,-4.1875 c 0.0625,-0.25 0.078125,-0.328125 0.71875,-0.328125 0.21875,0 0.28125,0 0.28125,-0.140625 0,-0.015625 0,-0.109375 -0.109375,-0.109375 -0.15625,0 -0.34375,0.015625 -0.515625,0.03125 -0.171875,0 -0.390625,0 -0.5625,0 -0.140625,0 -0.328125,0 -0.484375,0 -0.140625,0 -0.3125,-0.03125 -0.453125,-0.03125 -0.03125,0 -0.140625,0 -0.140625,0.15625 0,0.09375 0.078125,0.09375 0.21875,0.09375 0.015625,0 0.140625,0 0.265625,0.015625 0.15625,0.015625 0.171875,0.03125 0.171875,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.9375,3.703125 C 1.234375,-0.3125 1.21875,-0.25 0.6875,-0.25 c -0.109375,0 -0.203125,0 -0.203125,0.140625 C 0.484375,0 0.5625,0 0.6875,0 l 3.5,0 c 0.1875,0 0.1875,0 0.25,-0.140625 0.0625,-0.1875 0.59375,-1.53125 0.59375,-1.59375 0,-0.015625 -0.015625,-0.09375 -0.125,-0.09375 -0.078125,0 -0.09375,0.03125 -0.140625,0.140625 C 4.5,-1.03125 4.1875,-0.25 2.921875,-0.25 l -0.796875,0 c -0.203125,0 -0.21875,-0.015625 -0.21875,-0.078125 0,0 0,-0.03125 0.03125,-0.140625 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-4c2d31a6-4" + style="fill:#940000;fill-opacity:1"> + <g + id="g5656" + style="fill:#940000;fill-opacity:1"> + <use + id="use5658" + y="134.765" + x="223.43201" + xlink:href="#textext-4c2d31a6-1" + width="100%" + height="100%" + style="fill:#940000;fill-opacity:1" /> + </g> + <g + id="g5660" + style="fill:#940000;fill-opacity:1"> + <use + id="use5662" + y="136.259" + x="229.13499" + xlink:href="#textext-4c2d31a6-3" + width="100%" + height="100%" + style="fill:#940000;fill-opacity:1" /> + </g> + </g> + </g> + <g + ns0:text="$u_M$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(0.50845278,0,0,0.50845278,-78.755587,-42.669799)" + style="fill:#940000;fill-opacity:1" + id="g6366"> + <defs + id="defs6368"> + <g + id="g6370"> + <symbol + overflow="visible" + id="textext-3762459b-0" + style="overflow:visible"> + <path + style="stroke:none" + d="" + id="path6373" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-3762459b-1" + style="overflow:visible"> + <path + style="stroke:none" + d="M 3.484375,-0.5625 C 3.59375,-0.15625 3.953125,0.109375 4.375,0.109375 4.71875,0.109375 4.953125,-0.125 5.109375,-0.4375 5.28125,-0.796875 5.40625,-1.40625 5.40625,-1.421875 c 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.109375,0 -0.109375,0.046875 -0.140625,0.1875 -0.140625,0.5625 -0.328125,1.234375 -0.75,1.234375 -0.203125,0 -0.3125,-0.125 -0.3125,-0.453125 0,-0.21875 0.125,-0.6875 0.203125,-1.046875 L 4.578125,-2.6875 C 4.609375,-2.828125 4.703125,-3.203125 4.75,-3.359375 4.796875,-3.59375 4.890625,-3.96875 4.890625,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.046875,0 -0.3125,0.015625 -0.390625,0.34375 -0.1875,0.734375 -0.625,2.484375 -0.75,3 -0.015625,0.046875 -0.40625,0.84375 -1.140625,0.84375 -0.515625,0 -0.609375,-0.453125 -0.609375,-0.8125 0,-0.5625 0.28125,-1.34375 0.53125,-2.03125 0.125,-0.3125 0.171875,-0.453125 0.171875,-0.640625 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.25,-0.859375 0.640625,-1.234375 1.015625,-1.234375 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.234375 -0.109375,0.53125 -0.171875,0.671875 -0.375,1 -0.578125,1.609375 -0.578125,2.09375 0,0.953125 0.6875,1.203125 1.21875,1.203125 0.65625,0 1.015625,-0.453125 1.1875,-0.671875 z m 0,0" + id="path6376" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-3762459b-2" + style="overflow:visible"> + <path + style="stroke:none" + d="" + id="path6379" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-3762459b-3" + style="overflow:visible"> + <path + style="stroke:none" + d="m 7.109375,-4.1875 c 0.0625,-0.265625 0.078125,-0.328125 0.59375,-0.328125 0.15625,0 0.234375,0 0.234375,-0.140625 0,-0.109375 -0.078125,-0.109375 -0.203125,-0.109375 l -0.953125,0 c -0.203125,0 -0.203125,0.015625 -0.296875,0.140625 l -2.6875,3.984375 -0.6875,-3.9375 c -0.03125,-0.171875 -0.03125,-0.1875 -0.25,-0.1875 l -0.984375,0 c -0.140625,0 -0.234375,0 -0.234375,0.15625 0,0.09375 0.078125,0.09375 0.234375,0.09375 0.109375,0 0.140625,0 0.265625,0.015625 0.140625,0.015625 0.15625,0.03125 0.15625,0.109375 0,0 0,0.046875 -0.03125,0.140625 l -0.875,3.5 c -0.0625,0.234375 -0.171875,0.484375 -0.734375,0.5 -0.046875,0 -0.140625,0 -0.140625,0.15625 0,0 0,0.09375 0.109375,0.09375 0.203125,0 0.5,-0.03125 0.71875,-0.03125 C 1.515625,-0.03125 1.921875,0 2.078125,0 2.125,0 2.21875,0 2.21875,-0.15625 2.21875,-0.25 2.125,-0.25 2.0625,-0.25 1.625,-0.265625 1.625,-0.453125 1.625,-0.546875 c 0,-0.03125 0,-0.0625 0.03125,-0.171875 l 0.921875,-3.703125 0.75,4.234375 C 3.359375,-0.0625 3.359375,0 3.46875,0 3.5625,0 3.625,-0.078125 3.671875,-0.15625 L 6.59375,-4.5 6.609375,-4.484375 5.625,-0.546875 C 5.5625,-0.3125 5.546875,-0.25 5.015625,-0.25 c -0.125,0 -0.21875,0 -0.21875,0.15625 0,0 0,0.09375 0.109375,0.09375 0.140625,0 0.296875,-0.015625 0.4375,-0.015625 0.140625,0 0.296875,-0.015625 0.4375,-0.015625 C 5.984375,-0.03125 6.46875,0 6.671875,0 6.703125,0 6.8125,0 6.8125,-0.15625 6.8125,-0.25 6.734375,-0.25 6.59375,-0.25 c -0.015625,0 -0.140625,0 -0.265625,-0.015625 -0.15625,-0.015625 -0.15625,-0.03125 -0.15625,-0.109375 0,-0.03125 0.015625,-0.109375 0.015625,-0.140625 z m 0,0" + id="path6382" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + style="fill:#940000;fill-opacity:1" + id="textext-3762459b-4"> + <g + style="fill:#940000;fill-opacity:1" + id="g6385"> + <use + style="fill:#940000;fill-opacity:1" + xlink:href="#textext-3762459b-1" + x="223.43201" + y="134.765" + id="use6387" + width="100%" + height="100%" /> + </g> + <g + style="fill:#940000;fill-opacity:1" + id="g6389"> + <use + style="fill:#940000;fill-opacity:1" + xlink:href="#textext-3762459b-3" + x="229.13499" + y="136.259" + id="use6391" + width="100%" + height="100%" /> + </g> + </g> + </g> + <g + id="g8574" + style="fill:#000000;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.50845278,0,0,0.50845278,-73.960369,-25.141862)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$v$"> + <defs + id="defs8576"> + <g + id="g8578"> + <symbol + id="textext-c00f1f1c-0" + overflow="visible" + style="overflow:visible"> + <path + id="path8581" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-c00f1f1c-1" + overflow="visible" + style="overflow:visible"> + <path + id="path8584" + d="m 4.671875,-3.703125 c 0,-0.546875 -0.265625,-0.703125 -0.4375,-0.703125 -0.25,0 -0.5,0.265625 -0.5,0.484375 0,0.125 0.046875,0.1875 0.15625,0.296875 0.21875,0.203125 0.34375,0.453125 0.34375,0.8125 0,0.421875 -0.609375,2.703125 -1.765625,2.703125 -0.515625,0 -0.75,-0.34375 -0.75,-0.875 0,-0.546875 0.28125,-1.28125 0.578125,-2.109375 0.078125,-0.171875 0.125,-0.3125 0.125,-0.5 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.9375,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.296875,-1 0.71875,-1.234375 1.015625,-1.234375 0.078125,0 0.25,0 0.25,0.3125 0,0.25 -0.109375,0.53125 -0.171875,0.703125 -0.4375,1.15625 -0.5625,1.609375 -0.5625,2.046875 0,1.078125 0.875,1.234375 1.328125,1.234375 1.671875,0 2.25,-3.296875 2.25,-3.8125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-c00f1f1c-2" + style="fill:#000000;fill-opacity:1;stroke:#840073;stroke-opacity:1"> + <g + id="g8587" + style="fill:#000000;fill-opacity:1;stroke:#840073;stroke-opacity:1"> + <use + id="use8589" + y="134.765" + x="223.43201" + xlink:href="#textext-c00f1f1c-1" + width="100%" + height="100%" + style="fill:#000000;fill-opacity:1;stroke:#840073;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="g11667" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-27.538669,8.5885839)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$\\sigma^v_1$"> + <defs + id="defs11669"> + <g + id="g11671"> + <symbol + id="textext-24ed3c40-0" + overflow="visible" + style="overflow:visible"> + <path + id="path11674" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-24ed3c40-1" + overflow="visible" + style="overflow:visible"> + <path + id="path11677" + d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-24ed3c40-2" + overflow="visible" + style="overflow:visible"> + <path + id="path11680" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-24ed3c40-3" + overflow="visible" + style="overflow:visible"> + <path + id="path11683" + d="m 3.71875,-2.53125 c 0,-0.546875 -0.328125,-0.546875 -0.34375,-0.546875 -0.1875,0 -0.375,0.1875 -0.375,0.375 0,0.109375 0.0625,0.171875 0.109375,0.203125 0.125,0.109375 0.265625,0.28125 0.265625,0.5625 0,0.3125 -0.46875,1.8125 -1.296875,1.8125 -0.5625,0 -0.5625,-0.5 -0.5625,-0.625 0,-0.3125 0.125,-0.703125 0.390625,-1.359375 C 1.953125,-2.25 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 C 0.734375,-2.59375 1.03125,-2.875 1.3125,-2.875 c 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.296875,0.78125 -0.375,1.078125 -0.375,1.328125 0,0.6875 0.546875,0.90625 1.078125,0.90625 1.171875,0 1.65625,-2.015625 1.65625,-2.59375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-24ed3c40-4" + overflow="visible" + style="overflow:visible"> + <path + id="path11686" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-24ed3c40-5" + overflow="visible" + style="overflow:visible"> + <path + id="path11689" + d="m 2.328125,-4.4375 c 0,-0.1875 0,-0.1875 -0.203125,-0.1875 -0.453125,0.4375 -1.078125,0.4375 -1.359375,0.4375 l 0,0.25 c 0.15625,0 0.625,0 1,-0.1875 l 0,3.546875 c 0,0.234375 0,0.328125 -0.6875,0.328125 l -0.265625,0 0,0.25 c 0.125,0 0.984375,-0.03125 1.234375,-0.03125 0.21875,0 1.09375,0.03125 1.25,0.03125 l 0,-0.25 -0.265625,0 c -0.703125,0 -0.703125,-0.09375 -0.703125,-0.328125 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-24ed3c40-6" + style="fill:#800080"> + <g + id="g11692" + style="fill:#800080;fill-opacity:1"> + <use + id="use11694" + y="134.765" + x="223.43201" + xlink:href="#textext-24ed3c40-1" + width="100%" + height="100%" + style="fill:#800080" /> + </g> + <g + id="g11696" + style="fill:#800080;fill-opacity:1"> + <use + id="use11698" + y="131.14999" + x="229.48199" + xlink:href="#textext-24ed3c40-3" + width="100%" + height="100%" + style="fill:#800080" /> + </g> + <g + id="g11700" + style="fill:#800080;fill-opacity:1"> + <use + id="use11702" + y="137.23801" + x="229.125" + xlink:href="#textext-24ed3c40-5" + width="100%" + height="100%" + style="fill:#800080" /> + </g> + </g> + </g> + <g + id="g13457" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-29.974512,-6.2845651)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$\\sigma^v_2$"> + <defs + id="defs13459"> + <g + id="g13461"> + <symbol + id="symbol13463" + overflow="visible" + style="overflow:visible"> + <path + id="path13465" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="symbol13467" + overflow="visible" + style="overflow:visible"> + <path + id="path13469" + d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="symbol13471" + overflow="visible" + style="overflow:visible"> + <path + id="path13473" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="symbol13475" + overflow="visible" + style="overflow:visible"> + <path + id="path13477" + d="m 3.71875,-2.53125 c 0,-0.546875 -0.328125,-0.546875 -0.34375,-0.546875 -0.1875,0 -0.375,0.1875 -0.375,0.375 0,0.109375 0.0625,0.171875 0.109375,0.203125 0.125,0.109375 0.265625,0.28125 0.265625,0.5625 0,0.3125 -0.46875,1.8125 -1.296875,1.8125 -0.5625,0 -0.5625,-0.5 -0.5625,-0.625 0,-0.3125 0.125,-0.703125 0.390625,-1.359375 C 1.953125,-2.25 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 C 0.734375,-2.59375 1.03125,-2.875 1.3125,-2.875 c 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.296875,0.78125 -0.375,1.078125 -0.375,1.328125 0,0.6875 0.546875,0.90625 1.078125,0.90625 1.171875,0 1.65625,-2.015625 1.65625,-2.59375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="symbol13479" + overflow="visible" + style="overflow:visible"> + <path + id="path13481" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="symbol13483" + overflow="visible" + style="overflow:visible"> + <path + id="path13485" + d="m 3.515625,-1.265625 -0.234375,0 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 -0.046875,0.046875 -0.578125,0.046875 -0.6875,0.046875 l -1.28125,0 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 l 2.875,0 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="g13487" + style="fill:#800080"> + <g + id="g13489" + style="fill:#800080;fill-opacity:1"> + <g + id="use13491" + transform="translate(223.43201,134.765)" + style="fill:#800080"> + <path + inkscape:connector-curvature="0" + style="fill:#800080;stroke:none" + d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0" + id="path16679" /> + </g> + </g> + <g + id="g13493" + style="fill:#800080;fill-opacity:1"> + <g + id="use13495" + transform="translate(229.48199,131.14999)" + style="fill:#800080"> + <path + inkscape:connector-curvature="0" + style="fill:#800080;stroke:none" + d="m 3.71875,-2.53125 c 0,-0.546875 -0.328125,-0.546875 -0.34375,-0.546875 -0.1875,0 -0.375,0.1875 -0.375,0.375 0,0.109375 0.0625,0.171875 0.109375,0.203125 0.125,0.109375 0.265625,0.28125 0.265625,0.5625 0,0.3125 -0.46875,1.8125 -1.296875,1.8125 -0.5625,0 -0.5625,-0.5 -0.5625,-0.625 0,-0.3125 0.125,-0.703125 0.390625,-1.359375 C 1.953125,-2.25 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 C 0.734375,-2.59375 1.03125,-2.875 1.3125,-2.875 c 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.296875,0.78125 -0.375,1.078125 -0.375,1.328125 0,0.6875 0.546875,0.90625 1.078125,0.90625 1.171875,0 1.65625,-2.015625 1.65625,-2.59375 z m 0,0" + id="path16687" /> + </g> + </g> + <g + id="g13497" + style="fill:#800080;fill-opacity:1"> + <g + id="use13499" + transform="translate(229.125,137.23801)" + style="fill:#800080"> + <path + inkscape:connector-curvature="0" + style="fill:#800080;stroke:none" + d="m 3.515625,-1.265625 -0.234375,0 c -0.015625,0.15625 -0.09375,0.5625 -0.1875,0.625 -0.046875,0.046875 -0.578125,0.046875 -0.6875,0.046875 l -1.28125,0 c 0.734375,-0.640625 0.984375,-0.84375 1.390625,-1.171875 0.515625,-0.40625 1,-0.84375 1,-1.5 0,-0.84375 -0.734375,-1.359375 -1.625,-1.359375 -0.859375,0 -1.453125,0.609375 -1.453125,1.25 0,0.34375 0.296875,0.390625 0.375,0.390625 0.15625,0 0.359375,-0.125 0.359375,-0.375 0,-0.125 -0.046875,-0.375 -0.40625,-0.375 C 0.984375,-4.21875 1.453125,-4.375 1.78125,-4.375 c 0.703125,0 1.0625,0.546875 1.0625,1.109375 0,0.609375 -0.4375,1.078125 -0.65625,1.328125 L 0.515625,-0.265625 C 0.4375,-0.203125 0.4375,-0.1875 0.4375,0 l 2.875,0 z m 0,0" + id="path16695" /> + </g> + </g> + </g> + </g> + <g + ns0:text="$\\sigma^v_3$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(0.32729163,0,0,0.32729163,-41.023056,-0.71609914)" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g15172"> + <defs + id="defs15174"> + <g + id="g15176"> + <symbol + overflow="visible" + id="textext-ea05e2ce-0" + style="overflow:visible"> + <path + style="stroke:none" + d="" + id="path15179" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-ea05e2ce-1" + style="overflow:visible"> + <path + style="stroke:none" + d="m 5.15625,-3.71875 c 0.140625,0 0.5,0 0.5,-0.34375 0,-0.234375 -0.21875,-0.234375 -0.390625,-0.234375 l -2.28125,0 c -1.5,0 -2.609375,1.640625 -2.609375,2.828125 0,0.875 0.59375,1.578125 1.5,1.578125 1.171875,0 2.5,-1.203125 2.5,-2.734375 0,-0.171875 0,-0.65625 -0.3125,-1.09375 z M 1.890625,-0.109375 C 1.390625,-0.109375 1,-0.46875 1,-1.1875 c 0,-0.296875 0.109375,-1.109375 0.46875,-1.703125 0.421875,-0.6875 1.015625,-0.828125 1.359375,-0.828125 0.828125,0 0.90625,0.65625 0.90625,0.96875 0,0.46875 -0.203125,1.28125 -0.53125,1.796875 -0.390625,0.578125 -0.9375,0.84375 -1.3125,0.84375 z m 0,0" + id="path15182" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-ea05e2ce-2" + style="overflow:visible"> + <path + style="stroke:none" + d="" + id="path15185" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-ea05e2ce-3" + style="overflow:visible"> + <path + style="stroke:none" + d="m 3.71875,-2.53125 c 0,-0.546875 -0.328125,-0.546875 -0.34375,-0.546875 -0.1875,0 -0.375,0.1875 -0.375,0.375 0,0.109375 0.0625,0.171875 0.109375,0.203125 0.125,0.109375 0.265625,0.28125 0.265625,0.5625 0,0.3125 -0.46875,1.8125 -1.296875,1.8125 -0.5625,0 -0.5625,-0.5 -0.5625,-0.625 0,-0.3125 0.125,-0.703125 0.390625,-1.359375 C 1.953125,-2.25 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 C 0.734375,-2.59375 1.03125,-2.875 1.3125,-2.875 c 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.296875,0.78125 -0.375,1.078125 -0.375,1.328125 0,0.6875 0.546875,0.90625 1.078125,0.90625 1.171875,0 1.65625,-2.015625 1.65625,-2.59375 z m 0,0" + id="path15188" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-ea05e2ce-4" + style="overflow:visible"> + <path + style="stroke:none" + d="" + id="path15191" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + overflow="visible" + id="textext-ea05e2ce-5" + style="overflow:visible"> + <path + style="stroke:none" + d="m 1.90625,-2.328125 c 0.546875,0 0.9375,0.375 0.9375,1.125 0,0.859375 -0.515625,1.125 -0.90625,1.125 -0.28125,0 -0.90625,-0.078125 -1.1875,-0.5 0.328125,0 0.40625,-0.234375 0.40625,-0.390625 0,-0.21875 -0.171875,-0.375 -0.390625,-0.375 -0.1875,0 -0.390625,0.125 -0.390625,0.40625 0,0.65625 0.71875,1.078125 1.5625,1.078125 0.96875,0 1.640625,-0.65625 1.640625,-1.34375 0,-0.546875 -0.4375,-1.09375 -1.203125,-1.25 0.71875,-0.265625 0.984375,-0.78125 0.984375,-1.21875 0,-0.546875 -0.625,-0.953125 -1.40625,-0.953125 -0.765625,0 -1.359375,0.375 -1.359375,0.9375 0,0.234375 0.15625,0.359375 0.359375,0.359375 0.21875,0 0.359375,-0.15625 0.359375,-0.34375 0,-0.203125 -0.140625,-0.359375 -0.359375,-0.375 0.25,-0.296875 0.71875,-0.375 0.984375,-0.375 0.3125,0 0.75,0.15625 0.75,0.75 0,0.296875 -0.09375,0.625 -0.28125,0.828125 -0.21875,0.265625 -0.421875,0.28125 -0.765625,0.3125 -0.171875,0.015625 -0.1875,0.015625 -0.21875,0.015625 -0.015625,0 -0.078125,0.015625 -0.078125,0.09375 0,0.09375 0.0625,0.09375 0.1875,0.09375 z m 0,0" + id="path15194" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-ea05e2ce-6" + style="fill:#800080;stroke:#840073;stroke-opacity:1"> + <g + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g15197"> + <use + xlink:href="#textext-ea05e2ce-1" + x="223.43201" + y="134.765" + id="use15199" + style="fill:#800080;stroke:#840073;stroke-opacity:1" + width="100%" + height="100%" /> + </g> + <g + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g15201"> + <use + xlink:href="#textext-ea05e2ce-3" + x="229.48199" + y="131.14999" + id="use15203" + style="fill:#800080;stroke:#840073;stroke-opacity:1" + width="100%" + height="100%" /> + </g> + <g + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g15205"> + <use + xlink:href="#textext-ea05e2ce-5" + x="229.125" + y="137.23801" + id="use15207" + style="fill:#800080;stroke:#840073;stroke-opacity:1" + width="100%" + height="100%" /> + </g> + </g> + </g> + <g + id="g18366" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-38.662407,-9.46496)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$M^v$"> + <defs + id="defs18368"> + <g + id="g18370"> + <symbol + id="textext-33addb0b-0" + overflow="visible" + style="overflow:visible"> + <path + id="path18373" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-33addb0b-1" + overflow="visible" + style="overflow:visible"> + <path + id="path18376" + d="M 9.234375,-6.046875 C 9.328125,-6.40625 9.34375,-6.5 10.09375,-6.5 c 0.21875,0 0.3125,0 0.3125,-0.203125 0,-0.109375 -0.09375,-0.109375 -0.265625,-0.109375 l -1.3125,0 c -0.265625,0 -0.28125,0 -0.390625,0.1875 L 4.796875,-0.9375 4.015625,-6.578125 C 3.984375,-6.8125 3.96875,-6.8125 3.703125,-6.8125 l -1.359375,0 c -0.1875,0 -0.296875,0 -0.296875,0.1875 0,0.125 0.09375,0.125 0.28125,0.125 0.140625,0 0.3125,0.015625 0.4375,0.015625 0.15625,0.03125 0.21875,0.046875 0.21875,0.171875 0,0.03125 -0.015625,0.0625 -0.046875,0.1875 l -1.265625,5.0625 c -0.09375,0.40625 -0.265625,0.71875 -1.078125,0.75 -0.046875,0 -0.171875,0.015625 -0.171875,0.1875 0,0.09375 0.0625,0.125 0.140625,0.125 0.3125,0 0.65625,-0.03125 1,-0.03125 C 1.890625,-0.03125 2.25,0 2.578125,0 c 0.046875,0 0.1875,0 0.1875,-0.203125 0,-0.109375 -0.109375,-0.109375 -0.1875,-0.109375 -0.5625,0 -0.671875,-0.203125 -0.671875,-0.4375 0,-0.0625 0,-0.125 0.03125,-0.234375 l 1.359375,-5.421875 0.015625,0 0.859375,6.171875 C 4.1875,-0.109375 4.203125,0 4.3125,0 4.421875,0 4.484375,-0.109375 4.53125,-0.171875 l 4.03125,-6.3125 0.015625,0 -1.4375,5.703125 c -0.09375,0.390625 -0.109375,0.46875 -0.90625,0.46875 -0.15625,0 -0.265625,0 -0.265625,0.1875 C 5.96875,0 6.078125,0 6.109375,0 6.390625,0 7.0625,-0.03125 7.34375,-0.03125 7.75,-0.03125 8.1875,0 8.59375,0 8.65625,0 8.78125,0 8.78125,-0.203125 8.78125,-0.3125 8.6875,-0.3125 8.5,-0.3125 c -0.359375,0 -0.640625,0 -0.640625,-0.171875 0,-0.046875 0,-0.0625 0.046875,-0.25 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-33addb0b-2" + overflow="visible" + style="overflow:visible"> + <path + id="path18379" + d="" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + <symbol + id="textext-33addb0b-3" + overflow="visible" + style="overflow:visible"> + <path + id="path18382" + d="m 3.71875,-2.53125 c 0,-0.546875 -0.328125,-0.546875 -0.34375,-0.546875 -0.1875,0 -0.375,0.1875 -0.375,0.375 0,0.109375 0.0625,0.171875 0.109375,0.203125 0.125,0.109375 0.265625,0.28125 0.265625,0.5625 0,0.3125 -0.46875,1.8125 -1.296875,1.8125 -0.5625,0 -0.5625,-0.5 -0.5625,-0.625 0,-0.3125 0.125,-0.703125 0.390625,-1.359375 C 1.953125,-2.25 2,-2.359375 2,-2.46875 2,-2.84375 1.6875,-3.078125 1.34375,-3.078125 0.640625,-3.078125 0.328125,-2.125 0.328125,-2 c 0,0.078125 0.09375,0.078125 0.125,0.078125 0.09375,0 0.09375,-0.03125 0.125,-0.109375 C 0.734375,-2.59375 1.03125,-2.875 1.3125,-2.875 c 0.125,0 0.171875,0.078125 0.171875,0.234375 0,0.171875 -0.046875,0.3125 -0.125,0.46875 -0.296875,0.78125 -0.375,1.078125 -0.375,1.328125 0,0.6875 0.546875,0.90625 1.078125,0.90625 1.171875,0 1.65625,-2.015625 1.65625,-2.59375 z m 0,0" + style="stroke:none" + inkscape:connector-curvature="0" /> + </symbol> + </g> + </defs> + <g + id="textext-33addb0b-4"> + <g + id="g18385" + style="fill:#000000;fill-opacity:1"> + <use + id="use18387" + y="134.765" + x="223.43201" + xlink:href="#textext-33addb0b-1" + width="100%" + height="100%" /> + </g> + <g + id="g18389" + style="fill:#000000;fill-opacity:1"> + <use + id="use18391" + y="131.14999" + x="234.183" + xlink:href="#textext-33addb0b-3" + width="100%" + height="100%" /> + </g> + </g> + </g> + <g + ns0:text="$K^v$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(0.32729163,0,0,0.32729163,-39.689378,11.08427)" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g19387"> + <defs + id="defs19389"> + <g + id="g19391"> + <symbol + overflow="visible" + id="textext-a424de31-0"> + <path + style="stroke:none;" + d="" + id="path19394" /> + </symbol> + <symbol + overflow="visible" + id="textext-a424de31-1"> + <path + style="stroke:none;" + d="M 5.078125 -4.03125 C 5.0625 -4.0625 5.03125 -4.140625 5.03125 -4.171875 C 5.03125 -4.171875 5.203125 -4.3125 5.3125 -4.390625 L 7.0625 -5.734375 C 8 -6.4375 8.390625 -6.46875 8.6875 -6.5 C 8.765625 -6.515625 8.859375 -6.515625 8.859375 -6.703125 C 8.859375 -6.734375 8.828125 -6.8125 8.75 -6.8125 C 8.53125 -6.8125 8.28125 -6.78125 8.046875 -6.78125 C 7.6875 -6.78125 7.296875 -6.8125 6.9375 -6.8125 C 6.875 -6.8125 6.75 -6.8125 6.75 -6.609375 C 6.75 -6.546875 6.796875 -6.515625 6.875 -6.5 C 7.09375 -6.484375 7.171875 -6.4375 7.171875 -6.296875 C 7.171875 -6.109375 6.875 -5.875 6.8125 -5.828125 L 2.9375 -2.84375 L 3.734375 -6.046875 C 3.8125 -6.40625 3.84375 -6.5 4.5625 -6.5 C 4.8125 -6.5 4.90625 -6.5 4.90625 -6.703125 C 4.90625 -6.78125 4.828125 -6.8125 4.765625 -6.8125 C 4.484375 -6.8125 3.765625 -6.78125 3.484375 -6.78125 C 3.203125 -6.78125 2.5 -6.8125 2.203125 -6.8125 C 2.140625 -6.8125 2 -6.8125 2 -6.625 C 2 -6.5 2.09375 -6.5 2.296875 -6.5 C 2.421875 -6.5 2.609375 -6.484375 2.71875 -6.484375 C 2.875 -6.453125 2.9375 -6.4375 2.9375 -6.3125 C 2.9375 -6.28125 2.9375 -6.25 2.90625 -6.125 L 1.5625 -0.78125 C 1.46875 -0.390625 1.453125 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.375 -0.3125 0.375 -0.125 C 0.375 0 0.5 0 0.53125 0 C 0.8125 0 1.515625 -0.03125 1.796875 -0.03125 C 2 -0.03125 2.21875 -0.015625 2.4375 -0.015625 C 2.65625 -0.015625 2.875 0 3.078125 0 C 3.15625 0 3.28125 0 3.28125 -0.203125 C 3.28125 -0.3125 3.1875 -0.3125 3 -0.3125 C 2.625 -0.3125 2.359375 -0.3125 2.359375 -0.484375 C 2.359375 -0.5625 2.40625 -0.78125 2.4375 -0.921875 C 2.578125 -1.453125 2.71875 -1.96875 2.84375 -2.5 L 4.328125 -3.65625 L 5.484375 -0.96875 C 5.609375 -0.703125 5.609375 -0.671875 5.609375 -0.625 C 5.609375 -0.3125 5.171875 -0.3125 5.078125 -0.3125 C 4.96875 -0.3125 4.859375 -0.3125 4.859375 -0.109375 C 4.859375 0 4.984375 0 5 0 C 5.40625 0 5.828125 -0.03125 6.21875 -0.03125 C 6.4375 -0.03125 6.984375 0 7.203125 0 C 7.25 0 7.375 0 7.375 -0.203125 C 7.375 -0.3125 7.265625 -0.3125 7.171875 -0.3125 C 6.765625 -0.3125 6.640625 -0.40625 6.484375 -0.75 Z M 5.078125 -4.03125 " + id="path19397" /> + </symbol> + <symbol + overflow="visible" + id="textext-a424de31-2"> + <path + style="stroke:none;" + d="" + id="path19400" /> + </symbol> + <symbol + overflow="visible" + id="textext-a424de31-3"> + <path + style="stroke:none;" + d="M 3.71875 -2.53125 C 3.71875 -3.078125 3.390625 -3.078125 3.375 -3.078125 C 3.1875 -3.078125 3 -2.890625 3 -2.703125 C 3 -2.59375 3.0625 -2.53125 3.109375 -2.5 C 3.234375 -2.390625 3.375 -2.21875 3.375 -1.9375 C 3.375 -1.625 2.90625 -0.125 2.078125 -0.125 C 1.515625 -0.125 1.515625 -0.625 1.515625 -0.75 C 1.515625 -1.0625 1.640625 -1.453125 1.90625 -2.109375 C 1.953125 -2.25 2 -2.359375 2 -2.46875 C 2 -2.84375 1.6875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.734375 -2.59375 1.03125 -2.875 1.3125 -2.875 C 1.4375 -2.875 1.484375 -2.796875 1.484375 -2.640625 C 1.484375 -2.46875 1.4375 -2.328125 1.359375 -2.171875 C 1.0625 -1.390625 0.984375 -1.09375 0.984375 -0.84375 C 0.984375 -0.15625 1.53125 0.0625 2.0625 0.0625 C 3.234375 0.0625 3.71875 -1.953125 3.71875 -2.53125 Z M 3.71875 -2.53125 " + id="path19403" /> + </symbol> + </g> + </defs> + <g + id="textext-a424de31-4"> + <g + style="fill:rgb(0%,0%,0%);fill-opacity:1;" + id="g19406"> + <use + xlink:href="#textext-a424de31-1" + x="223.432" + y="134.765" + id="use19408" /> + </g> + <g + style="fill:rgb(0%,0%,0%);fill-opacity:1;" + id="g19410"> + <use + xlink:href="#textext-a424de31-3" + x="232.606" + y="131.15" + id="use19412" /> + </g> + </g> + </g> + <g + id="g20320" + style="fill:#800080;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-22.189379,1.3342707)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$L^v$"> + <defs + id="defs20322"> + <g + id="g20324"> + <symbol + id="textext-86e6737c-0" + overflow="visible"> + <path + id="path20327" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-86e6737c-1" + overflow="visible"> + <path + id="path20330" + d="M 3.734375 -6.03125 C 3.8125 -6.390625 3.84375 -6.5 4.78125 -6.5 C 5.078125 -6.5 5.15625 -6.5 5.15625 -6.6875 C 5.15625 -6.8125 5.046875 -6.8125 5 -6.8125 C 4.671875 -6.8125 3.859375 -6.78125 3.53125 -6.78125 C 3.234375 -6.78125 2.5 -6.8125 2.203125 -6.8125 C 2.140625 -6.8125 2.015625 -6.8125 2.015625 -6.609375 C 2.015625 -6.5 2.109375 -6.5 2.296875 -6.5 C 2.3125 -6.5 2.5 -6.5 2.671875 -6.484375 C 2.84375 -6.453125 2.9375 -6.453125 2.9375 -6.3125 C 2.9375 -6.28125 2.9375 -6.25 2.90625 -6.125 L 1.5625 -0.78125 C 1.46875 -0.390625 1.453125 -0.3125 0.65625 -0.3125 C 0.484375 -0.3125 0.390625 -0.3125 0.390625 -0.109375 C 0.390625 0 0.484375 0 0.65625 0 L 5.28125 0 C 5.515625 0 5.515625 0 5.578125 -0.171875 L 6.375 -2.328125 C 6.40625 -2.4375 6.40625 -2.453125 6.40625 -2.46875 C 6.40625 -2.5 6.375 -2.578125 6.296875 -2.578125 C 6.203125 -2.578125 6.1875 -2.515625 6.125 -2.359375 C 5.78125 -1.453125 5.34375 -0.3125 3.625 -0.3125 L 2.6875 -0.3125 C 2.546875 -0.3125 2.515625 -0.3125 2.46875 -0.3125 C 2.359375 -0.328125 2.328125 -0.34375 2.328125 -0.421875 C 2.328125 -0.453125 2.328125 -0.46875 2.375 -0.640625 Z M 3.734375 -6.03125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-86e6737c-2" + overflow="visible"> + <path + id="path20333" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-86e6737c-3" + overflow="visible"> + <path + id="path20336" + d="M 3.71875 -2.53125 C 3.71875 -3.078125 3.390625 -3.078125 3.375 -3.078125 C 3.1875 -3.078125 3 -2.890625 3 -2.703125 C 3 -2.59375 3.0625 -2.53125 3.109375 -2.5 C 3.234375 -2.390625 3.375 -2.21875 3.375 -1.9375 C 3.375 -1.625 2.90625 -0.125 2.078125 -0.125 C 1.515625 -0.125 1.515625 -0.625 1.515625 -0.75 C 1.515625 -1.0625 1.640625 -1.453125 1.90625 -2.109375 C 1.953125 -2.25 2 -2.359375 2 -2.46875 C 2 -2.84375 1.6875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.734375 -2.59375 1.03125 -2.875 1.3125 -2.875 C 1.4375 -2.875 1.484375 -2.796875 1.484375 -2.640625 C 1.484375 -2.46875 1.4375 -2.328125 1.359375 -2.171875 C 1.0625 -1.390625 0.984375 -1.09375 0.984375 -0.84375 C 0.984375 -0.15625 1.53125 0.0625 2.0625 0.0625 C 3.234375 0.0625 3.71875 -1.953125 3.71875 -2.53125 Z M 3.71875 -2.53125 " + style="stroke:none;" /> + </symbol> + </g> + </defs> + <g + id="textext-86e6737c-4"> + <g + id="g20339" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use20341" + y="134.765" + x="223.432" + xlink:href="#textext-86e6737c-1" /> + </g> + <g + id="g20343" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use20345" + y="131.15" + x="230.212" + xlink:href="#textext-86e6737c-3" /> + </g> + </g> + </g> + <g + ns0:text="$u_{\\sigma^v_3}$" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + transform="matrix(0.32729163,0,0,0.32729163,-51.718048,-2.2417296)" + style="fill:#0000ff;fill-opacity:1;stroke:#840073;stroke-opacity:1" + id="g21366"> + <defs + id="defs21368"> + <g + id="g21370"> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-0"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path21373" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-1"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="M 3.484375,-0.5625 C 3.59375,-0.15625 3.953125,0.109375 4.375,0.109375 4.71875,0.109375 4.953125,-0.125 5.109375,-0.4375 5.28125,-0.796875 5.40625,-1.40625 5.40625,-1.421875 c 0,-0.109375 -0.078125,-0.109375 -0.109375,-0.109375 -0.109375,0 -0.109375,0.046875 -0.140625,0.1875 -0.140625,0.5625 -0.328125,1.234375 -0.75,1.234375 -0.203125,0 -0.3125,-0.125 -0.3125,-0.453125 0,-0.21875 0.125,-0.6875 0.203125,-1.046875 L 4.578125,-2.6875 C 4.609375,-2.828125 4.703125,-3.203125 4.75,-3.359375 4.796875,-3.59375 4.890625,-3.96875 4.890625,-4.03125 c 0,-0.171875 -0.140625,-0.265625 -0.28125,-0.265625 -0.046875,0 -0.3125,0.015625 -0.390625,0.34375 -0.1875,0.734375 -0.625,2.484375 -0.75,3 -0.015625,0.046875 -0.40625,0.84375 -1.140625,0.84375 -0.515625,0 -0.609375,-0.453125 -0.609375,-0.8125 0,-0.5625 0.28125,-1.34375 0.53125,-2.03125 0.125,-0.3125 0.171875,-0.453125 0.171875,-0.640625 0,-0.4375 -0.3125,-0.8125 -0.8125,-0.8125 -0.953125,0 -1.3125,1.453125 -1.3125,1.53125 0,0.109375 0.09375,0.109375 0.109375,0.109375 0.109375,0 0.109375,-0.03125 0.15625,-0.1875 0.25,-0.859375 0.640625,-1.234375 1.015625,-1.234375 0.09375,0 0.25,0.015625 0.25,0.328125 0,0.234375 -0.109375,0.53125 -0.171875,0.671875 -0.375,1 -0.578125,1.609375 -0.578125,2.09375 0,0.953125 0.6875,1.203125 1.21875,1.203125 0.65625,0 1.015625,-0.453125 1.1875,-0.671875 z m 0,0" + id="path21376" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-2"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path21379" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-3"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 4.078125,-2.53125 c 0.109375,0 0.1875,0 0.25,-0.046875 0.09375,-0.078125 0.125,-0.1875 0.125,-0.234375 C 4.453125,-3 4.265625,-3 4.140625,-3 l -1.78125,0 C 1.25,-3 0.40625,-1.90625 0.40625,-1.0625 c 0,0.640625 0.484375,1.125 1.203125,1.125 0.875,0 1.875,-0.78125 1.875,-1.859375 0,-0.109375 0,-0.421875 -0.203125,-0.734375 z M 1.609375,-0.125 c -0.375,0 -0.6875,-0.25 -0.6875,-0.75 0,-0.203125 0.125,-1.65625 1.328125,-1.65625 0.34375,0 0.71875,0.140625 0.71875,0.65625 0,0.140625 -0.0625,0.765625 -0.40625,1.234375 C 2.265625,-0.265625 1.875,-0.125 1.609375,-0.125 Z m 0,0" + id="path21382" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-4"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path21385" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-5"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 3.1875,-1.78125 c 0,-0.328125 -0.171875,-0.421875 -0.28125,-0.421875 -0.140625,0 -0.296875,0.15625 -0.296875,0.28125 0,0.09375 0.078125,0.140625 0.109375,0.171875 0.046875,0.046875 0.1875,0.15625 0.1875,0.375 0,0.28125 -0.375,1.265625 -0.96875,1.265625 -0.265625,0 -0.484375,-0.109375 -0.484375,-0.46875 0,-0.25 0.125,-0.578125 0.28125,-0.9375 0.03125,-0.078125 0.0625,-0.171875 0.0625,-0.25 0,-0.25 -0.234375,-0.4375 -0.546875,-0.4375 -0.515625,0 -0.796875,0.640625 -0.796875,0.765625 0,0.078125 0.078125,0.078125 0.109375,0.078125 0.078125,0 0.078125,-0.03125 0.109375,-0.09375 C 0.765625,-1.796875 1,-2.03125 1.234375,-2.03125 c 0.09375,0 0.15625,0.046875 0.15625,0.1875 0,0.09375 -0.03125,0.15625 -0.09375,0.296875 -0.1875,0.484375 -0.265625,0.71875 -0.265625,0.90625 0,0.484375 0.390625,0.703125 0.875,0.703125 0.40625,0 0.703125,-0.296875 0.875,-0.578125 C 3.140625,-1.046875 3.1875,-1.6875 3.1875,-1.78125 Z m 0,0" + id="path21388" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-6"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="" + id="path21391" /> + </symbol> + <symbol + style="overflow:visible" + overflow="visible" + id="textext-bd0a76ae-7"> + <path + inkscape:connector-curvature="0" + style="stroke:none" + d="m 1.640625,-1.65625 c 0.46875,0 0.765625,0.296875 0.765625,0.78125 0,0.515625 -0.3125,0.78125 -0.75,0.78125 -0.0625,0 -0.65625,0 -0.90625,-0.265625 0.203125,-0.03125 0.265625,-0.171875 0.265625,-0.296875 0,-0.1875 -0.140625,-0.3125 -0.3125,-0.3125 -0.15625,0 -0.296875,0.109375 -0.296875,0.328125 0,0.515625 0.578125,0.75 1.265625,0.75 0.8125,0 1.3125,-0.5 1.3125,-0.984375 0,-0.40625 -0.359375,-0.75 -0.921875,-0.875 0.59375,-0.203125 0.75,-0.578125 0.75,-0.859375 0,-0.40625 -0.5,-0.703125 -1.125,-0.703125 -0.625,0 -1.109375,0.25 -1.109375,0.703125 0,0.234375 0.1875,0.296875 0.28125,0.296875 0.140625,0 0.28125,-0.109375 0.28125,-0.296875 0,-0.109375 -0.0625,-0.25 -0.234375,-0.28125 C 1.109375,-3.109375 1.5625,-3.125 1.671875,-3.125 c 0.359375,0 0.609375,0.171875 0.609375,0.515625 0,0.296875 -0.1875,0.75 -0.703125,0.78125 -0.140625,0 -0.15625,0 -0.296875,0.015625 -0.046875,0 -0.109375,0 -0.109375,0.078125 0,0.078125 0.046875,0.078125 0.140625,0.078125 z m 0,0" + id="path21394" /> + </symbol> + </g> + </defs> + <g + style="fill:#0000ff" + id="textext-bd0a76ae-8"> + <g + style="fill:#0000ff;fill-opacity:1" + id="g21397"> + <use + style="fill:#0000ff" + height="100%" + width="100%" + xlink:href="#textext-bd0a76ae-1" + x="223.43201" + y="134.765" + id="use21399" /> + </g> + <g + style="fill:#0000ff;fill-opacity:1" + id="g21401"> + <use + style="fill:#0000ff" + height="100%" + width="100%" + xlink:href="#textext-bd0a76ae-3" + x="229.13499" + y="136.259" + id="use21403" /> + </g> + <g + style="fill:#0000ff;fill-opacity:1" + id="g21405"> + <use + style="fill:#0000ff" + height="100%" + width="100%" + xlink:href="#textext-bd0a76ae-5" + x="234.002" + y="133.85699" + id="use21407" /> + </g> + <g + style="fill:#0000ff;fill-opacity:1" + id="g21409"> + <use + style="fill:#0000ff" + height="100%" + width="100%" + xlink:href="#textext-bd0a76ae-7" + x="233.752" + y="138.422" + id="use21411" /> + </g> + </g> + </g> + <g + id="g22477" + style="fill:#0000ff;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-23.455017,17.082768)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$u_{\\sigma^v_1}$"> + <defs + id="defs22479"> + <g + id="g22481"> + <symbol + id="textext-c80c61a3-0" + overflow="visible"> + <path + id="path22484" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-1" + overflow="visible"> + <path + id="path22487" + d="M 3.484375 -0.5625 C 3.59375 -0.15625 3.953125 0.109375 4.375 0.109375 C 4.71875 0.109375 4.953125 -0.125 5.109375 -0.4375 C 5.28125 -0.796875 5.40625 -1.40625 5.40625 -1.421875 C 5.40625 -1.53125 5.328125 -1.53125 5.296875 -1.53125 C 5.1875 -1.53125 5.1875 -1.484375 5.15625 -1.34375 C 5.015625 -0.78125 4.828125 -0.109375 4.40625 -0.109375 C 4.203125 -0.109375 4.09375 -0.234375 4.09375 -0.5625 C 4.09375 -0.78125 4.21875 -1.25 4.296875 -1.609375 L 4.578125 -2.6875 C 4.609375 -2.828125 4.703125 -3.203125 4.75 -3.359375 C 4.796875 -3.59375 4.890625 -3.96875 4.890625 -4.03125 C 4.890625 -4.203125 4.75 -4.296875 4.609375 -4.296875 C 4.5625 -4.296875 4.296875 -4.28125 4.21875 -3.953125 C 4.03125 -3.21875 3.59375 -1.46875 3.46875 -0.953125 C 3.453125 -0.90625 3.0625 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.71875 -0.5625 1.71875 -0.921875 C 1.71875 -1.484375 2 -2.265625 2.25 -2.953125 C 2.375 -3.265625 2.421875 -3.40625 2.421875 -3.59375 C 2.421875 -4.03125 2.109375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.296875 -2.953125 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.796875 0.5625 -2.953125 C 0.8125 -3.8125 1.203125 -4.1875 1.578125 -4.1875 C 1.671875 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.625 1.71875 -3.328125 1.65625 -3.1875 C 1.28125 -2.1875 1.078125 -1.578125 1.078125 -1.09375 C 1.078125 -0.140625 1.765625 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.3125 -0.34375 3.484375 -0.5625 Z M 3.484375 -0.5625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-2" + overflow="visible"> + <path + id="path22490" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-3" + overflow="visible"> + <path + id="path22493" + d="M 4.078125 -2.53125 C 4.1875 -2.53125 4.265625 -2.53125 4.328125 -2.578125 C 4.421875 -2.65625 4.453125 -2.765625 4.453125 -2.8125 C 4.453125 -3 4.265625 -3 4.140625 -3 L 2.359375 -3 C 1.25 -3 0.40625 -1.90625 0.40625 -1.0625 C 0.40625 -0.421875 0.890625 0.0625 1.609375 0.0625 C 2.484375 0.0625 3.484375 -0.71875 3.484375 -1.796875 C 3.484375 -1.90625 3.484375 -2.21875 3.28125 -2.53125 Z M 1.609375 -0.125 C 1.234375 -0.125 0.921875 -0.375 0.921875 -0.875 C 0.921875 -1.078125 1.046875 -2.53125 2.25 -2.53125 C 2.59375 -2.53125 2.96875 -2.390625 2.96875 -1.875 C 2.96875 -1.734375 2.90625 -1.109375 2.5625 -0.640625 C 2.265625 -0.265625 1.875 -0.125 1.609375 -0.125 Z M 1.609375 -0.125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-4" + overflow="visible"> + <path + id="path22496" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-5" + overflow="visible"> + <path + id="path22499" + d="M 3.1875 -1.78125 C 3.1875 -2.109375 3.015625 -2.203125 2.90625 -2.203125 C 2.765625 -2.203125 2.609375 -2.046875 2.609375 -1.921875 C 2.609375 -1.828125 2.6875 -1.78125 2.71875 -1.75 C 2.765625 -1.703125 2.90625 -1.59375 2.90625 -1.375 C 2.90625 -1.09375 2.53125 -0.109375 1.9375 -0.109375 C 1.671875 -0.109375 1.453125 -0.21875 1.453125 -0.578125 C 1.453125 -0.828125 1.578125 -1.15625 1.734375 -1.515625 C 1.765625 -1.59375 1.796875 -1.6875 1.796875 -1.765625 C 1.796875 -2.015625 1.5625 -2.203125 1.25 -2.203125 C 0.734375 -2.203125 0.453125 -1.5625 0.453125 -1.4375 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.640625 -1.390625 0.671875 -1.453125 C 0.765625 -1.796875 1 -2.03125 1.234375 -2.03125 C 1.328125 -2.03125 1.390625 -1.984375 1.390625 -1.84375 C 1.390625 -1.75 1.359375 -1.6875 1.296875 -1.546875 C 1.109375 -1.0625 1.03125 -0.828125 1.03125 -0.640625 C 1.03125 -0.15625 1.421875 0.0625 1.90625 0.0625 C 2.3125 0.0625 2.609375 -0.234375 2.78125 -0.515625 C 3.140625 -1.046875 3.1875 -1.6875 3.1875 -1.78125 Z M 3.1875 -1.78125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-6" + overflow="visible"> + <path + id="path22502" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-c80c61a3-7" + overflow="visible"> + <path + id="path22505" + d="M 1.984375 -3.171875 C 1.984375 -3.3125 1.96875 -3.3125 1.796875 -3.3125 C 1.453125 -3 0.890625 -3 0.796875 -3 L 0.71875 -3 L 0.71875 -2.78125 L 0.796875 -2.78125 C 0.90625 -2.78125 1.234375 -2.796875 1.53125 -2.921875 L 1.53125 -0.421875 C 1.53125 -0.28125 1.53125 -0.21875 1 -0.21875 L 0.75 -0.21875 L 0.75 0 C 1.015625 -0.015625 1.46875 -0.015625 1.75 -0.015625 C 2.046875 -0.015625 2.484375 -0.015625 2.765625 0 L 2.765625 -0.21875 L 2.515625 -0.21875 C 1.984375 -0.21875 1.984375 -0.28125 1.984375 -0.421875 Z M 1.984375 -3.171875 " + style="stroke:none;" /> + </symbol> + </g> + </defs> + <g + id="textext-c80c61a3-8" + style="fill:#0000ff"> + <g + id="g22508" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use22510" + y="134.765" + x="223.432" + xlink:href="#textext-c80c61a3-1" + style="fill:#0000ff" /> + </g> + <g + id="g22512" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use22514" + y="136.259" + x="229.135" + xlink:href="#textext-c80c61a3-3" + style="fill:#0000ff" /> + </g> + <g + id="g22516" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use22518" + y="133.857" + x="234.002" + xlink:href="#textext-c80c61a3-5" + style="fill:#0000ff" /> + </g> + <g + id="g22520" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use22522" + y="138.422" + x="233.752" + xlink:href="#textext-c80c61a3-7" + style="fill:#0000ff" /> + </g> + </g> + </g> + <g + id="g24717" + style="fill:#0000ff;fill-opacity:1;stroke:#840073;stroke-opacity:1" + transform="matrix(0.32729163,0,0,0.32729163,-25.311173,-14.807525)" + ns0:preamble="/temp/martins/GIT_Paper/SchneiderPromo/pics/k3/preamble.txt" + ns0:text="$u_{\\sigma^v_2}$"> + <defs + id="defs24719"> + <g + id="g24721"> + <symbol + id="textext-9bb8b9da-0" + overflow="visible"> + <path + id="path24724" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-1" + overflow="visible"> + <path + id="path24727" + d="M 3.484375 -0.5625 C 3.59375 -0.15625 3.953125 0.109375 4.375 0.109375 C 4.71875 0.109375 4.953125 -0.125 5.109375 -0.4375 C 5.28125 -0.796875 5.40625 -1.40625 5.40625 -1.421875 C 5.40625 -1.53125 5.328125 -1.53125 5.296875 -1.53125 C 5.1875 -1.53125 5.1875 -1.484375 5.15625 -1.34375 C 5.015625 -0.78125 4.828125 -0.109375 4.40625 -0.109375 C 4.203125 -0.109375 4.09375 -0.234375 4.09375 -0.5625 C 4.09375 -0.78125 4.21875 -1.25 4.296875 -1.609375 L 4.578125 -2.6875 C 4.609375 -2.828125 4.703125 -3.203125 4.75 -3.359375 C 4.796875 -3.59375 4.890625 -3.96875 4.890625 -4.03125 C 4.890625 -4.203125 4.75 -4.296875 4.609375 -4.296875 C 4.5625 -4.296875 4.296875 -4.28125 4.21875 -3.953125 C 4.03125 -3.21875 3.59375 -1.46875 3.46875 -0.953125 C 3.453125 -0.90625 3.0625 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.71875 -0.5625 1.71875 -0.921875 C 1.71875 -1.484375 2 -2.265625 2.25 -2.953125 C 2.375 -3.265625 2.421875 -3.40625 2.421875 -3.59375 C 2.421875 -4.03125 2.109375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.296875 -2.953125 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.796875 0.5625 -2.953125 C 0.8125 -3.8125 1.203125 -4.1875 1.578125 -4.1875 C 1.671875 -4.1875 1.828125 -4.171875 1.828125 -3.859375 C 1.828125 -3.625 1.71875 -3.328125 1.65625 -3.1875 C 1.28125 -2.1875 1.078125 -1.578125 1.078125 -1.09375 C 1.078125 -0.140625 1.765625 0.109375 2.296875 0.109375 C 2.953125 0.109375 3.3125 -0.34375 3.484375 -0.5625 Z M 3.484375 -0.5625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-2" + overflow="visible"> + <path + id="path24730" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-3" + overflow="visible"> + <path + id="path24733" + d="M 4.078125 -2.53125 C 4.1875 -2.53125 4.265625 -2.53125 4.328125 -2.578125 C 4.421875 -2.65625 4.453125 -2.765625 4.453125 -2.8125 C 4.453125 -3 4.265625 -3 4.140625 -3 L 2.359375 -3 C 1.25 -3 0.40625 -1.90625 0.40625 -1.0625 C 0.40625 -0.421875 0.890625 0.0625 1.609375 0.0625 C 2.484375 0.0625 3.484375 -0.71875 3.484375 -1.796875 C 3.484375 -1.90625 3.484375 -2.21875 3.28125 -2.53125 Z M 1.609375 -0.125 C 1.234375 -0.125 0.921875 -0.375 0.921875 -0.875 C 0.921875 -1.078125 1.046875 -2.53125 2.25 -2.53125 C 2.59375 -2.53125 2.96875 -2.390625 2.96875 -1.875 C 2.96875 -1.734375 2.90625 -1.109375 2.5625 -0.640625 C 2.265625 -0.265625 1.875 -0.125 1.609375 -0.125 Z M 1.609375 -0.125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-4" + overflow="visible"> + <path + id="path24736" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-5" + overflow="visible"> + <path + id="path24739" + d="M 3.1875 -1.78125 C 3.1875 -2.109375 3.015625 -2.203125 2.90625 -2.203125 C 2.765625 -2.203125 2.609375 -2.046875 2.609375 -1.921875 C 2.609375 -1.828125 2.6875 -1.78125 2.71875 -1.75 C 2.765625 -1.703125 2.90625 -1.59375 2.90625 -1.375 C 2.90625 -1.09375 2.53125 -0.109375 1.9375 -0.109375 C 1.671875 -0.109375 1.453125 -0.21875 1.453125 -0.578125 C 1.453125 -0.828125 1.578125 -1.15625 1.734375 -1.515625 C 1.765625 -1.59375 1.796875 -1.6875 1.796875 -1.765625 C 1.796875 -2.015625 1.5625 -2.203125 1.25 -2.203125 C 0.734375 -2.203125 0.453125 -1.5625 0.453125 -1.4375 C 0.453125 -1.359375 0.53125 -1.359375 0.5625 -1.359375 C 0.640625 -1.359375 0.640625 -1.390625 0.671875 -1.453125 C 0.765625 -1.796875 1 -2.03125 1.234375 -2.03125 C 1.328125 -2.03125 1.390625 -1.984375 1.390625 -1.84375 C 1.390625 -1.75 1.359375 -1.6875 1.296875 -1.546875 C 1.109375 -1.0625 1.03125 -0.828125 1.03125 -0.640625 C 1.03125 -0.15625 1.421875 0.0625 1.90625 0.0625 C 2.3125 0.0625 2.609375 -0.234375 2.78125 -0.515625 C 3.140625 -1.046875 3.1875 -1.6875 3.1875 -1.78125 Z M 3.1875 -1.78125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-6" + overflow="visible"> + <path + id="path24742" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-9bb8b9da-7" + overflow="visible"> + <path + id="path24745" + d="M 2.9375 -0.96875 L 2.71875 -0.96875 C 2.71875 -0.875 2.65625 -0.5625 2.578125 -0.515625 C 2.546875 -0.484375 2.125 -0.484375 2.046875 -0.484375 L 1.078125 -0.484375 C 1.40625 -0.71875 1.765625 -1 2.0625 -1.203125 C 2.515625 -1.515625 2.9375 -1.796875 2.9375 -2.328125 C 2.9375 -2.96875 2.328125 -3.3125 1.625 -3.3125 C 0.953125 -3.3125 0.453125 -2.9375 0.453125 -2.4375 C 0.453125 -2.1875 0.671875 -2.140625 0.75 -2.140625 C 0.875 -2.140625 1.03125 -2.234375 1.03125 -2.4375 C 1.03125 -2.609375 0.90625 -2.71875 0.75 -2.71875 C 0.890625 -2.953125 1.1875 -3.09375 1.515625 -3.09375 C 2 -3.09375 2.40625 -2.8125 2.40625 -2.328125 C 2.40625 -1.90625 2.109375 -1.578125 1.734375 -1.265625 L 0.515625 -0.234375 C 0.46875 -0.1875 0.453125 -0.1875 0.453125 -0.15625 L 0.453125 0 L 2.765625 0 Z M 2.9375 -0.96875 " + style="stroke:none;" /> + </symbol> + </g> + </defs> + <g + id="textext-9bb8b9da-8" + style="fill:#0000ff"> + <g + id="g24748" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use24750" + y="134.765" + x="223.432" + xlink:href="#textext-9bb8b9da-1" + style="fill:#0000ff" /> + </g> + <g + id="g24752" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use24754" + y="136.259" + x="229.135" + xlink:href="#textext-9bb8b9da-3" + style="fill:#0000ff" /> + </g> + <g + id="g24756" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use24758" + y="133.857" + x="234.002" + xlink:href="#textext-9bb8b9da-5" + style="fill:#0000ff" /> + </g> + <g + id="g24760" + style="fill:#0000ff;fill-opacity:1"> + <use + id="use24762" + y="138.422" + x="233.752" + xlink:href="#textext-9bb8b9da-7" + style="fill:#0000ff" /> + </g> + </g> + </g> +</svg> diff --git a/doc/handbook/svg/staggered_grid.svg b/doc/handbook/svg/staggered_grid.svg new file mode 100644 index 0000000000000000000000000000000000000000..fce64bce78441c35e199bd708ad4fb3d8b6d9f40 --- /dev/null +++ b/doc/handbook/svg/staggered_grid.svg @@ -0,0 +1,4525 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<!-- Created with Inkscape (http://www.inkscape.org/) --> + +<svg + xmlns:ns0="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:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + width="210mm" + height="297mm" + viewBox="0 0 744.09448819 1052.3622047" + id="svg2" + version="1.1" + inkscape:version="0.91 r13725" + sodipodi:docname="staggered_grid.svg" + inkscape:export-filename="/home/student/2013/kweis/Promotion/StaggeredGrid/Assembly/u_up_tangential_right" + inkscape:export-xdpi="500" + inkscape:export-ydpi="500"> + <sodipodi:namedview + id="base" + pagecolor="#ffffff" + bordercolor="#666666" + borderopacity="1.0" + inkscape:pageopacity="0.0" + inkscape:pageshadow="2" + inkscape:zoom="1.0000001" + inkscape:cx="284.19901" + inkscape:cy="20.689623" + inkscape:document-units="px" + inkscape:current-layer="g10677" + showgrid="true" + inkscape:window-width="1920" + inkscape:window-height="1021" + inkscape:window-x="0" + inkscape:window-y="0" + inkscape:window-maximized="1" + showguides="false"> + <inkscape:grid + id="grid10657" + type="xygrid" /> + </sodipodi:namedview> + <defs + id="defs4"> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker9575" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9577" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker8773" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path8775" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7905" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path7907" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker7115" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path7117" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6373" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path6375" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6515" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path6517" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker5815" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path5817" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker15208" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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="path15210" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6111" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path6113" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker5348" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path5350" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker19866" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path19868" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker19496" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path19498" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker18784" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path18786" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="marker14152" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path14154" + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + transform="scale(0.6) rotate(180) translate(0,0)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible;" + id="marker12488" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(0.6) rotate(180) translate(0,0)" + d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z " + style="fill-rule:evenodd;stroke-width:0.625;stroke-linejoin:round;stroke:#000000;stroke-opacity:1;fill:#000000;fill-opacity:1" + id="path12490" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker16307" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4)" + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + id="path16309" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker15997" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4)" + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + id="path15999" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker15365" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path15367" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker15073" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path15075" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker14787" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14789" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker14507" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14509" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker14233" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14235" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1;fill:#0000ff;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker13691" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4)" + style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + id="path13693" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker13435" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4)" + style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + id="path13437" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker13185" + refX="0.0" + refY="0.0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4)" + style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + id="path13187" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker12691" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path12693" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0.0" + refX="0.0" + id="marker12459" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path12461" + d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z " + style="fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1;fill:#008000;fill-opacity:1" + transform="scale(0.4)" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect5336" + effect="spiro" /> + <inkscape:path-effect + is_visible="true" + id="path-effect35183" + effect="spiro" /> + <marker + inkscape:stockid="Arrow1Mend" + orient="auto" + refY="0.0" + refX="0.0" + id="Arrow1Mend" + style="overflow:visible;" + inkscape:isstock="true"> + <path + id="path9523" + d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z " + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1;fill:#000000;fill-opacity:1" + transform="scale(0.4) rotate(180) translate(10,0)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-8" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-4" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-7" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-6" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-2" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-8-8" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-4-1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-7-3" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-0-4" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-6-0" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-2-3" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9-1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0-9" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-8-8-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-4-1-9" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-7-3-3" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-3" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-80" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-5" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-6" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-4" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-8-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-4-0" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-7-4" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-0-4-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-6-0-1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-2-3-0" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9-9-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9-1-1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0-9-6" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9-1" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9-5" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0-0" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9-4" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0-01" + is_visible="true" /> + <marker + inkscape:stockid="TriangleOutM" + orient="auto" + refY="0" + refX="0" + id="TriangleOutM-5-9-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + inkscape:connector-curvature="0" + id="path9659-8-9-41" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + transform="scale(0.4,0.4)" /> + </marker> + <inkscape:path-effect + effect="spiro" + id="path-effect9508-6-0-1" + is_visible="true" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-6-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-6-9" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-4-2" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-9-9-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-9-1-7" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-0-9-8" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-9-0-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-9-4-5" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-0-01-6" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-9-1-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-9-5-3" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-0-0-7" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-9-9-7-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-9-1-1-5" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-0-9-6-2" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-0-4-9-5" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-6-0-1-4" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-2-3-0-7" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-8-8-6-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-4-1-9-4" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-7-3-3-3" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-0-4-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-6-0-8" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-2-3-8" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-8-0-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-4-0-3" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-7-4-1" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-3-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#008000;fill-opacity:1;fill-rule:evenodd;stroke:#008000;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-80-6" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-5-8" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-8-8-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-4-1-2" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-7-3-6" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-9-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-9-49" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-0-5" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-0-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-6-4" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-2-8" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-8-7" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-4-17" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-7-2" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-5-7" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-8-2" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-6-2" + effect="spiro" /> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="TriangleOutM-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="TriangleOutM"> + <path + transform="scale(0.4,0.4)" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1pt;stroke-opacity:1" + d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" + id="path9659-1" + inkscape:connector-curvature="0" /> + </marker> + <inkscape:path-effect + is_visible="true" + id="path-effect9508-0" + effect="spiro" /> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path12490-5" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker20282" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path20284" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker20292" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path20294" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-7-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5-1" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-0-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-0-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="scale(-0.6,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path12490-5-0" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-5-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="scale(-0.6,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker21039" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path21041" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker21049" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path21051" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-7-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-0-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-0-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path12490-5-8" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6-93" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-5-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker21039-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path21041-8" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker21049-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path21051-9" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4-7-1" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-7-7-8" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker15736-8-1-5" + style="overflow:visible" + inkscape:isstock="true" + inkscape:collect="always"> + <path + id="path15738-4-1-9" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5-5-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-0-9-5" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker16246-3-7-3" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path16248-6-7-8" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker17808-1-6-8" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path17810-0-7-3" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker16970-6-3-1" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path16972-3-6-8" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2-5-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-0-6-6" + style="fill:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker14956-6-3-4" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path14958-1-9-3" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5-4-3" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend" + inkscape:collect="always"> + <path + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path12490-5-8-3" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker11918-4-1-8" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path11920-7-2-6" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6-93-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-5-9-4" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker22952" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path22954" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker13290-6-8-8" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path13292-9-5-8" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker22962" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path22964" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker11444-3-6-8" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path11446-7-3-9" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="Arrow2Mend-4-8-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path9541-5-5-7" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4-7-0" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-7-7-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5-5-5" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-0-9-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="scale(-0.6,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2-5-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-0-6-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5-4-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path12490-5-8-2" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6-93-2" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-5-9-40" + 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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker22952-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path22954-2" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker22962-0" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path22964-8" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6111-6" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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="path6113-7" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6111-3" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#0000ff;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path6113-5" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker6111-6-2" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + inkscape:connector-curvature="0" + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path6113-7-9" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-2" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-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="scale(-0.6,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-9" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-66" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-98" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-81" + style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:collect="always" + inkscape:isstock="true" + style="overflow:visible" + id="marker13290-68" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1" + id="path13292-0" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-66-3" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-6-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19866-4-0-7" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19868-7-6-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker18784-5-1-3" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path18786-0-5-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker19496-2-9-6" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path19498-0-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="scale(-0.6,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker12488-5-9-9" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path12490-5-0-1" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:stockid="Arrow2Mend" + orient="auto" + refY="0" + refX="0" + id="marker14152-6-9-2" + style="overflow:visible" + inkscape:isstock="true"> + <path + id="path14154-5-1-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,-0.6)" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4472" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path4474" + inkscape:connector-curvature="0" /> + </marker> + <marker + inkscape:isstock="true" + style="overflow:visible" + id="marker4482" + refX="0" + refY="0" + orient="auto" + inkscape:stockid="Arrow2Mend"> + <path + transform="scale(-0.6,-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="path4484" + inkscape:connector-curvature="0" /> + </marker> + </defs> + <metadata + id="metadata7"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <dc:title /> + </cc:Work> + </rdf:RDF> + </metadata> + <g + inkscape:label="Layer 1" + inkscape:groupmode="layer" + id="layer1"> + <g + transform="matrix(3.9185418,0,0,3.9185418,-810.14094,-2926.6135)" + id="g7498"> + <g + id="g10677"> + <rect + style="fill:#000000;fill-opacity:0.42857146;stroke:none;stroke-width:0.51039392;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.33862436" + id="rect10581-6" + width="45.169865" + height="30.623636" + x="294.78845" + y="944.73297" /> + <rect + style="fill:#ff0000;fill-opacity:0.42857143;stroke:none;stroke-width:0.51039392;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.33862433" + id="rect10581" + width="51.039394" + height="30.623636" + x="313.41782" + y="944.73297" /> + <rect + style="fill:#0000ff;fill-opacity:0.42857143;stroke:none;stroke-width:0.51039392;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.33862436" + id="rect10581-3" + width="45.68026" + height="20.160561" + x="294.27805" + y="934.01465" /> + <g + style="stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none" + transform="translate(-168.43013,204.66791)" + id="g10899"> + <path + inkscape:connector-curvature="0" + id="path10659-2" + d="m 441.52673,719.39406 0,71.24813" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path10663-6" + d="m 441.52673,750.01769 122.54584,0" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path10665-1" + d="m 441.52673,790.84921 122.54584,0" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path10671-8" + d="m 533.44894,719.39406 0,71.45515" + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 482.35824,719.39406 0,71.45515" + id="path10691-7" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 564.02127,719.39406 0,71.45515" + id="path10697-9" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 441.52673,729.60193 122.49454,0" + id="path10699-2" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1.02078784;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 564.02127,719.39406 -122.49454,0" + id="path10701-0" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none" + transform="translate(-169.45091,128.61922)" + id="g10888"> + <path + inkscape:connector-curvature="0" + id="path10659-3-2" + d="m 441.65433,795.95312 0,71.2482" + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + inkscape:connector-curvature="0" + id="path10665-6-3" + d="m 441.65433,867.40832 122.54584,0" + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + inkscape:connector-curvature="0" + id="path10671-7-7" + d="m 533.57654,795.95312 0,71.4552" + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 482.48584,795.95312 0,71.4552" + id="path10691-5-5" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 564.14887,795.95312 0,71.4552" + id="path10697-3-9" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 564.14887,795.95312 -122.49454,0" + id="path10701-5-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 441.65433,801.05712 122.49454,0" + id="path10703-6-2" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 441.65433,816.36892 122.49454,0" + id="path10705-2-8" + inkscape:connector-curvature="0" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 441.65433,846.99262 122.49454,0" + id="path10707-9-9" + inkscape:connector-curvature="0" /> + </g> + <g + style="stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none" + transform="translate(-167.40934,52.060178)" + id="g10877"> + <path + inkscape:connector-curvature="0" + id="path10659-1-7" + d="m 441.65433,871.36392 0,71.2481" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + inkscape:connector-curvature="0" + id="path10663-2-3" + d="m 441.65433,901.98752 122.54584,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + inkscape:connector-curvature="0" + id="path10665-7-6" + d="m 441.65433,942.81902 122.54584,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 462.07009,871.36392 0,71.4551" + id="path10689-0-1" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 508.00554,871.36392 0,71.4551" + id="path10693-9-2" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 548.83705,871.36392 0,71.4551" + id="path10695-3-9" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 564.14887,871.36392 0,71.4551" + id="path10697-6-3" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 441.65433,881.57182 122.49454,0" + id="path10699-0-1" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.51039394;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2.04157577,0.51039394;stroke-opacity:1;stroke-dashoffset:0" + d="m 564.14887,871.36392 -122.49454,0" + id="path10701-6-9" + inkscape:connector-curvature="0" /> + </g> + <rect + y="928.14526" + x="293.51294" + height="2.5519698" + width="2.5519698" + id="rect10934-6-6-6" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect10936-8-1-4" + width="2.5519698" + height="2.5519698" + x="293.51294" + y="942.94617" /> + <rect + y="973.56873" + x="293.51294" + height="2.5519698" + width="2.5519698" + id="rect10938-8-1-3" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect10942-4-5-0" + width="2.5519698" + height="2.5519698" + x="338.93915" + y="928.14526" /> + <rect + y="942.94617" + x="338.93915" + height="2.5519698" + width="2.5519698" + id="rect10944-3-9-3" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect10946-1-8-0" + width="2.5519698" + height="2.5519698" + x="338.93915" + y="973.56873" /> + <rect + y="928.14526" + x="380.28207" + height="2.5519698" + width="2.5519698" + id="rect10948-4-4-9" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect10950-9-8-2" + width="2.5519698" + height="2.5519698" + x="380.28207" + y="942.94617" /> + <rect + y="973.56873" + x="380.28207" + height="2.5519698" + width="2.5519698" + id="rect10952-2-1-5" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path10954-0-0-4" + d="m 294.55275,926.62608 0,-6.27892" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend-4-8-7)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11444-3-6-8)" + d="m 294.55275,937.34427 0,-6.27892" + id="path11442-6-3-0" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path11916-8-0-5" + d="m 294.55275,956.7391 0,-6.27892" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6111)" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker12488-5-4-3);fill-opacity:1" + d="m 294.55275,997.57029 0,-6.27892" + id="path12486-9-4-9" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13290-6-8-8)" + d="m 340.48786,926.62608 0,-6.27892" + id="path13284-2-4-4" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker11918-4-1-8)" + d="m 340.48786,956.7391 0,-6.27892" + id="path13286-6-4-6" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path13288-6-4-9" + d="m 340.48786,997.57029 0,-6.27892" + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker9575);fill-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path14146-4-7-2" + d="m 381.31906,926.62608 0,-6.27892" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14152-6-93-0)" /> + <path + inkscape:connector-curvature="0" + id="path14148-9-6-2" + d="m 381.31906,956.7391 0,-6.27892" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6515)" /> + <path + style="fill:#ff0000;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker8773);fill-opacity:1" + d="m 381.31906,997.57029 0,-6.27892" + id="path14150-5-3-4" + inkscape:connector-curvature="0" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14956-6-3-4)" + d="m 272.93663,929.01386 6.27892,0" + id="path14954-0-1-7" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path15734-4-7-7" + d="m 272.93663,944.32556 6.27892,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker15736-8-1-5)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker19496-2-5-9)" + d="m 272.93663,974.94896 6.27892,0" + id="path16244-8-5-5" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path16964-7-9-4" + d="m 313.76783,929.01386 6.27892,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker16970-6-3-1)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7905)" + d="m 313.76783,944.32556 6.27892,0" + id="path16966-1-6-8" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path16968-7-2-1" + d="m 313.76783,974.94896 6.27892,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker16246-3-7-3)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker17808-1-6-8)" + d="m 365.31723,929.01386 6.27892,0" + id="path17802-2-1-2" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path17804-7-7-8" + d="m 365.31723,944.32556 6.27892,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7115)" /> + <path + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker5815)" + d="m 365.31723,974.94896 6.27892,0" + id="path17806-2-8-9" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path18778-2-5-3" + d="m 395.43024,929.01386 6.27892,0" + style="fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker18784-5-5-7);fill-opacity:1" /> + <path + style="fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6373);fill-opacity:1" + d="m 395.43024,944.32556 6.27892,0" + id="path18780-6-7-6" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path18782-1-4-8" + d="m 395.43024,974.94896 6.27892,0" + style="fill:#0000ff;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker19866-4-7-1);fill-opacity:1" /> + <rect + y="1031.8445" + x="239.09145" + height="6.475131" + width="6.475131" + id="rect5327" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.48563483;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + style="fill:none;fill-opacity:1;stroke:#ff0000;stroke-width:0.48563483;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="rect5338" + width="6.475131" + height="6.475131" + x="239.47153" + y="1066.6204" /> + <rect + y="1049.5996" + x="239.38828" + height="6.475131" + width="6.475131" + id="rect5340" + style="fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.48563483;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <rect + y="1005.1456" + x="241.18208" + height="3.3146501" + width="3.3146501" + id="rect10938-3" + style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.02078784;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path11916-8-0-5-6" + d="m 237.99117,1015.8881 8.15541,0" + style="fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.03985405;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6111-3)" /> + <path + inkscape:connector-curvature="0" + id="path11916-8-0-5-5" + d="m 242.86489,1030.3544 0,-8.1556" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.03985405;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker6111-6-2)" /> + <text + sodipodi:linespacing="1000%" + id="text10697" + y="1005.2147" + x="252.68097" + style="font-style:normal;font-weight:normal;font-size:5.74193192px;line-height:1000%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + xml:space="preserve"><tspan + y="1005.2147" + x="252.68097" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:1000%;font-family:sans-serif;-inkscape-font-specification:sans-serif" + id="tspan10703" + sodipodi:role="line" /></text> + <path + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker13290-68)" + d="m 340.45779,937.34435 0,-6.27892" + id="path13284-48" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path14146-44" + d="m 381.28899,937.34435 0,-6.27892" + style="fill:none;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.8005901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker14152-98)" /> + <g + id="g5968" + transform="matrix(0.74337807,0,0,0.74337807,83.421211,909.71225)" + ns0:preamble="/temp/melaniel/software/daily_work/presentations/Inkscape/praeable.tex" + ns0:text="Cell-centered primary variables ($p_\\alpha, x^\\kappa_\\alpha, T, k, \\epsilon...$)\\\\\n$v_{\\alpha, x}$\\\\\n$v_{\\alpha, y}$\\\\\nfinite volume mesh and\\\\\nboundaries of the control volumes centered around the scalar variables\\\\\nboundaries of the staggered control volumes located around the velocity $x$-component\\\\\nboundaries of the staggered control volumes located around the velocity $y$-component\n"> + <defs + id="defs5970"> + <g + id="g5972"> + <symbol + id="textext-e6cead2f-0" + overflow="visible"> + <path + id="path5975" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-1" + overflow="visible"> + <path + id="path5978" + d="M 0.5625 -3.40625 C 0.5625 -1.34375 2.171875 0.21875 4.03125 0.21875 C 5.65625 0.21875 6.625 -1.171875 6.625 -2.328125 C 6.625 -2.421875 6.625 -2.5 6.5 -2.5 C 6.390625 -2.5 6.390625 -2.4375 6.375 -2.328125 C 6.296875 -0.90625 5.234375 -0.09375 4.140625 -0.09375 C 3.53125 -0.09375 1.578125 -0.421875 1.578125 -3.40625 C 1.578125 -6.375 3.53125 -6.71875 4.140625 -6.71875 C 5.21875 -6.71875 6.109375 -5.8125 6.3125 -4.359375 C 6.328125 -4.21875 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.21875 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.03125 6.515625 -7.03125 C 6.484375 -7.03125 6.4375 -7.03125 6.359375 -6.90625 L 5.859375 -6.171875 C 5.5 -6.53125 4.984375 -7.03125 4.03125 -7.03125 C 2.15625 -7.03125 0.5625 -5.4375 0.5625 -3.40625 Z M 0.5625 -3.40625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-2" + overflow="visible"> + <path + id="path5981" + d="M 1.109375 -2.515625 C 1.171875 -4 2.015625 -4.25 2.359375 -4.25 C 3.375 -4.25 3.484375 -2.90625 3.484375 -2.515625 Z M 1.109375 -2.296875 L 3.890625 -2.296875 C 4.109375 -2.296875 4.140625 -2.296875 4.140625 -2.515625 C 4.140625 -3.5 3.59375 -4.46875 2.359375 -4.46875 C 1.203125 -4.46875 0.28125 -3.4375 0.28125 -2.1875 C 0.28125 -0.859375 1.328125 0.109375 2.46875 0.109375 C 3.6875 0.109375 4.140625 -1 4.140625 -1.1875 C 4.140625 -1.28125 4.0625 -1.3125 4 -1.3125 C 3.921875 -1.3125 3.890625 -1.25 3.875 -1.171875 C 3.53125 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.640625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 Z M 1.109375 -2.296875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-3" + overflow="visible"> + <path + id="path5984" + d="M 1.765625 -6.921875 L 0.328125 -6.8125 L 0.328125 -6.5 C 1.03125 -6.5 1.109375 -6.4375 1.109375 -5.9375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.65625 -0.015625 1.1875 -0.03125 1.4375 -0.03125 C 1.6875 -0.03125 2.171875 -0.015625 2.546875 0 L 2.546875 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 Z M 1.765625 -6.921875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-4" + overflow="visible"> + <path + id="path5987" + d="M 2.75 -1.859375 L 2.75 -2.4375 L 0.109375 -2.4375 L 0.109375 -1.859375 Z M 2.75 -1.859375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-5" + overflow="visible"> + <path + id="path5990" + d="M 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.21875 2.515625 -4.21875 C 2.609375 -4.21875 3.234375 -4.203125 3.578125 -3.84375 C 3.171875 -3.8125 3.109375 -3.515625 3.109375 -3.390625 C 3.109375 -3.125 3.296875 -2.9375 3.5625 -2.9375 C 3.828125 -2.9375 4.03125 -3.09375 4.03125 -3.40625 C 4.03125 -4.078125 3.265625 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.34375 -3.390625 0.34375 -2.15625 C 0.34375 -0.875 1.328125 0.109375 2.484375 0.109375 C 3.8125 0.109375 4.140625 -1.09375 4.140625 -1.1875 C 4.140625 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.921875 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.59375 -0.265625 2.9375 -0.140625 2.578125 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 Z M 1.171875 -2.171875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-6" + overflow="visible"> + <path + id="path5993" + d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-7" + overflow="visible"> + <path + id="path5996" + d="M 1.71875 -3.984375 L 3.15625 -3.984375 L 3.15625 -4.296875 L 1.71875 -4.296875 L 1.71875 -6.125 L 1.46875 -6.125 C 1.46875 -5.3125 1.171875 -4.25 0.1875 -4.203125 L 0.1875 -3.984375 L 1.03125 -3.984375 L 1.03125 -1.234375 C 1.03125 -0.015625 1.96875 0.109375 2.328125 0.109375 C 3.03125 0.109375 3.3125 -0.59375 3.3125 -1.234375 L 3.3125 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.765625 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 Z M 1.71875 -3.984375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-8" + overflow="visible"> + <path + id="path5999" + d="M 1.671875 -3.3125 L 1.671875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.421875 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.671875 -0.015625 1.140625 -0.03125 1.421875 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.6875 0 L 2.6875 -0.3125 L 2.46875 -0.3125 C 1.734375 -0.3125 1.71875 -0.421875 1.71875 -0.78125 L 1.71875 -2.3125 C 1.71875 -3.296875 2.140625 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.984375 -4.1875 3 -4.171875 C 2.96875 -4.171875 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.515625 2.984375 -3.359375 3.203125 -3.359375 C 3.375 -3.359375 3.625 -3.484375 3.625 -3.796875 C 3.625 -4.109375 3.3125 -4.40625 2.890625 -4.40625 C 2.15625 -4.40625 1.796875 -3.734375 1.671875 -3.3125 Z M 1.671875 -3.3125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-9" + overflow="visible"> + <path + id="path6002" + d="M 3.78125 -0.546875 L 3.78125 0.109375 L 5.25 0 L 5.25 -0.3125 C 4.5625 -0.3125 4.46875 -0.375 4.46875 -0.875 L 4.46875 -6.921875 L 3.046875 -6.8125 L 3.046875 -6.5 C 3.734375 -6.5 3.8125 -6.4375 3.8125 -5.9375 L 3.8125 -3.78125 C 3.53125 -4.140625 3.09375 -4.40625 2.5625 -4.40625 C 1.390625 -4.40625 0.34375 -3.421875 0.34375 -2.140625 C 0.34375 -0.875 1.3125 0.109375 2.453125 0.109375 C 3.09375 0.109375 3.53125 -0.234375 3.78125 -0.546875 Z M 3.78125 -3.21875 L 3.78125 -1.171875 C 3.78125 -1 3.78125 -0.984375 3.671875 -0.8125 C 3.375 -0.328125 2.9375 -0.109375 2.5 -0.109375 C 2.046875 -0.109375 1.6875 -0.375 1.453125 -0.75 C 1.203125 -1.15625 1.171875 -1.71875 1.171875 -2.140625 C 1.171875 -2.5 1.1875 -3.09375 1.46875 -3.546875 C 1.6875 -3.859375 2.0625 -4.1875 2.609375 -4.1875 C 2.953125 -4.1875 3.375 -4.03125 3.671875 -3.59375 C 3.78125 -3.421875 3.78125 -3.40625 3.78125 -3.21875 Z M 3.78125 -3.21875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-10" + overflow="visible"> + <path + id="path6005" + d="M 1.71875 -3.75 L 1.71875 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.984375 -3.984375 1.0625 -3.921875 1.0625 -3.484375 L 1.0625 1.171875 C 1.0625 1.625 0.953125 1.625 0.28125 1.625 L 0.28125 1.9375 C 0.625 1.921875 1.140625 1.90625 1.390625 1.90625 C 1.671875 1.90625 2.171875 1.921875 2.515625 1.9375 L 2.515625 1.625 C 1.859375 1.625 1.75 1.625 1.75 1.171875 L 1.75 -0.59375 C 1.796875 -0.421875 2.21875 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.234375 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 1.71875 -3.75 Z M 1.75 -1.140625 L 1.75 -3.359375 C 2.03125 -3.875 2.515625 -4.15625 3.03125 -4.15625 C 3.765625 -4.15625 4.359375 -3.28125 4.359375 -2.15625 C 4.359375 -0.953125 3.671875 -0.109375 2.9375 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.9375 1.75 -1.140625 Z M 1.75 -1.140625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-11" + overflow="visible"> + <path + id="path6008" + d="M 1.765625 -4.40625 L 0.375 -4.296875 L 0.375 -3.984375 C 1.015625 -3.984375 1.109375 -3.921875 1.109375 -3.4375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.328125 -0.3125 L 0.328125 0 C 0.640625 -0.015625 1.1875 -0.03125 1.421875 -0.03125 C 1.78125 -0.03125 2.125 -0.015625 2.46875 0 L 2.46875 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 Z M 1.796875 -6.140625 C 1.796875 -6.453125 1.5625 -6.671875 1.28125 -6.671875 C 0.96875 -6.671875 0.75 -6.40625 0.75 -6.140625 C 0.75 -5.875 0.96875 -5.609375 1.28125 -5.609375 C 1.5625 -5.609375 1.796875 -5.828125 1.796875 -6.140625 Z M 1.796875 -6.140625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-12" + overflow="visible"> + <path + id="path6011" + d="M 1.09375 -3.421875 L 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.671875 -0.3125 4.5625 -0.3125 4.5625 -0.75 L 4.5625 -2.59375 C 4.5625 -3.625 5.265625 -4.1875 5.90625 -4.1875 C 6.53125 -4.1875 6.640625 -3.65625 6.640625 -3.078125 L 6.640625 -0.75 C 6.640625 -0.3125 6.53125 -0.3125 5.859375 -0.3125 L 5.859375 0 C 6.203125 -0.015625 6.71875 -0.03125 6.984375 -0.03125 C 7.25 -0.03125 7.765625 -0.015625 8.109375 0 L 8.109375 -0.3125 C 7.59375 -0.3125 7.34375 -0.3125 7.328125 -0.609375 L 7.328125 -2.515625 C 7.328125 -3.375 7.328125 -3.671875 7.015625 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.140625 -4.40625 4.6875 -3.8125 4.53125 -3.421875 C 4.390625 -4.296875 3.65625 -4.40625 3.203125 -4.40625 C 2.46875 -4.40625 2 -3.984375 1.71875 -3.359375 L 1.71875 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.015625 -3.984375 1.09375 -3.921875 1.09375 -3.421875 Z M 1.09375 -3.421875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-13" + overflow="visible"> + <path + id="path6014" + d="M 3.3125 -0.75 C 3.359375 -0.359375 3.625 0.0625 4.09375 0.0625 C 4.3125 0.0625 4.921875 -0.078125 4.921875 -0.890625 L 4.921875 -1.453125 L 4.671875 -1.453125 L 4.671875 -0.890625 C 4.671875 -0.3125 4.421875 -0.25 4.3125 -0.25 C 3.984375 -0.25 3.9375 -0.703125 3.9375 -0.75 L 3.9375 -2.734375 C 3.9375 -3.15625 3.9375 -3.546875 3.578125 -3.921875 C 3.1875 -4.3125 2.6875 -4.46875 2.21875 -4.46875 C 1.390625 -4.46875 0.703125 -4 0.703125 -3.34375 C 0.703125 -3.046875 0.90625 -2.875 1.171875 -2.875 C 1.453125 -2.875 1.625 -3.078125 1.625 -3.328125 C 1.625 -3.453125 1.578125 -3.78125 1.109375 -3.78125 C 1.390625 -4.140625 1.875 -4.25 2.1875 -4.25 C 2.6875 -4.25 3.25 -3.859375 3.25 -2.96875 L 3.25 -2.609375 C 2.734375 -2.578125 2.046875 -2.546875 1.421875 -2.25 C 0.671875 -1.90625 0.421875 -1.390625 0.421875 -0.953125 C 0.421875 -0.140625 1.390625 0.109375 2.015625 0.109375 C 2.671875 0.109375 3.125 -0.296875 3.3125 -0.75 Z M 3.25 -2.390625 L 3.25 -1.390625 C 3.25 -0.453125 2.53125 -0.109375 2.078125 -0.109375 C 1.59375 -0.109375 1.1875 -0.453125 1.1875 -0.953125 C 1.1875 -1.5 1.609375 -2.328125 3.25 -2.390625 Z M 3.25 -2.390625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-14" + overflow="visible"> + <path + id="path6017" + d="M 4.140625 -3.34375 C 4.390625 -3.984375 4.90625 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 C 4.140625 -4.265625 3.671875 -4.28125 3.453125 -4.296875 L 3.453125 -3.984375 C 3.765625 -3.984375 3.921875 -3.8125 3.921875 -3.5625 C 3.921875 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.875 L 1.75 -3.546875 C 1.703125 -3.65625 1.6875 -3.6875 1.6875 -3.734375 C 1.6875 -3.984375 2.046875 -3.984375 2.25 -3.984375 L 2.25 -4.296875 C 1.984375 -4.28125 1.328125 -4.265625 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.5 0 C 2.4375 0.125 2.296875 0.453125 2.25 0.59375 C 2.03125 1.140625 1.75 1.828125 1.109375 1.828125 C 1.0625 1.828125 0.828125 1.828125 0.640625 1.640625 C 0.953125 1.609375 1.03125 1.390625 1.03125 1.21875 C 1.03125 0.96875 0.84375 0.8125 0.609375 0.8125 C 0.40625 0.8125 0.1875 0.9375 0.1875 1.234375 C 0.1875 1.6875 0.609375 2.046875 1.109375 2.046875 C 1.734375 2.046875 2.140625 1.46875 2.375 0.90625 Z M 4.140625 -3.34375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-15" + overflow="visible"> + <path + id="path6020" + d="M 4.140625 -3.3125 C 4.234375 -3.546875 4.40625 -3.984375 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.28125 4.546875 -4.265625 4.3125 -4.265625 C 4.078125 -4.265625 3.625 -4.28125 3.453125 -4.296875 L 3.453125 -3.984375 C 3.8125 -3.984375 3.921875 -3.75 3.921875 -3.5625 C 3.921875 -3.46875 3.90625 -3.421875 3.875 -3.3125 L 2.84375 -0.78125 L 1.734375 -3.5625 C 1.671875 -3.6875 1.671875 -3.703125 1.671875 -3.734375 C 1.671875 -3.984375 2.0625 -3.984375 2.25 -3.984375 L 2.25 -4.296875 C 1.9375 -4.28125 1.390625 -4.265625 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.28125 0.1875 -4.296875 L 0.1875 -3.984375 C 0.8125 -3.984375 0.859375 -3.921875 0.984375 -3.625 L 2.421875 -0.078125 C 2.484375 0.0625 2.5 0.109375 2.625 0.109375 C 2.765625 0.109375 2.796875 0.015625 2.84375 -0.078125 Z M 4.140625 -3.3125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-16" + overflow="visible"> + <path + id="path6023" + d="M 1.71875 -3.765625 L 1.71875 -6.921875 L 0.28125 -6.8125 L 0.28125 -6.5 C 0.984375 -6.5 1.0625 -6.4375 1.0625 -5.9375 L 1.0625 0 L 1.3125 0 C 1.3125 -0.015625 1.390625 -0.15625 1.671875 -0.625 C 1.8125 -0.390625 2.234375 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.875 5.1875 -2.15625 C 5.1875 -3.421875 4.21875 -4.40625 3.078125 -4.40625 C 2.296875 -4.40625 1.875 -3.9375 1.71875 -3.765625 Z M 1.75 -1.140625 L 1.75 -3.1875 C 1.75 -3.375 1.75 -3.390625 1.859375 -3.546875 C 2.25 -4.109375 2.796875 -4.1875 3.03125 -4.1875 C 3.484375 -4.1875 3.84375 -3.921875 4.078125 -3.546875 C 4.34375 -3.140625 4.359375 -2.578125 4.359375 -2.15625 C 4.359375 -1.796875 4.34375 -1.203125 4.0625 -0.75 C 3.84375 -0.4375 3.46875 -0.109375 2.9375 -0.109375 C 2.484375 -0.109375 2.125 -0.34375 1.890625 -0.71875 C 1.75 -0.921875 1.75 -0.953125 1.75 -1.140625 Z M 1.75 -1.140625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-17" + overflow="visible"> + <path + id="path6026" + d="M 2.078125 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.515625 2.765625 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.53125 C 0.5625 -1.65625 0.5625 -1.6875 0.453125 -1.6875 C 0.328125 -1.6875 0.328125 -1.625 0.328125 -1.453125 L 0.328125 -0.125 C 0.328125 0.046875 0.328125 0.109375 0.4375 0.109375 C 0.484375 0.109375 0.5 0.09375 0.6875 -0.09375 C 0.703125 -0.109375 0.703125 -0.125 0.890625 -0.3125 C 1.328125 0.09375 1.78125 0.109375 1.984375 0.109375 C 3.125 0.109375 3.59375 -0.5625 3.59375 -1.28125 C 3.59375 -1.796875 3.296875 -2.109375 3.171875 -2.21875 C 2.84375 -2.546875 2.453125 -2.625 2.03125 -2.703125 C 1.46875 -2.8125 0.8125 -2.9375 0.8125 -3.515625 C 0.8125 -3.875 1.0625 -4.28125 1.921875 -4.28125 C 3.015625 -4.28125 3.078125 -3.375 3.09375 -3.078125 C 3.09375 -2.984375 3.1875 -2.984375 3.203125 -2.984375 C 3.34375 -2.984375 3.34375 -3.03125 3.34375 -3.21875 L 3.34375 -4.234375 C 3.34375 -4.390625 3.34375 -4.46875 3.234375 -4.46875 C 3.1875 -4.46875 3.15625 -4.46875 3.03125 -4.34375 C 3 -4.3125 2.90625 -4.21875 2.859375 -4.1875 C 2.484375 -4.46875 2.078125 -4.46875 1.921875 -4.46875 C 0.703125 -4.46875 0.328125 -3.796875 0.328125 -3.234375 C 0.328125 -2.890625 0.484375 -2.609375 0.75 -2.390625 C 1.078125 -2.140625 1.359375 -2.078125 2.078125 -1.9375 Z M 2.078125 -1.9375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-18" + overflow="visible"> + <path + id="path6029" + d="M 3.296875 2.390625 C 3.296875 2.359375 3.296875 2.34375 3.125 2.171875 C 1.890625 0.921875 1.5625 -0.96875 1.5625 -2.5 C 1.5625 -4.234375 1.9375 -5.96875 3.171875 -7.203125 C 3.296875 -7.328125 3.296875 -7.34375 3.296875 -7.375 C 3.296875 -7.453125 3.265625 -7.484375 3.203125 -7.484375 C 3.09375 -7.484375 2.203125 -6.796875 1.609375 -5.53125 C 1.109375 -4.4375 0.984375 -3.328125 0.984375 -2.5 C 0.984375 -1.71875 1.09375 -0.515625 1.640625 0.625 C 2.25 1.84375 3.09375 2.5 3.203125 2.5 C 3.265625 2.5 3.296875 2.46875 3.296875 2.390625 Z M 3.296875 2.390625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-19" + overflow="visible"> + <path + id="path6032" + d="M 2.875 -2.5 C 2.875 -3.265625 2.765625 -4.46875 2.21875 -5.609375 C 1.625 -6.828125 0.765625 -7.484375 0.671875 -7.484375 C 0.609375 -7.484375 0.5625 -7.4375 0.5625 -7.375 C 0.5625 -7.34375 0.5625 -7.328125 0.75 -7.140625 C 1.734375 -6.15625 2.296875 -4.578125 2.296875 -2.5 C 2.296875 -0.78125 1.9375 0.96875 0.703125 2.21875 C 0.5625 2.34375 0.5625 2.359375 0.5625 2.390625 C 0.5625 2.453125 0.609375 2.5 0.671875 2.5 C 0.765625 2.5 1.671875 1.8125 2.25 0.546875 C 2.765625 -0.546875 2.875 -1.65625 2.875 -2.5 Z M 2.875 -2.5 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-20" + overflow="visible"> + <path + id="path6035" + d="M 3.296875 -3.984375 C 3.75 -3.984375 3.8125 -3.859375 3.8125 -3.453125 L 3.8125 -0.75 C 3.8125 -0.3125 3.703125 -0.3125 3.046875 -0.3125 L 3.046875 0 C 3.375 -0.015625 3.890625 -0.03125 4.140625 -0.03125 C 4.390625 -0.03125 4.890625 -0.015625 5.25 0 L 5.25 -0.3125 C 4.578125 -0.3125 4.46875 -0.3125 4.46875 -0.75 L 4.46875 -4.421875 L 3.21875 -4.328125 C 3.0625 -4.3125 3.046875 -4.3125 3.046875 -4.3125 C 3.015625 -4.296875 3 -4.296875 2.859375 -4.296875 L 1.6875 -4.296875 L 1.6875 -5.421875 C 1.6875 -6.40625 2.546875 -6.8125 3.15625 -6.8125 C 3.453125 -6.8125 3.8125 -6.703125 4.015625 -6.484375 C 3.609375 -6.453125 3.546875 -6.1875 3.546875 -6.015625 C 3.546875 -5.6875 3.8125 -5.5625 4 -5.5625 C 4.234375 -5.5625 4.453125 -5.71875 4.453125 -6.015625 C 4.453125 -6.609375 3.90625 -7.03125 3.171875 -7.03125 C 2.25 -7.03125 1.0625 -6.515625 1.0625 -5.4375 L 1.0625 -4.296875 L 0.265625 -4.296875 L 0.265625 -3.984375 L 1.0625 -3.984375 L 1.0625 -0.75 C 1.0625 -0.3125 0.953125 -0.3125 0.28125 -0.3125 L 0.28125 0 C 0.609375 -0.015625 1.140625 -0.03125 1.390625 -0.03125 C 1.640625 -0.03125 2.125 -0.015625 2.5 0 L 2.5 -0.3125 C 1.828125 -0.3125 1.71875 -0.3125 1.71875 -0.75 L 1.71875 -3.984375 Z M 3.296875 -3.984375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-21" + overflow="visible"> + <path + id="path6038" + d="M 4.6875 -2.140625 C 4.6875 -3.40625 3.703125 -4.46875 2.5 -4.46875 C 1.25 -4.46875 0.28125 -3.375 0.28125 -2.140625 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.875 4.6875 -2.140625 Z M 2.5 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.859375 1.109375 -2.21875 C 1.109375 -2.609375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.25 2.484375 -4.25 C 2.921875 -4.25 3.34375 -4.03125 3.609375 -3.59375 C 3.875 -3.171875 3.875 -2.59375 3.875 -2.21875 C 3.875 -1.859375 3.875 -1.3125 3.65625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.5 -0.140625 Z M 2.5 -0.140625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-22" + overflow="visible"> + <path + id="path6041" + d="M 3.890625 -0.78125 L 3.890625 0.109375 L 5.328125 0 L 5.328125 -0.3125 C 4.640625 -0.3125 4.5625 -0.375 4.5625 -0.875 L 4.5625 -4.40625 L 3.09375 -4.296875 L 3.09375 -3.984375 C 3.78125 -3.984375 3.875 -3.921875 3.875 -3.421875 L 3.875 -1.65625 C 3.875 -0.78125 3.390625 -0.109375 2.65625 -0.109375 C 1.828125 -0.109375 1.78125 -0.578125 1.78125 -1.09375 L 1.78125 -4.40625 L 0.3125 -4.296875 L 0.3125 -3.984375 C 1.09375 -3.984375 1.09375 -3.953125 1.09375 -3.078125 L 1.09375 -1.578125 C 1.09375 -0.796875 1.09375 0.109375 2.609375 0.109375 C 3.171875 0.109375 3.609375 -0.171875 3.890625 -0.78125 Z M 3.890625 -0.78125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-23" + overflow="visible"> + <path + id="path6044" + d="M 1.09375 -0.75 C 1.09375 -0.3125 0.984375 -0.3125 0.3125 -0.3125 L 0.3125 0 C 0.671875 -0.015625 1.171875 -0.03125 1.453125 -0.03125 C 1.703125 -0.03125 2.21875 -0.015625 2.5625 0 L 2.5625 -0.3125 C 1.890625 -0.3125 1.78125 -0.3125 1.78125 -0.75 L 1.78125 -2.59375 C 1.78125 -3.625 2.5 -4.1875 3.125 -4.1875 C 3.765625 -4.1875 3.875 -3.65625 3.875 -3.078125 L 3.875 -0.75 C 3.875 -0.3125 3.765625 -0.3125 3.09375 -0.3125 L 3.09375 0 C 3.4375 -0.015625 3.953125 -0.03125 4.21875 -0.03125 C 4.46875 -0.03125 5 -0.015625 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.5625 -0.609375 L 4.5625 -2.515625 C 4.5625 -3.375 4.5625 -3.671875 4.25 -4.03125 C 4.109375 -4.203125 3.78125 -4.40625 3.203125 -4.40625 C 2.359375 -4.40625 1.921875 -3.8125 1.75 -3.421875 L 1.75 -6.921875 L 0.3125 -6.8125 L 0.3125 -6.5 C 1.015625 -6.5 1.09375 -6.4375 1.09375 -5.9375 Z M 1.09375 -0.75 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-24" + overflow="visible"> + <path + id="path6047" + d="M 1.75 -4.296875 L 1.75 -5.453125 C 1.75 -6.328125 2.21875 -6.8125 2.65625 -6.8125 C 2.6875 -6.8125 2.84375 -6.8125 2.984375 -6.734375 C 2.875 -6.703125 2.6875 -6.5625 2.6875 -6.3125 C 2.6875 -6.09375 2.84375 -5.890625 3.125 -5.890625 C 3.40625 -5.890625 3.5625 -6.09375 3.5625 -6.328125 C 3.5625 -6.703125 3.1875 -7.03125 2.65625 -7.03125 C 1.96875 -7.03125 1.109375 -6.5 1.109375 -5.4375 L 1.109375 -4.296875 L 0.328125 -4.296875 L 0.328125 -3.984375 L 1.109375 -3.984375 L 1.109375 -0.75 C 1.109375 -0.3125 1 -0.3125 0.34375 -0.3125 L 0.34375 0 C 0.734375 -0.015625 1.203125 -0.03125 1.46875 -0.03125 C 1.875 -0.03125 2.34375 -0.03125 2.734375 0 L 2.734375 -0.3125 L 2.53125 -0.3125 C 1.796875 -0.3125 1.78125 -0.421875 1.78125 -0.78125 L 1.78125 -3.984375 L 2.90625 -3.984375 L 2.90625 -4.296875 Z M 1.75 -4.296875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-25" + overflow="visible"> + <path + id="path6050" + d="M 2.21875 -1.71875 C 1.34375 -1.71875 1.34375 -2.71875 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.53125 1.5 -3.78125 C 1.578125 -3.890625 1.8125 -4.171875 2.21875 -4.171875 C 3.078125 -4.171875 3.078125 -3.1875 3.078125 -2.953125 C 3.078125 -2.6875 3.078125 -2.359375 2.921875 -2.109375 C 2.84375 -2 2.609375 -1.71875 2.21875 -1.71875 Z M 1.0625 -1.328125 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.03125 -1.484375 2.21875 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.3125 3.671875 -3.671875 3.421875 -3.90625 C 3.78125 -4.25 4.140625 -4.296875 4.3125 -4.296875 C 4.34375 -4.296875 4.390625 -4.296875 4.421875 -4.28125 C 4.3125 -4.25 4.25 -4.140625 4.25 -4.015625 C 4.25 -3.84375 4.390625 -3.734375 4.546875 -3.734375 C 4.640625 -3.734375 4.828125 -3.796875 4.828125 -4.03125 C 4.828125 -4.203125 4.71875 -4.515625 4.328125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.4375 -4.40625 2.21875 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.140625 1.0625 -1.921875 C 0.9375 -1.78125 0.75 -1.453125 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.203125 -0.203125 C 0.59375 -0.046875 0.28125 0.390625 0.28125 0.78125 C 0.28125 1.5 1.265625 2.046875 2.484375 2.046875 C 3.65625 2.046875 4.6875 1.546875 4.6875 0.765625 C 4.6875 0.421875 4.5625 -0.09375 4.046875 -0.375 C 3.515625 -0.640625 2.9375 -0.640625 2.328125 -0.640625 C 2.078125 -0.640625 1.65625 -0.640625 1.578125 -0.65625 C 1.265625 -0.703125 1.0625 -1 1.0625 -1.328125 Z M 2.5 1.828125 C 1.484375 1.828125 0.796875 1.3125 0.796875 0.78125 C 0.796875 0.328125 1.171875 -0.046875 1.609375 -0.0625 L 2.203125 -0.0625 C 3.0625 -0.0625 4.171875 -0.0625 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.5 1.828125 Z M 2.5 1.828125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-26" + overflow="visible"> + <path + id="path6053" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-27" + overflow="visible"> + <path + id="path6056" + d="M 0.453125 1.21875 C 0.375 1.5625 0.34375 1.625 -0.09375 1.625 C -0.203125 1.625 -0.3125 1.625 -0.3125 1.8125 C -0.3125 1.890625 -0.265625 1.9375 -0.1875 1.9375 C 0.078125 1.9375 0.375 1.90625 0.640625 1.90625 C 0.984375 1.90625 1.3125 1.9375 1.640625 1.9375 C 1.6875 1.9375 1.8125 1.9375 1.8125 1.734375 C 1.8125 1.625 1.71875 1.625 1.578125 1.625 C 1.078125 1.625 1.078125 1.5625 1.078125 1.46875 C 1.078125 1.34375 1.5 -0.28125 1.5625 -0.53125 C 1.6875 -0.234375 1.96875 0.109375 2.484375 0.109375 C 3.640625 0.109375 4.890625 -1.34375 4.890625 -2.8125 C 4.890625 -3.75 4.3125 -4.40625 3.5625 -4.40625 C 3.0625 -4.40625 2.578125 -4.046875 2.25 -3.65625 C 2.15625 -4.203125 1.71875 -4.40625 1.359375 -4.40625 C 0.890625 -4.40625 0.703125 -4.015625 0.625 -3.84375 C 0.4375 -3.5 0.3125 -2.90625 0.3125 -2.875 C 0.3125 -2.765625 0.40625 -2.765625 0.421875 -2.765625 C 0.53125 -2.765625 0.53125 -2.78125 0.59375 -3 C 0.765625 -3.703125 0.96875 -4.1875 1.328125 -4.1875 C 1.5 -4.1875 1.640625 -4.109375 1.640625 -3.734375 C 1.640625 -3.5 1.609375 -3.390625 1.5625 -3.21875 Z M 2.203125 -3.109375 C 2.265625 -3.375 2.546875 -3.65625 2.71875 -3.8125 C 3.078125 -4.109375 3.359375 -4.1875 3.53125 -4.1875 C 3.921875 -4.1875 4.171875 -3.84375 4.171875 -3.25 C 4.171875 -2.65625 3.84375 -1.515625 3.65625 -1.140625 C 3.3125 -0.4375 2.84375 -0.109375 2.46875 -0.109375 C 1.8125 -0.109375 1.6875 -0.9375 1.6875 -1 C 1.6875 -1.015625 1.6875 -1.03125 1.71875 -1.15625 Z M 2.203125 -3.109375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-28" + overflow="visible"> + <path + id="path6059" + d="M 2.03125 -0.015625 C 2.03125 -0.671875 1.78125 -1.0625 1.390625 -1.0625 C 1.0625 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.265625 1.0625 0 1.390625 0 C 1.5 0 1.640625 -0.046875 1.734375 -0.125 C 1.765625 -0.15625 1.78125 -0.15625 1.78125 -0.15625 C 1.796875 -0.15625 1.796875 -0.15625 1.796875 -0.015625 C 1.796875 0.734375 1.453125 1.328125 1.125 1.65625 C 1.015625 1.765625 1.015625 1.78125 1.015625 1.8125 C 1.015625 1.890625 1.0625 1.921875 1.109375 1.921875 C 1.21875 1.921875 2.03125 1.15625 2.03125 -0.015625 Z M 2.03125 -0.015625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-29" + overflow="visible"> + <path + id="path6062" + d="M 3.328125 -3.015625 C 3.390625 -3.265625 3.625 -4.1875 4.3125 -4.1875 C 4.359375 -4.1875 4.609375 -4.1875 4.8125 -4.0625 C 4.53125 -4 4.34375 -3.765625 4.34375 -3.515625 C 4.34375 -3.359375 4.453125 -3.171875 4.71875 -3.171875 C 4.9375 -3.171875 5.25 -3.34375 5.25 -3.75 C 5.25 -4.265625 4.671875 -4.40625 4.328125 -4.40625 C 3.75 -4.40625 3.40625 -3.875 3.28125 -3.65625 C 3.03125 -4.3125 2.5 -4.40625 2.203125 -4.40625 C 1.171875 -4.40625 0.59375 -3.125 0.59375 -2.875 C 0.59375 -2.765625 0.703125 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.796875 0.84375 -2.875 C 1.1875 -3.9375 1.84375 -4.1875 2.1875 -4.1875 C 2.375 -4.1875 2.71875 -4.09375 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.546875 2.1875 -1.140625 C 2.03125 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.953125 -0.109375 0.734375 -0.234375 C 0.984375 -0.296875 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.84375 -1.125 C 0.53125 -1.125 0.296875 -0.875 0.296875 -0.546875 C 0.296875 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.890625 0.109375 2.25 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.375 0.109375 4.9375 -1.171875 4.9375 -1.421875 C 4.9375 -1.53125 4.859375 -1.53125 4.828125 -1.53125 C 4.734375 -1.53125 4.71875 -1.484375 4.6875 -1.421875 C 4.359375 -0.34375 3.6875 -0.109375 3.375 -0.109375 C 2.984375 -0.109375 2.828125 -0.421875 2.828125 -0.765625 C 2.828125 -0.984375 2.875 -1.203125 2.984375 -1.640625 Z M 3.328125 -3.015625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-30" + overflow="visible"> + <path + id="path6065" + d="M 4.25 -6.046875 C 4.328125 -6.328125 4.359375 -6.390625 4.484375 -6.421875 C 4.578125 -6.4375 4.90625 -6.4375 5.109375 -6.4375 C 6.125 -6.4375 6.5625 -6.40625 6.5625 -5.625 C 6.5625 -5.46875 6.53125 -5.078125 6.484375 -4.828125 C 6.484375 -4.78125 6.453125 -4.671875 6.453125 -4.640625 C 6.453125 -4.578125 6.484375 -4.5 6.578125 -4.5 C 6.6875 -4.5 6.703125 -4.578125 6.734375 -4.734375 L 7 -6.46875 C 7.015625 -6.515625 7.015625 -6.609375 7.015625 -6.640625 C 7.015625 -6.75 6.921875 -6.75 6.75 -6.75 L 1.21875 -6.75 C 0.984375 -6.75 0.96875 -6.734375 0.890625 -6.546875 L 0.296875 -4.796875 C 0.296875 -4.78125 0.234375 -4.640625 0.234375 -4.609375 C 0.234375 -4.5625 0.296875 -4.5 0.359375 -4.5 C 0.453125 -4.5 0.46875 -4.5625 0.53125 -4.71875 C 1.0625 -6.265625 1.328125 -6.4375 2.796875 -6.4375 L 3.1875 -6.4375 C 3.46875 -6.4375 3.46875 -6.40625 3.46875 -6.3125 C 3.46875 -6.265625 3.4375 -6.140625 3.421875 -6.109375 L 2.09375 -0.78125 C 2 -0.421875 1.96875 -0.3125 0.90625 -0.3125 C 0.546875 -0.3125 0.484375 -0.3125 0.484375 -0.125 C 0.484375 0 0.59375 0 0.65625 0 C 0.921875 0 1.203125 -0.015625 1.46875 -0.015625 C 1.75 -0.015625 2.046875 -0.03125 2.328125 -0.03125 C 2.609375 -0.03125 2.875 -0.015625 3.15625 -0.015625 C 3.4375 -0.015625 3.734375 0 4.015625 0 C 4.109375 0 4.234375 0 4.234375 -0.203125 C 4.234375 -0.3125 4.15625 -0.3125 3.890625 -0.3125 C 3.65625 -0.3125 3.515625 -0.3125 3.265625 -0.328125 C 2.96875 -0.359375 2.890625 -0.390625 2.890625 -0.546875 C 2.890625 -0.5625 2.890625 -0.609375 2.9375 -0.75 Z M 4.25 -6.046875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-31" + overflow="visible"> + <path + id="path6068" + d="M 2.859375 -6.8125 C 2.859375 -6.8125 2.859375 -6.921875 2.734375 -6.921875 C 2.5 -6.921875 1.78125 -6.84375 1.515625 -6.8125 C 1.4375 -6.8125 1.328125 -6.796875 1.328125 -6.625 C 1.328125 -6.5 1.421875 -6.5 1.5625 -6.5 C 2.046875 -6.5 2.0625 -6.4375 2.0625 -6.328125 L 2.03125 -6.125 L 0.59375 -0.390625 C 0.546875 -0.25 0.546875 -0.234375 0.546875 -0.171875 C 0.546875 0.0625 0.75 0.109375 0.84375 0.109375 C 0.96875 0.109375 1.109375 0.015625 1.171875 -0.09375 C 1.21875 -0.1875 1.671875 -2.03125 1.734375 -2.28125 C 2.078125 -2.25 2.890625 -2.09375 2.890625 -1.4375 C 2.890625 -1.359375 2.890625 -1.328125 2.859375 -1.21875 C 2.84375 -1.109375 2.828125 -0.984375 2.828125 -0.875 C 2.828125 -0.296875 3.21875 0.109375 3.734375 0.109375 C 4.03125 0.109375 4.3125 -0.046875 4.53125 -0.421875 C 4.78125 -0.859375 4.890625 -1.40625 4.890625 -1.421875 C 4.890625 -1.53125 4.796875 -1.53125 4.765625 -1.53125 C 4.671875 -1.53125 4.65625 -1.484375 4.625 -1.34375 C 4.421875 -0.625 4.203125 -0.109375 3.765625 -0.109375 C 3.5625 -0.109375 3.4375 -0.21875 3.4375 -0.578125 C 3.4375 -0.75 3.484375 -0.984375 3.515625 -1.140625 C 3.5625 -1.3125 3.5625 -1.34375 3.5625 -1.453125 C 3.5625 -2.09375 2.9375 -2.375 2.078125 -2.5 C 2.390625 -2.671875 2.71875 -2.984375 2.9375 -3.234375 C 3.421875 -3.765625 3.875 -4.1875 4.359375 -4.1875 C 4.421875 -4.1875 4.4375 -4.1875 4.453125 -4.171875 C 4.578125 -4.15625 4.578125 -4.15625 4.671875 -4.09375 C 4.6875 -4.09375 4.6875 -4.078125 4.703125 -4.0625 C 4.234375 -4.03125 4.140625 -3.640625 4.140625 -3.515625 C 4.140625 -3.359375 4.25 -3.171875 4.515625 -3.171875 C 4.78125 -3.171875 5.0625 -3.390625 5.0625 -3.78125 C 5.0625 -4.078125 4.828125 -4.40625 4.390625 -4.40625 C 4.109375 -4.40625 3.65625 -4.328125 2.9375 -3.53125 C 2.59375 -3.15625 2.203125 -2.75 1.828125 -2.609375 Z M 2.859375 -6.8125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-32" + overflow="visible"> + <path + id="path6071" + d="M 2.96875 -2.25 C 3.125 -2.25 3.3125 -2.25 3.3125 -2.421875 C 3.3125 -2.5625 3.1875 -2.5625 3.015625 -2.5625 L 1.40625 -2.5625 C 1.640625 -3.40625 2.203125 -3.984375 3.109375 -3.984375 L 3.421875 -3.984375 C 3.59375 -3.984375 3.75 -3.984375 3.75 -4.15625 C 3.75 -4.296875 3.625 -4.296875 3.453125 -4.296875 L 3.09375 -4.296875 C 1.796875 -4.296875 0.46875 -3.296875 0.46875 -1.78125 C 0.46875 -0.671875 1.21875 0.109375 2.265625 0.109375 C 2.921875 0.109375 3.5625 -0.296875 3.5625 -0.40625 C 3.5625 -0.421875 3.5625 -0.53125 3.46875 -0.53125 C 3.453125 -0.53125 3.421875 -0.53125 3.34375 -0.484375 C 3.03125 -0.28125 2.65625 -0.109375 2.296875 -0.109375 C 1.71875 -0.109375 1.21875 -0.53125 1.21875 -1.40625 C 1.21875 -1.75 1.296875 -2.140625 1.328125 -2.25 Z M 2.96875 -2.25 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-33" + overflow="visible"> + <path + id="path6074" + d="M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.0625 1.390625 -1.0625 C 1.09375 -1.0625 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.390625 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-34" + overflow="visible"> + <path + id="path6077" + d="M 4.671875 -3.703125 C 4.671875 -4.25 4.40625 -4.40625 4.234375 -4.40625 C 3.984375 -4.40625 3.734375 -4.140625 3.734375 -3.921875 C 3.734375 -3.796875 3.78125 -3.734375 3.890625 -3.625 C 4.109375 -3.421875 4.234375 -3.171875 4.234375 -2.8125 C 4.234375 -2.390625 3.625 -0.109375 2.46875 -0.109375 C 1.953125 -0.109375 1.71875 -0.453125 1.71875 -0.984375 C 1.71875 -1.53125 2 -2.265625 2.296875 -3.09375 C 2.375 -3.265625 2.421875 -3.40625 2.421875 -3.59375 C 2.421875 -4.03125 2.109375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 0.296875 -2.953125 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.796875 0.5625 -2.953125 C 0.859375 -3.953125 1.28125 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.875 C 1.828125 -3.625 1.71875 -3.34375 1.65625 -3.171875 C 1.21875 -2.015625 1.09375 -1.5625 1.09375 -1.125 C 1.09375 -0.046875 1.96875 0.109375 2.421875 0.109375 C 4.09375 0.109375 4.671875 -3.1875 4.671875 -3.703125 Z M 4.671875 -3.703125 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-35" + overflow="visible"> + <path + id="path6080" + d="M 4.84375 -3.796875 C 4.890625 -3.9375 4.890625 -3.953125 4.890625 -4.03125 C 4.890625 -4.203125 4.75 -4.296875 4.59375 -4.296875 C 4.5 -4.296875 4.34375 -4.234375 4.25 -4.09375 C 4.234375 -4.03125 4.140625 -3.734375 4.109375 -3.546875 C 4.03125 -3.296875 3.96875 -3.015625 3.90625 -2.75 L 3.453125 -0.953125 C 3.421875 -0.8125 2.984375 -0.109375 2.328125 -0.109375 C 1.828125 -0.109375 1.71875 -0.546875 1.71875 -0.921875 C 1.71875 -1.375 1.890625 -2 2.21875 -2.875 C 2.375 -3.28125 2.421875 -3.390625 2.421875 -3.59375 C 2.421875 -4.03125 2.109375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 0.296875 -2.953125 0.296875 -2.875 C 0.296875 -2.765625 0.390625 -2.765625 0.40625 -2.765625 C 0.515625 -2.765625 0.515625 -2.796875 0.5625 -2.953125 C 0.84375 -3.890625 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.875 C 1.828125 -3.625 1.71875 -3.359375 1.65625 -3.171875 C 1.25 -2.109375 1.078125 -1.546875 1.078125 -1.078125 C 1.078125 -0.1875 1.703125 0.109375 2.296875 0.109375 C 2.6875 0.109375 3.015625 -0.0625 3.296875 -0.34375 C 3.171875 0.171875 3.046875 0.671875 2.65625 1.203125 C 2.390625 1.53125 2.015625 1.828125 1.5625 1.828125 C 1.421875 1.828125 0.96875 1.796875 0.796875 1.40625 C 0.953125 1.40625 1.09375 1.40625 1.21875 1.28125 C 1.328125 1.203125 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.0625 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.046875 1.5625 2.046875 C 2.578125 2.046875 3.609375 1.140625 3.890625 0.015625 Z M 4.84375 -3.796875 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-36" + overflow="visible"> + <path + id="path6083" + d="" + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-37" + overflow="visible"> + <path + id="path6086" + d="M 3.8125 -0.984375 C 4.453125 -1.640625 4.703125 -2.578125 4.703125 -2.640625 C 4.703125 -2.734375 4.625 -2.734375 4.59375 -2.734375 C 4.5 -2.734375 4.5 -2.71875 4.453125 -2.5625 C 4.328125 -2.109375 4.09375 -1.671875 3.796875 -1.296875 C 3.796875 -1.40625 3.78125 -1.875 3.765625 -1.9375 C 3.65625 -2.625 3.140625 -3.078125 2.4375 -3.078125 C 1.421875 -3.078125 0.4375 -2.125 0.4375 -1.140625 C 0.4375 -0.5 0.90625 0.0625 1.703125 0.0625 C 2.34375 0.0625 2.921875 -0.21875 3.3125 -0.515625 C 3.484375 -0.015625 3.828125 0.0625 4.046875 0.0625 C 4.453125 0.0625 4.703125 -0.265625 4.703125 -0.421875 C 4.703125 -0.5 4.609375 -0.5 4.578125 -0.5 C 4.484375 -0.5 4.46875 -0.46875 4.453125 -0.4375 C 4.359375 -0.171875 4.140625 -0.125 4.0625 -0.125 C 3.96875 -0.125 3.84375 -0.125 3.8125 -0.984375 Z M 3.265625 -0.75 C 2.578125 -0.1875 2 -0.125 1.734375 -0.125 C 1.265625 -0.125 1.015625 -0.4375 1.015625 -0.90625 C 1.015625 -1.09375 1.109375 -1.859375 1.46875 -2.34375 C 1.796875 -2.765625 2.1875 -2.875 2.4375 -2.875 C 2.984375 -2.875 3.15625 -2.34375 3.203125 -1.90625 C 3.25 -1.609375 3.234375 -1.109375 3.265625 -0.75 Z M 3.265625 -0.75 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-38" + overflow="visible"> + <path + id="path6089" + d="M 1.84375 -1.765625 C 2.109375 -1.921875 2.4375 -2.171875 2.484375 -2.203125 C 2.96875 -2.5625 3.125 -2.65625 3.359375 -2.734375 C 3.34375 -2.703125 3.328125 -2.65625 3.328125 -2.625 C 3.328125 -2.453125 3.4375 -2.359375 3.609375 -2.359375 C 3.828125 -2.359375 4 -2.546875 4 -2.734375 C 4 -2.90625 3.875 -3 3.703125 -3 C 3.234375 -3 2.765625 -2.640625 2.390625 -2.359375 C 1.84375 -1.953125 1.65625 -1.875 1.484375 -1.828125 C 1.5625 -2.15625 1.578125 -2.21875 1.609375 -2.34375 C 1.65625 -2.515625 1.734375 -2.8125 1.734375 -2.84375 C 1.734375 -2.96875 1.640625 -3.078125 1.5 -3.078125 C 1.359375 -3.078125 1.25 -2.96875 1.203125 -2.890625 C 1.171875 -2.8125 0.515625 -0.203125 0.515625 -0.15625 C 0.515625 0 0.640625 0.0625 0.765625 0.0625 C 1.015625 0.0625 1.0625 -0.15625 1.09375 -0.28125 C 1.109375 -0.3125 1.25 -0.890625 1.421875 -1.578125 C 1.78125 -1.578125 2.75 -1.546875 2.75 -1.015625 C 2.75 -1.015625 2.734375 -0.953125 2.71875 -0.859375 C 2.703125 -0.75 2.703125 -0.71875 2.703125 -0.640625 C 2.703125 -0.15625 3.09375 0.0625 3.4375 0.0625 C 4.125 0.0625 4.328125 -0.984375 4.328125 -1 C 4.328125 -1.09375 4.234375 -1.09375 4.203125 -1.09375 C 4.109375 -1.09375 4.109375 -1.046875 4.0625 -0.921875 C 4 -0.640625 3.8125 -0.125 3.453125 -0.125 C 3.265625 -0.125 3.21875 -0.296875 3.21875 -0.484375 C 3.21875 -0.609375 3.21875 -0.625 3.25 -0.796875 C 3.28125 -0.875 3.296875 -0.953125 3.296875 -1.03125 C 3.296875 -1.765625 2.0625 -1.765625 1.84375 -1.765625 Z M 1.84375 -1.765625 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-39" + overflow="visible"> + <path + id="path6092" + d="M 1.46875 -0.109375 C 1.46875 0.265625 1.40625 0.71875 0.921875 1.15625 C 0.90625 1.1875 0.875 1.21875 0.875 1.25 C 0.875 1.296875 0.9375 1.34375 0.96875 1.34375 C 1.078125 1.34375 1.671875 0.78125 1.671875 -0.046875 C 1.671875 -0.46875 1.5 -0.796875 1.171875 -0.796875 C 0.953125 -0.796875 0.78125 -0.625 0.78125 -0.40625 C 0.78125 -0.1875 0.9375 0 1.1875 0 C 1.359375 0 1.46875 -0.109375 1.46875 -0.109375 Z M 1.46875 -0.109375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-40" + overflow="visible"> + <path + id="path6095" + d="M 1.734375 -0.734375 C 1.671875 -0.5 1.4375 -0.125 1.078125 -0.125 C 1.0625 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1.015625 -0.5625 1.015625 -0.609375 C 1.015625 -0.765625 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.703125 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.390625 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2.015625 -0.0625 2.390625 0.0625 2.671875 0.0625 C 3.484375 0.0625 3.90625 -0.796875 3.90625 -1 C 3.90625 -1.09375 3.8125 -1.09375 3.796875 -1.09375 C 3.6875 -1.09375 3.6875 -1.046875 3.65625 -0.96875 C 3.515625 -0.484375 3.09375 -0.125 2.703125 -0.125 C 2.421875 -0.125 2.28125 -0.3125 2.28125 -0.578125 C 2.28125 -0.765625 2.453125 -1.390625 2.640625 -2.171875 C 2.78125 -2.703125 3.09375 -2.875 3.328125 -2.875 C 3.34375 -2.875 3.546875 -2.875 3.703125 -2.78125 C 3.484375 -2.71875 3.390625 -2.515625 3.390625 -2.390625 C 3.390625 -2.25 3.515625 -2.140625 3.671875 -2.140625 C 3.828125 -2.140625 4.0625 -2.265625 4.0625 -2.5625 C 4.0625 -2.953125 3.609375 -3.078125 3.34375 -3.078125 C 2.984375 -3.078125 2.703125 -2.84375 2.5625 -2.578125 C 2.4375 -2.859375 2.109375 -3.078125 1.71875 -3.078125 C 0.9375 -3.078125 0.5 -2.21875 0.5 -2 C 0.5 -1.921875 0.59375 -1.921875 0.609375 -1.921875 C 0.703125 -1.921875 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.578125 1.359375 -2.875 1.703125 -2.875 C 1.9375 -2.875 2.125 -2.75 2.125 -2.421875 C 2.125 -2.28125 2.03125 -1.9375 1.96875 -1.6875 Z M 1.734375 -0.734375 " + style="stroke:none;" /> + </symbol> + <symbol + id="textext-e6cead2f-41" + overflow="visible"> + <path + id="path6098" + d="M 3.875 -2.625 C 3.90625 -2.71875 3.90625 -2.734375 3.90625 -2.78125 C 3.90625 -2.921875 3.796875 -3 3.671875 -3 C 3.59375 -3 3.46875 -2.96875 3.390625 -2.84375 C 3.359375 -2.796875 3.3125 -2.578125 3.28125 -2.4375 L 3.125 -1.859375 C 3.09375 -1.6875 2.875 -0.8125 2.84375 -0.734375 C 2.84375 -0.734375 2.53125 -0.125 2 -0.125 C 1.515625 -0.125 1.515625 -0.578125 1.515625 -0.703125 C 1.515625 -1.078125 1.671875 -1.515625 1.890625 -2.0625 C 1.96875 -2.28125 2 -2.359375 2 -2.484375 C 2 -2.8125 1.71875 -3.078125 1.34375 -3.078125 C 0.640625 -3.078125 0.328125 -2.125 0.328125 -2 C 0.328125 -1.921875 0.421875 -1.921875 0.453125 -1.921875 C 0.546875 -1.921875 0.546875 -1.953125 0.578125 -2.03125 C 0.75 -2.609375 1.046875 -2.875 1.328125 -2.875 C 1.4375 -2.875 1.5 -2.796875 1.5 -2.640625 C 1.5 -2.46875 1.4375 -2.328125 1.40625 -2.234375 C 1.0625 -1.375 1 -1.125 1 -0.8125 C 1 -0.703125 1 -0.375 1.265625 -0.140625 C 1.484375 0.03125 1.78125 0.0625 1.96875 0.0625 C 2.25 0.0625 2.5 -0.03125 2.71875 -0.25 C 2.640625 0.140625 2.5625 0.4375 2.265625 0.78125 C 2.078125 1 1.796875 1.21875 1.421875 1.21875 C 1.375 1.21875 1.046875 1.21875 0.90625 1 C 1.28125 0.953125 1.28125 0.625 1.28125 0.609375 C 1.28125 0.390625 1.078125 0.34375 1.015625 0.34375 C 0.84375 0.34375 0.609375 0.484375 0.609375 0.8125 C 0.609375 1.15625 0.9375 1.421875 1.4375 1.421875 C 2.140625 1.421875 3 0.875 3.21875 0 Z M 3.875 -2.625 " + style="stroke:none;" /> + </symbol> + </g> + </defs> + <g + id="textext-e6cead2f-42"> + <g + id="g6101" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6103" + y="134.765" + x="223.432" + xlink:href="#textext-e6cead2f-1" /> + <use + id="use6105" + y="134.765" + x="230.62699" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6107" + y="134.765" + x="235.054369" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6109" + y="134.765" + x="237.821979" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6111" + y="134.765" + x="240.58959" + xlink:href="#textext-e6cead2f-4" /> + <use + id="use6113" + y="134.765" + x="243.910124" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6115" + y="134.765" + x="248.337504" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6117" + y="134.765" + x="252.764883" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6119" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6121" + y="134.765" + x="258.021151" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6123" + y="134.765" + x="261.895606" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6125" + y="134.765" + x="266.322986" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6127" + y="134.765" + x="270.225336" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6129" + y="134.765" + x="274.652715" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6131" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6133" + y="134.765" + x="283.515444" + xlink:href="#textext-e6cead2f-10" /> + <use + id="use6135" + y="134.765" + x="289.050665" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6137" + y="134.765" + x="292.953015" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6139" + y="134.765" + x="295.720626" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6141" + y="134.765" + x="304.02246" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6143" + y="134.765" + x="309.00376" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6145" + y="134.765" + x="312.906111" + xlink:href="#textext-e6cead2f-14" /> + </g> + <g + id="g6147" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6149" + y="134.765" + x="321.481917" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6151" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6153" + y="134.765" + x="326.182271" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6155" + y="134.765" + x="331.163571" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6157" + y="134.765" + x="335.065922" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6159" + y="134.765" + x="337.833532" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6161" + y="134.765" + x="342.814832" + xlink:href="#textext-e6cead2f-16" /> + <use + id="use6163" + y="134.765" + x="348.350053" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6165" + y="134.765" + x="351.117663" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6167" + y="134.765" + x="355.545042" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6169" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6171" + y="134.765" + x="362.8018" + xlink:href="#textext-e6cead2f-18" /> + </g> + <g + id="g6173" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6175" + y="134.765" + x="366.673" + xlink:href="#textext-e6cead2f-27" /> + </g> + <g + id="g6177" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6179" + y="136.259" + x="371.685" + xlink:href="#textext-e6cead2f-37" /> + </g> + <g + id="g6181" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6183" + y="134.765" + x="377.363" + xlink:href="#textext-e6cead2f-28" /> + </g> + <g + id="g6185" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6187" + y="134.765" + x="381.794364" + xlink:href="#textext-e6cead2f-29" /> + </g> + <g + id="g6189" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6191" + y="131.15" + x="387.485" + xlink:href="#textext-e6cead2f-38" /> + </g> + <g + id="g6193" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6195" + y="137.228" + x="387.485" + xlink:href="#textext-e6cead2f-37" /> + </g> + <g + id="g6197" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6199" + y="134.765" + x="393.162" + xlink:href="#textext-e6cead2f-28" /> + </g> + <g + id="g6201" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6203" + y="134.765" + x="397.593364" + xlink:href="#textext-e6cead2f-30" /> + </g> + <g + id="g6205" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6207" + y="134.765" + x="404.242404" + xlink:href="#textext-e6cead2f-28" /> + </g> + <g + id="g6209" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6211" + y="134.765" + x="408.673768" + xlink:href="#textext-e6cead2f-31" /> + </g> + <g + id="g6213" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6215" + y="134.765" + x="414.169138" + xlink:href="#textext-e6cead2f-28" /> + </g> + <g + id="g6217" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6219" + y="134.765" + x="418.600503" + xlink:href="#textext-e6cead2f-32" /> + <use + id="use6221" + y="134.765" + x="422.644322" + xlink:href="#textext-e6cead2f-33" /> + <use + id="use6223" + y="134.765" + x="425.411932" + xlink:href="#textext-e6cead2f-33" /> + <use + id="use6225" + y="134.765" + x="428.179543" + xlink:href="#textext-e6cead2f-33" /> + </g> + <g + id="g6227" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6229" + y="134.765" + x="430.944" + xlink:href="#textext-e6cead2f-19" /> + </g> + <g + id="g6231" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6233" + y="146.72" + x="223.432" + xlink:href="#textext-e6cead2f-34" /> + </g> + <g + id="g6235" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6237" + y="148.214" + x="228.261" + xlink:href="#textext-e6cead2f-37" /> + <use + id="use6239" + y="148.214" + x="233.440441" + xlink:href="#textext-e6cead2f-39" /> + <use + id="use6241" + y="148.214" + x="235.806652" + xlink:href="#textext-e6cead2f-40" /> + </g> + <g + id="g6243" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6245" + y="158.675" + x="223.432" + xlink:href="#textext-e6cead2f-34" /> + </g> + <g + id="g6247" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6249" + y="160.17" + x="228.261" + xlink:href="#textext-e6cead2f-37" /> + <use + id="use6251" + y="160.17" + x="233.440441" + xlink:href="#textext-e6cead2f-39" /> + <use + id="use6253" + y="160.17" + x="235.806652" + xlink:href="#textext-e6cead2f-41" /> + </g> + <g + id="g6255" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6257" + y="170.63" + x="223.432" + xlink:href="#textext-e6cead2f-20" /> + <use + id="use6259" + y="170.63" + x="228.967221" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6261" + y="170.63" + x="234.502441" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6263" + y="170.63" + x="237.270051" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6265" + y="170.63" + x="241.144507" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6267" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6269" + y="170.63" + x="248.889432" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6271" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6273" + y="170.63" + x="253.868739" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6275" + y="170.63" + x="258.850039" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6277" + y="170.63" + x="261.61765" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6279" + y="170.63" + x="267.15287" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6281" + y="170.63" + x="275.454705" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6283" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6285" + y="170.63" + x="283.209593" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6287" + y="170.63" + x="291.511427" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6289" + y="170.63" + x="295.938807" + xlink:href="#textext-e6cead2f-17" /> + <use + id="use6291" + y="170.63" + x="299.868056" + xlink:href="#textext-e6cead2f-23" /> + </g> + <g + id="g6293" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6295" + y="170.63" + x="308.720822" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6297" + y="170.63" + x="313.702122" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6299" + y="170.63" + x="319.237343" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6301" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6303" + y="182.586" + x="223.432" + xlink:href="#textext-e6cead2f-16" /> + </g> + <g + id="g6305" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6307" + y="182.586" + x="229.246173" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6309" + y="182.586" + x="234.227473" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6311" + y="182.586" + x="239.762694" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6313" + y="182.586" + x="245.297914" + xlink:href="#textext-e6cead2f-9" /> + <use + id="use6315" + y="182.586" + x="250.833135" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6317" + y="182.586" + x="255.814435" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6319" + y="182.586" + x="259.716785" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6321" + y="182.586" + x="262.484396" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6323" + y="182.586" + x="266.911775" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6325" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6327" + y="182.586" + x="274.15857" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6329" + y="182.586" + x="279.13987" + xlink:href="#textext-e6cead2f-24" /> + </g> + <g + id="g6331" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6333" + y="182.586" + x="285.501987" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6335" + y="182.586" + x="289.376442" + xlink:href="#textext-e6cead2f-23" /> + <use + id="use6337" + y="182.586" + x="294.911662" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6339" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6341" + y="182.586" + x="302.66655" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6343" + y="182.586" + x="307.09393" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6345" + y="182.586" + x="312.07523" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6347" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6349" + y="182.586" + x="317.331498" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6351" + y="182.586" + x="321.205953" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6353" + y="182.586" + x="325.108303" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6355" + y="182.586" + x="330.089603" + xlink:href="#textext-e6cead2f-3" /> + </g> + <g + id="g6357" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6359" + y="182.586" + x="336.174759" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6361" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6363" + y="182.586" + x="341.154067" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6365" + y="182.586" + x="346.135367" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6367" + y="182.586" + x="348.902977" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6369" + y="182.586" + x="354.438197" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6371" + y="182.586" + x="362.740032" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6373" + y="182.586" + x="367.167411" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6375" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6377" + y="182.586" + x="374.424169" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6379" + y="182.586" + x="378.851549" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6381" + y="182.586" + x="383.278928" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6383" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6385" + y="182.586" + x="388.535196" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6387" + y="182.586" + x="392.409651" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6389" + y="182.586" + x="396.837031" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6391" + y="182.586" + x="400.739381" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6393" + y="182.586" + x="405.16676" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6395" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6397" + y="182.586" + x="414.019527" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6399" + y="182.586" + x="419.000827" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6401" + y="182.586" + x="422.903177" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6403" + y="182.586" + x="427.884477" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6405" + y="182.586" + x="433.419698" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6407" + y="182.586" + x="438.954918" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6409" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6411" + y="182.586" + x="447.817647" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6413" + y="182.586" + x="451.692102" + xlink:href="#textext-e6cead2f-23" /> + <use + id="use6415" + y="182.586" + x="457.227323" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6417" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6419" + y="182.586" + x="464.972248" + xlink:href="#textext-e6cead2f-17" /> + <use + id="use6421" + y="182.586" + x="468.901498" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6423" + y="182.586" + x="473.328877" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6425" + y="182.586" + x="478.310177" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6427" + y="182.586" + x="481.077787" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6429" + y="182.586" + x="486.059087" + xlink:href="#textext-e6cead2f-8" /> + </g> + <g + id="g6431" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6433" + y="182.586" + x="493.278984" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6435" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6437" + y="182.586" + x="497.989301" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6439" + y="182.586" + x="502.970601" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6441" + y="182.586" + x="506.872951" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6443" + y="182.586" + x="509.640562" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6445" + y="182.586" + x="514.621862" + xlink:href="#textext-e6cead2f-16" /> + <use + id="use6447" + y="182.586" + x="520.157082" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6449" + y="182.586" + x="522.924692" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6451" + y="182.586" + x="527.352072" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6453" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6455" + y="194.541" + x="223.432" + xlink:href="#textext-e6cead2f-16" /> + </g> + <g + id="g6457" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6459" + y="194.541" + x="229.246173" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6461" + y="194.541" + x="234.227473" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6463" + y="194.541" + x="239.762694" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6465" + y="194.541" + x="245.297914" + xlink:href="#textext-e6cead2f-9" /> + <use + id="use6467" + y="194.541" + x="250.833135" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6469" + y="194.541" + x="255.814435" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6471" + y="194.541" + x="259.716785" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6473" + y="194.541" + x="262.484396" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6475" + y="194.541" + x="266.911775" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6477" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6479" + y="194.541" + x="275.862175" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6481" + y="194.541" + x="280.843475" + xlink:href="#textext-e6cead2f-24" /> + </g> + <g + id="g6483" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6485" + y="194.541" + x="288.909196" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6487" + y="194.541" + x="292.783651" + xlink:href="#textext-e6cead2f-23" /> + </g> + <g + id="g6489" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6491" + y="194.541" + x="298.308909" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6493" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6495" + y="194.541" + x="307.757439" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6497" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6499" + y="194.541" + x="311.696651" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6501" + y="194.541" + x="315.571106" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6503" + y="194.541" + x="320.552406" + xlink:href="#textext-e6cead2f-25" /> + <use + id="use6505" + y="194.541" + x="325.533706" + xlink:href="#textext-e6cead2f-25" /> + <use + id="use6507" + y="194.541" + x="330.515006" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6509" + y="194.541" + x="334.942386" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6511" + y="194.541" + x="338.844736" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6513" + y="194.541" + x="343.272115" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6515" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6517" + y="194.541" + x="353.828486" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6519" + y="194.541" + x="358.255866" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6521" + y="194.541" + x="363.237166" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6523" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6525" + y="194.541" + x="368.493434" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6527" + y="194.541" + x="372.367889" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6529" + y="194.541" + x="376.270239" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6531" + y="194.541" + x="381.251539" + xlink:href="#textext-e6cead2f-3" /> + </g> + <g + id="g6533" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6535" + y="194.541" + x="389.0403" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6537" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6539" + y="194.541" + x="394.019607" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6541" + y="194.541" + x="399.000907" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6543" + y="194.541" + x="401.768518" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6545" + y="194.541" + x="407.303738" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6547" + y="194.541" + x="415.605573" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6549" + y="194.541" + x="420.032952" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6551" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6553" + y="194.541" + x="428.983352" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6555" + y="194.541" + x="431.750962" + xlink:href="#textext-e6cead2f-21" /> + </g> + <g + id="g6557" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6559" + y="194.541" + x="437.011215" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6561" + y="194.541" + x="441.438594" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6563" + y="194.541" + x="446.419894" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6565" + y="194.541" + x="450.29435" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6567" + y="194.541" + x="454.721729" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6569" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6571" + y="194.541" + x="465.2781" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6573" + y="194.541" + x="470.2594" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6575" + y="194.541" + x="474.16175" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6577" + y="194.541" + x="479.14305" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6579" + y="194.541" + x="484.678271" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6581" + y="194.541" + x="490.213492" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6583" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6585" + y="194.541" + x="500.7599" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6587" + y="194.541" + x="504.634355" + xlink:href="#textext-e6cead2f-23" /> + <use + id="use6589" + y="194.541" + x="510.169576" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6591" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6593" + y="194.541" + x="519.618105" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6595" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6597" + y="194.541" + x="524.607376" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6599" + y="194.541" + x="529.034755" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6601" + y="194.541" + x="531.802365" + xlink:href="#textext-e6cead2f-21" /> + </g> + <g + id="g6603" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6605" + y="194.541" + x="537.052655" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6607" + y="194.541" + x="541.480035" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6609" + y="194.541" + x="544.247645" + xlink:href="#textext-e6cead2f-7" /> + </g> + <g + id="g6611" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6613" + y="194.541" + x="547.85311" + xlink:href="#textext-e6cead2f-14" /> + </g> + <g + id="g6615" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6617" + y="194.541" + x="558.128" + xlink:href="#textext-e6cead2f-29" /> + </g> + <g + id="g6619" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6621" + y="194.541" + x="563.822" + xlink:href="#textext-e6cead2f-4" /> + </g> + <g + id="g6623" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6625" + y="206.496" + x="223.432" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6627" + y="206.496" + x="227.859379" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6629" + y="206.496" + x="232.840679" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6631" + y="206.496" + x="241.142514" + xlink:href="#textext-e6cead2f-10" /> + </g> + <g + id="g6633" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6635" + y="206.496" + x="246.956687" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6637" + y="206.496" + x="251.937987" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6639" + y="206.496" + x="257.473208" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6641" + y="206.496" + x="261.900587" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6643" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6645" + y="206.496" + x="267.156855" + xlink:href="#textext-e6cead2f-7" /> + </g> + <g + id="g6647" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6649" + y="218.451" + x="223.432" + xlink:href="#textext-e6cead2f-16" /> + </g> + <g + id="g6651" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6653" + y="218.451" + x="229.246173" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6655" + y="218.451" + x="234.227473" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6657" + y="218.451" + x="239.762694" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6659" + y="218.451" + x="245.297914" + xlink:href="#textext-e6cead2f-9" /> + <use + id="use6661" + y="218.451" + x="250.833135" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6663" + y="218.451" + x="255.814435" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6665" + y="218.451" + x="259.716785" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6667" + y="218.451" + x="262.484396" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6669" + y="218.451" + x="266.911775" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6671" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6673" + y="218.451" + x="275.902025" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6675" + y="218.451" + x="280.883325" + xlink:href="#textext-e6cead2f-24" /> + </g> + <g + id="g6677" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6679" + y="218.451" + x="288.998859" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6681" + y="218.451" + x="292.873315" + xlink:href="#textext-e6cead2f-23" /> + <use + id="use6683" + y="218.451" + x="298.408535" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6685" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6687" + y="218.451" + x="307.896915" + xlink:href="#textext-e6cead2f-17" /> + <use + id="use6689" + y="218.451" + x="311.826165" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6691" + y="218.451" + x="315.70062" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6693" + y="218.451" + x="320.68192" + xlink:href="#textext-e6cead2f-25" /> + <use + id="use6695" + y="218.451" + x="325.66322" + xlink:href="#textext-e6cead2f-25" /> + <use + id="use6697" + y="218.451" + x="330.64452" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6699" + y="218.451" + x="335.071899" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6701" + y="218.451" + x="338.97425" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6703" + y="218.451" + x="343.401629" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6705" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6707" + y="218.451" + x="354.007813" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6709" + y="218.451" + x="358.435193" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6711" + y="218.451" + x="363.416493" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6713" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6715" + y="218.451" + x="368.67276" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6717" + y="218.451" + x="372.547215" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6719" + y="218.451" + x="376.449566" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6721" + y="218.451" + x="381.430866" + xlink:href="#textext-e6cead2f-3" /> + </g> + <g + id="g6723" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6725" + y="218.451" + x="389.259477" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6727" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6729" + y="218.451" + x="394.248747" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6731" + y="218.451" + x="399.230047" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6733" + y="218.451" + x="401.997657" + xlink:href="#textext-e6cead2f-22" /> + </g> + <g + id="g6735" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6737" + y="218.451" + x="407.522915" + xlink:href="#textext-e6cead2f-12" /> + </g> + <g + id="g6739" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6741" + y="218.451" + x="415.834712" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6743" + y="218.451" + x="420.262092" + xlink:href="#textext-e6cead2f-17" /> + </g> + <g + id="g6745" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6747" + y="218.451" + x="429.252342" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6749" + y="218.451" + x="432.019952" + xlink:href="#textext-e6cead2f-21" /> + </g> + <g + id="g6751" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6753" + y="218.451" + x="437.280205" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6755" + y="218.451" + x="441.707585" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6757" + y="218.451" + x="446.688885" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6759" + y="218.451" + x="450.56334" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6761" + y="218.451" + x="454.990719" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6763" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6765" + y="218.451" + x="465.586941" + xlink:href="#textext-e6cead2f-13" /> + <use + id="use6767" + y="218.451" + x="470.568241" + xlink:href="#textext-e6cead2f-8" /> + <use + id="use6769" + y="218.451" + x="474.470591" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6771" + y="218.451" + x="479.451891" + xlink:href="#textext-e6cead2f-22" /> + <use + id="use6773" + y="218.451" + x="484.987112" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6775" + y="218.451" + x="490.522332" + xlink:href="#textext-e6cead2f-9" /> + </g> + <g + id="g6777" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6779" + y="218.451" + x="501.128516" + xlink:href="#textext-e6cead2f-7" /> + <use + id="use6781" + y="218.451" + x="505.002971" + xlink:href="#textext-e6cead2f-23" /> + <use + id="use6783" + y="218.451" + x="510.538192" + xlink:href="#textext-e6cead2f-2" /> + </g> + <g + id="g6785" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6787" + y="218.451" + x="520.026572" + xlink:href="#textext-e6cead2f-15" /> + </g> + <g + id="g6789" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6791" + y="218.451" + x="525.00588" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6793" + y="218.451" + x="529.433259" + xlink:href="#textext-e6cead2f-3" /> + <use + id="use6795" + y="218.451" + x="532.200869" + xlink:href="#textext-e6cead2f-21" /> + </g> + <g + id="g6797" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6799" + y="218.451" + x="537.461122" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6801" + y="218.451" + x="541.888502" + xlink:href="#textext-e6cead2f-11" /> + <use + id="use6803" + y="218.451" + x="544.656112" + xlink:href="#textext-e6cead2f-7" /> + </g> + <g + id="g6805" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6807" + y="218.451" + x="548.251614" + xlink:href="#textext-e6cead2f-14" /> + </g> + <g + id="g6809" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6811" + y="218.451" + x="558.58" + xlink:href="#textext-e6cead2f-35" /> + </g> + <g + id="g6813" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6815" + y="218.451" + x="563.822" + xlink:href="#textext-e6cead2f-4" /> + </g> + <g + id="g6817" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6819" + y="230.406" + x="223.432" + xlink:href="#textext-e6cead2f-5" /> + <use + id="use6821" + y="230.406" + x="227.859379" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6823" + y="230.406" + x="232.840679" + xlink:href="#textext-e6cead2f-12" /> + <use + id="use6825" + y="230.406" + x="241.142514" + xlink:href="#textext-e6cead2f-10" /> + </g> + <g + id="g6827" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6829" + y="230.406" + x="246.956687" + xlink:href="#textext-e6cead2f-21" /> + <use + id="use6831" + y="230.406" + x="251.937987" + xlink:href="#textext-e6cead2f-6" /> + <use + id="use6833" + y="230.406" + x="257.473208" + xlink:href="#textext-e6cead2f-2" /> + <use + id="use6835" + y="230.406" + x="261.900587" + xlink:href="#textext-e6cead2f-6" /> + </g> + <g + id="g6837" + style="fill:rgb(0%,0%,0%);fill-opacity:1;"> + <use + id="use6839" + y="230.406" + x="267.156855" + xlink:href="#textext-e6cead2f-7" /> + </g> + </g> + </g> + </g> + </g> + <flowRoot + style="fill:black;stroke:none;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;font-family:sans-serif;font-style:normal;font-weight:normal;font-size:20px;line-height:125%;letter-spacing:0px;word-spacing:0px" + id="flowRoot24551" + xml:space="preserve"><flowRegion + id="flowRegion24553"><rect + y="345.25546" + x="544.47217" + height="78.488846" + width="125.865" + id="rect24555" /></flowRegion><flowPara + id="flowPara24557" /></flowRoot> </g> +</svg>