Initial Commit

This commit is contained in:
Thomas Dehaeze 2024-03-19 15:11:22 +01:00
commit 1fe38c4ba3
172 changed files with 11389 additions and 0 deletions

260
.gitignore vendored Normal file
View File

@ -0,0 +1,260 @@
mat/
figures/
ltximg/
slprj/
matlab/slprj/
*.slxc
# ============================================================
# ============================================================
# LATEX
# ============================================================
# ============================================================
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
*.cb
*.cb2
.*.lb
## Intermediate documents:
*.dvi
*.xdv
*-converted-to.*
# these rules might exclude image files for figures etc.
# *.ps
# *.eps
# *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
*.bcf
*.blg
*-blx.aux
*-blx.bib
*.run.xml
## Build tool auxiliary files:
*.fdb_latexmk
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
## Build tool directories for auxiliary files
# latexrun
latex.out/
## Auxiliary and intermediate files from other packages:
# algorithms
*.alg
*.loa
# achemso
acs-*.bib
# amsthm
*.thm
# beamer
*.nav
*.pre
*.snm
*.vrb
# changes
*.soc
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
#(r)(e)ledmac/(r)(e)ledpar
*.end
*.?end
*.[1-9]
*.[1-9][0-9]
*.[1-9][0-9][0-9]
*.[1-9]R
*.[1-9][0-9]R
*.[1-9][0-9][0-9]R
*.eledsec[1-9]
*.eledsec[1-9]R
*.eledsec[1-9][0-9]
*.eledsec[1-9][0-9]R
*.eledsec[1-9][0-9][0-9]
*.eledsec[1-9][0-9][0-9]R
# glossaries
*.acn
*.acr
*.glg
*.glo
*.gls
*.glsdefs
# gnuplottex
*-gnuplottex-*
# gregoriotex
*.gaux
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hyperref
*.brf
# knitr
*-concordance.tex
# TODO Comment the next line if you want to keep your tikz graphics files
*.tikz
*-tikzDictionary
# listings
*.lol
# makeidx
*.idx
*.ilg
*.ind
*.ist
# minitoc
*.maf
*.mlf
*.mlt
*.mtc[0-9]*
*.slf[0-9]*
*.slt[0-9]*
*.stc[0-9]*
# minted
_minted*
*.pyg
# morewrites
*.mw
# nomencl
*.nlg
*.nlo
*.nls
# pax
*.pax
# pdfpcnotes
*.pdfpc
# sagetex
*.sagetex.sage
*.sagetex.py
*.sagetex.scmd
# scrwfile
*.wrt
# sympy
*.sout
*.sympy
sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# thmtools
*.loe
# TikZ & PGF
*.dpth
*.md5
*.auxlock
# todonotes
*.tdo
# easy-todo
*.lod
# xmpincl
*.xmpi
# xindy
*.xdy
# xypic precompiled matrices
*.xyc
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt
*.bak
*.sav
# Texpad
.texpadtmp
# LyX
*.lyx~
# Kile
*.backup
# KBibTeX
*~[0-9]*
# auto folder when using emacs and auctex
./auto/*
*.el
# expex forward references with \gathertags
*-tags.tex
# standalone packages
*.sta

111
.latexmkrc Normal file
View File

@ -0,0 +1,111 @@
#!/bin/env perl
# Shebang is only to get syntax highlighting right across GitLab, GitHub and IDEs.
# This file is not meant to be run, but read by `latexmk`.
# ======================================================================================
# Perl `latexmk` configuration file
# ======================================================================================
# ======================================================================================
# PDF Generation/Building/Compilation
# ======================================================================================
@default_files=('modal-analysis.tex');
# PDF-generating modes are:
# 1: pdflatex, as specified by $pdflatex variable (still largely in use)
# 2: postscript conversion, as specified by the $ps2pdf variable (useless)
# 3: dvi conversion, as specified by the $dvipdf variable (useless)
# 4: lualatex, as specified by the $lualatex variable (best)
# 5: xelatex, as specified by the $xelatex variable (second best)
$pdf_mode = 1;
# Treat undefined references and citations as well as multiply defined references as
# ERRORS instead of WARNINGS.
# This is only checked in the *last* run, since naturally, there are undefined references
# in initial runs.
# This setting is potentially annoying when debugging/editing, but highly desirable
# in the CI pipeline, where such a warning should result in a failed pipeline, since the
# final document is incomplete/corrupted.
#
# However, I could not eradicate all warnings, so that `latexmk` currently fails with
# this option enabled.
# Specifically, `microtype` fails together with `fontawesome`/`fontawesome5`, see:
# https://tex.stackexchange.com/a/547514/120853
# The fix in that answer did not help.
# Setting `verbose=silent` to mute `microtype` warnings did not work.
# Switching between `fontawesome` and `fontawesome5` did not help.
$warnings_as_errors = 0;
# Show used CPU time. Looks like: https://tex.stackexchange.com/a/312224/120853
$show_time = 1;
# Default is 5; we seem to need more owed to the complexity of the document.
# Actual documents probably don't need this many since they won't use all features,
# plus won't be compiling from cold each time.
$max_repeat=7;
# --shell-escape option (execution of code outside of latex) is required for the
#'svg' package.
# It converts raw SVG files to the PDF+PDF_TEX combo using InkScape.
#
# SyncTeX allows to jump between source (code) and output (PDF) in IDEs with support
# (many have it). A value of `1` is enabled (gzipped), `-1` is enabled but uncompressed,
# `0` is off.
# Testing in VSCode w/ LaTeX Workshop only worked for the compressed version.
# Adjust this as needed. Of course, only relevant for local use, no effect on a remote
# CI pipeline (except for slower compilation, probably).
#
# %O and %S will forward Options and the Source file, respectively, given to latexmk.
#
# `set_tex_cmds` applies to all *latex commands (latex, xelatex, lualatex, ...), so
# no need to specify these each. This allows to simply change `$pdf_mode` to get a
# different engine. Check if this works with `latexmk --commands`.
set_tex_cmds("--shell-escape -interaction=nonstopmode --synctex=1 %O %S");
# Use default pdf viewer
$pdf_previewer = 'zathura';
# option 2 is same as 1 (run biber when necessary), but also deletes the
# regeneratable bbl-file in a clenaup (`latexmk -c`). Do not use if original
# bib file is not available!
$bibtex_use = 2; # default: 1
# Change default `biber` call, help catch errors faster/clearer. See
# https://web.archive.org/web/20200526101657/https://www.semipol.de/2018/06/12/latex-best-practices.html#database-entries
$biber = "biber --validate-datamodel %O %S";
# Glossaries
add_cus_dep('glo', 'gls', 0, 'run_makeglossaries');
add_cus_dep('acn', 'acr', 0, 'run_makeglossaries');
sub run_makeglossaries {
if ( $silent ) {
system "makeglossaries -q -s '$_[0].ist' '$_[0]'";
}
else {
system "makeglossaries -s '$_[0].ist' '$_[0]'";
};
}
# ======================================================================================
# Auxiliary Files
# ======================================================================================
# Let latexmk know about generated files, so they can be used to detect if a
# rerun is required, or be deleted in a cleanup.
# loe: List of Examples (KOMAScript)
# lol: List of Listings (`listings` and `minted` packages)
# run.xml: biber runs
# glg: glossaries log
# glstex: generated from glossaries-extra
push @generated_exts, 'loe', 'lol', 'run.xml', 'glstex', 'glo', 'gls', 'glg', 'acn', 'acr', 'alg';
# Also delete the *.glstex files from package glossaries-extra. Problem is,
# that that package generates files of the form "basename-digit.glstex" if
# multiple glossaries are present. Latexmk looks for "basename.glstex" and so
# does not find those. For that purpose, use wildcard.
# Also delete files generated by gnuplot/pgfplots contour plots
# (.dat, .script, .table).
$clean_ext = "%R-*.glstex %R_contourtmp*.*";

Binary file not shown.

After

Width:  |  Height:  |  Size: 180 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 372 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 434 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 257 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="226.342" height="172.059" viewBox="0 0 226.342 172.059">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 4.390625 -2.484375 C 4.390625 -3.53125 3.515625 -4.390625 2.484375 -4.390625 C 1.390625 -4.390625 0.5625 -3.515625 0.5625 -2.484375 C 0.5625 -1.421875 1.421875 -0.5625 2.46875 -0.5625 C 3.546875 -0.5625 4.390625 -1.4375 4.390625 -2.484375 Z M 4.390625 -2.484375 "/>
</g>
<g id="glyph-0-2">
<path d="M 4.234375 2.375 C 4.234375 2.265625 4.171875 2.265625 4.078125 2.265625 C 3.28125 2.203125 2.921875 1.765625 2.828125 1.40625 C 2.796875 1.296875 2.796875 1.28125 2.796875 0.9375 L 2.796875 -0.5625 C 2.796875 -0.859375 2.796875 -1.359375 2.78125 -1.453125 C 2.65625 -2.109375 2.015625 -2.375 1.640625 -2.484375 C 2.796875 -2.8125 2.796875 -3.515625 2.796875 -3.796875 L 2.796875 -5.578125 C 2.796875 -6.296875 2.796875 -6.515625 3.046875 -6.75 C 3.21875 -6.9375 3.453125 -7.171875 4.140625 -7.21875 C 4.1875 -7.21875 4.234375 -7.265625 4.234375 -7.328125 C 4.234375 -7.4375 4.15625 -7.4375 4.03125 -7.4375 C 3.046875 -7.4375 2.15625 -6.921875 2.140625 -6.21875 L 2.140625 -4.390625 C 2.140625 -3.46875 2.140625 -3.3125 1.875 -3.03125 C 1.75 -2.890625 1.46875 -2.625 0.859375 -2.578125 C 0.78125 -2.578125 0.71875 -2.578125 0.71875 -2.484375 C 0.71875 -2.375 0.765625 -2.375 0.875 -2.375 C 1.296875 -2.34375 2.140625 -2.125 2.140625 -1.140625 L 2.140625 0.828125 C 2.140625 1.390625 2.140625 1.734375 2.65625 2.09375 C 3.078125 2.390625 3.71875 2.484375 4.03125 2.484375 C 4.15625 2.484375 4.234375 2.484375 4.234375 2.375 Z M 4.234375 2.375 "/>
</g>
<g id="glyph-0-3">
<path d="M 4.234375 -2.484375 C 4.234375 -2.578125 4.171875 -2.578125 4.078125 -2.578125 C 3.640625 -2.609375 2.796875 -2.828125 2.796875 -3.8125 L 2.796875 -5.78125 C 2.796875 -6.34375 2.796875 -6.6875 2.28125 -7.046875 C 1.859375 -7.34375 1.234375 -7.4375 0.90625 -7.4375 C 0.8125 -7.4375 0.71875 -7.4375 0.71875 -7.328125 C 0.71875 -7.21875 0.765625 -7.21875 0.875 -7.21875 C 1.65625 -7.15625 2.015625 -6.71875 2.109375 -6.359375 C 2.140625 -6.25 2.140625 -6.234375 2.140625 -5.890625 L 2.140625 -4.390625 C 2.140625 -4.09375 2.140625 -3.59375 2.15625 -3.5 C 2.28125 -2.84375 2.921875 -2.578125 3.3125 -2.484375 C 2.140625 -2.140625 2.140625 -1.4375 2.140625 -1.15625 L 2.140625 0.625 C 2.140625 1.34375 2.140625 1.5625 1.90625 1.796875 C 1.71875 1.984375 1.5 2.21875 0.796875 2.265625 C 0.75 2.265625 0.71875 2.3125 0.71875 2.375 C 0.71875 2.484375 0.8125 2.484375 0.90625 2.484375 C 1.90625 2.484375 2.78125 1.96875 2.796875 1.265625 L 2.796875 -0.5625 C 2.796875 -1.484375 2.796875 -1.640625 3.0625 -1.921875 C 3.203125 -2.0625 3.46875 -2.328125 4.09375 -2.375 C 4.15625 -2.375 4.234375 -2.375 4.234375 -2.484375 Z M 4.234375 -2.484375 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 4.90625 -1.421875 C 4.90625 -1.515625 4.828125 -1.515625 4.796875 -1.515625 C 4.703125 -1.515625 4.6875 -1.46875 4.671875 -1.40625 C 4.34375 -0.34375 3.671875 -0.109375 3.34375 -0.109375 C 2.96875 -0.109375 2.796875 -0.421875 2.796875 -0.765625 C 2.796875 -0.984375 2.859375 -1.203125 2.96875 -1.640625 L 3.3125 -2.984375 C 3.375 -3.25 3.59375 -4.15625 4.296875 -4.15625 C 4.34375 -4.15625 4.578125 -4.15625 4.78125 -4.03125 C 4.5 -3.984375 4.3125 -3.734375 4.3125 -3.5 C 4.3125 -3.34375 4.421875 -3.15625 4.6875 -3.15625 C 4.90625 -3.15625 5.21875 -3.328125 5.21875 -3.71875 C 5.21875 -4.234375 4.640625 -4.375 4.296875 -4.375 C 3.71875 -4.375 3.375 -3.859375 3.265625 -3.625 C 3.015625 -4.28125 2.484375 -4.375 2.1875 -4.375 C 1.15625 -4.375 0.59375 -3.09375 0.59375 -2.859375 C 0.59375 -2.75 0.71875 -2.75 0.71875 -2.75 C 0.796875 -2.75 0.828125 -2.78125 0.84375 -2.859375 C 1.171875 -3.90625 1.828125 -4.15625 2.171875 -4.15625 C 2.359375 -4.15625 2.703125 -4.078125 2.703125 -3.5 C 2.703125 -3.1875 2.53125 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.765625 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.578125 2.265625 -0.640625 C 2.375 -0.28125 2.734375 0.109375 3.328125 0.109375 C 4.34375 0.109375 4.90625 -1.171875 4.90625 -1.421875 Z M 4.90625 -1.421875 "/>
</g>
<g id="glyph-1-2">
<path d="M 4.8125 -3.78125 C 4.859375 -3.90625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.5625 -4.265625 C 4.46875 -4.265625 4.3125 -4.203125 4.21875 -4.0625 C 4.203125 -4.015625 4.125 -3.703125 4.078125 -3.53125 L 3.890625 -2.734375 L 3.4375 -0.953125 C 3.390625 -0.796875 2.96875 -0.109375 2.3125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.90625 C 1.703125 -1.359375 1.875 -1.984375 2.203125 -2.859375 C 2.375 -3.265625 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.09375 -4.375 1.59375 -4.375 C 0.65625 -4.375 0.28125 -2.9375 0.28125 -2.859375 C 0.28125 -2.75 0.40625 -2.75 0.40625 -2.75 C 0.5 -2.75 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.859375 1.234375 -4.15625 1.5625 -4.15625 C 1.640625 -4.15625 1.8125 -4.15625 1.8125 -3.84375 C 1.8125 -3.59375 1.71875 -3.34375 1.640625 -3.15625 C 1.25 -2.09375 1.0625 -1.53125 1.0625 -1.0625 C 1.0625 -0.1875 1.6875 0.109375 2.28125 0.109375 C 2.671875 0.109375 3 -0.0625 3.28125 -0.34375 C 3.15625 0.171875 3.03125 0.65625 2.640625 1.1875 C 2.375 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.953125 1.78125 0.796875 1.390625 C 0.953125 1.390625 1.078125 1.390625 1.21875 1.28125 C 1.3125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.5625 2.03125 3.59375 1.125 3.859375 0.015625 Z M 4.8125 -3.78125 "/>
</g>
<g id="glyph-1-3">
<path d="M 4.3125 -1.421875 C 4.3125 -1.46875 4.265625 -1.515625 4.1875 -1.515625 C 4.09375 -1.515625 4.078125 -1.453125 4.046875 -1.390625 C 3.828125 -0.75 3.1875 -0.5625 2.859375 -0.5625 C 2.671875 -0.5625 2.484375 -0.609375 2.28125 -0.6875 C 1.9375 -0.8125 1.796875 -0.859375 1.578125 -0.859375 C 1.578125 -0.859375 1.40625 -0.859375 1.3125 -0.828125 C 1.859375 -1.390625 2.140625 -1.640625 2.5 -1.953125 C 2.5 -1.953125 3.109375 -2.484375 3.46875 -2.84375 C 4.40625 -3.765625 4.625 -4.234375 4.625 -4.28125 C 4.625 -4.375 4.515625 -4.375 4.515625 -4.375 C 4.453125 -4.375 4.421875 -4.359375 4.375 -4.265625 C 4.078125 -3.796875 3.859375 -3.640625 3.625 -3.640625 C 3.390625 -3.640625 3.265625 -3.78125 3.125 -3.953125 C 2.9375 -4.1875 2.765625 -4.375 2.4375 -4.375 C 1.6875 -4.375 1.234375 -3.453125 1.234375 -3.25 C 1.234375 -3.203125 1.265625 -3.140625 1.359375 -3.140625 C 1.453125 -3.140625 1.46875 -3.1875 1.484375 -3.25 C 1.671875 -3.703125 2.25 -3.71875 2.328125 -3.71875 C 2.53125 -3.71875 2.71875 -3.640625 2.953125 -3.5625 C 3.34375 -3.421875 3.453125 -3.421875 3.71875 -3.421875 C 3.359375 -2.984375 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.28125 C 0.765625 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.359375 1.234375 -0.640625 1.546875 -0.640625 C 1.765625 -0.640625 1.875 -0.546875 2.125 -0.25 C 2.28125 -0.046875 2.46875 0.109375 2.75 0.109375 C 3.734375 0.109375 4.3125 -1.15625 4.3125 -1.421875 Z M 4.3125 -1.421875 "/>
</g>
<g id="glyph-1-4">
<path d="M 7.328125 -4.3125 C 7.328125 -5.90625 6.28125 -6.984375 4.796875 -6.984375 C 2.671875 -6.984375 0.484375 -4.734375 0.484375 -2.421875 C 0.484375 -0.78125 1.59375 0.21875 3.015625 0.21875 C 5.125 0.21875 7.328125 -1.953125 7.328125 -4.3125 Z M 6.453125 -4.703125 C 6.453125 -4 6.1875 -2.453125 5.203125 -1.234375 C 4.71875 -0.625 3.90625 -0.046875 3.078125 -0.046875 C 2.09375 -0.046875 1.40625 -0.84375 1.40625 -2.15625 C 1.40625 -2.578125 1.546875 -4.03125 2.3125 -5.1875 C 2.984375 -6.21875 3.96875 -6.734375 4.75 -6.734375 C 5.5625 -6.734375 6.453125 -6.1875 6.453125 -4.703125 Z M 6.453125 -4.703125 "/>
</g>
<g id="glyph-1-5">
<path d="M 4.859375 -2.796875 C 4.859375 -3.71875 4.296875 -4.375 3.53125 -4.375 C 3.046875 -4.375 2.5625 -4.015625 2.234375 -3.640625 C 2.140625 -4.171875 1.71875 -4.375 1.34375 -4.375 C 0.890625 -4.375 0.703125 -4 0.609375 -3.8125 C 0.4375 -3.484375 0.3125 -2.875 0.3125 -2.859375 C 0.3125 -2.75 0.421875 -2.75 0.421875 -2.75 C 0.53125 -2.75 0.53125 -2.765625 0.59375 -2.984375 C 0.765625 -3.6875 0.953125 -4.15625 1.3125 -4.15625 C 1.484375 -4.15625 1.625 -4.078125 1.625 -3.703125 C 1.625 -3.484375 1.59375 -3.375 1.5625 -3.203125 L 0.453125 1.203125 C 0.359375 1.546875 0.34375 1.609375 -0.09375 1.609375 C -0.203125 1.609375 -0.3125 1.609375 -0.3125 1.796875 C -0.3125 1.875 -0.265625 1.921875 -0.1875 1.921875 C 0.078125 1.921875 0.359375 1.890625 0.640625 1.890625 C 0.96875 1.890625 1.3125 1.921875 1.625 1.921875 C 1.671875 1.921875 1.796875 1.921875 1.796875 1.71875 C 1.796875 1.609375 1.703125 1.609375 1.5625 1.609375 C 1.0625 1.609375 1.0625 1.546875 1.0625 1.453125 C 1.0625 1.34375 1.484375 -0.28125 1.5625 -0.53125 C 1.6875 -0.234375 1.96875 0.109375 2.46875 0.109375 C 3.609375 0.109375 4.859375 -1.34375 4.859375 -2.796875 Z M 3.640625 -1.125 C 3.296875 -0.4375 2.828125 -0.109375 2.453125 -0.109375 C 1.796875 -0.109375 1.671875 -0.9375 1.671875 -0.984375 C 1.671875 -0.984375 1.671875 -1.03125 1.703125 -1.15625 L 2.1875 -3.09375 C 2.265625 -3.359375 2.53125 -3.640625 2.703125 -3.78125 C 3.046875 -4.09375 3.34375 -4.15625 3.5 -4.15625 C 3.90625 -4.15625 4.140625 -3.8125 4.140625 -3.234375 C 4.140625 -2.640625 3.8125 -1.5 3.640625 -1.125 Z M 3.640625 -1.125 "/>
</g>
<g id="glyph-1-6">
<path d="M 3.8125 -1.796875 C 3.90625 -2.140625 3.953125 -2.484375 3.953125 -2.8125 C 3.953125 -2.96875 3.9375 -3.125 3.921875 -3.265625 C 3.828125 -3.734375 3.625 -4.125 3.34375 -4.484375 C 2.90625 -5.046875 2.28125 -5.828125 2.28125 -6.265625 C 2.28125 -6.328125 2.296875 -6.390625 2.328125 -6.4375 C 2.375 -6.53125 2.453125 -6.625 2.546875 -6.671875 C 2.65625 -6.71875 2.75 -6.71875 2.859375 -6.71875 C 3.3125 -6.703125 3.59375 -6.390625 3.96875 -6.234375 C 4 -6.21875 4.046875 -6.21875 4.078125 -6.21875 C 4.203125 -6.21875 4.359375 -6.296875 4.421875 -6.421875 C 4.453125 -6.484375 4.484375 -6.546875 4.484375 -6.609375 C 4.484375 -6.734375 4.390625 -6.828125 4.265625 -6.859375 C 3.90625 -6.953125 3.484375 -7.046875 3.125 -7.046875 C 3.046875 -7.046875 2.953125 -7.046875 2.875 -7.03125 C 2.734375 -7 2.578125 -6.96875 2.453125 -6.875 C 2.3125 -6.796875 2.203125 -6.671875 2.140625 -6.53125 C 2.046875 -6.390625 2.015625 -6.21875 2.015625 -6.03125 C 2.015625 -5.515625 2.328125 -4.875 2.625 -4.3125 C 2.21875 -4.234375 1.828125 -4.015625 1.46875 -3.71875 C 0.984375 -3.296875 0.640625 -2.734375 0.5 -2.15625 C 0.453125 -1.953125 0.421875 -1.75 0.421875 -1.5625 C 0.421875 -1.1875 0.515625 -0.859375 0.703125 -0.5625 C 0.96875 -0.15625 1.4375 0.109375 1.984375 0.109375 C 2.859375 0.109375 3.578125 -0.828125 3.8125 -1.796875 Z M 3.171875 -1.609375 C 2.984375 -0.890625 2.625 -0.109375 2 -0.109375 C 1.59375 -0.109375 1.296875 -0.34375 1.15625 -0.671875 C 1.0625 -0.859375 1.03125 -1.0625 1.03125 -1.28125 C 1.03125 -1.546875 1.09375 -1.828125 1.15625 -2.109375 C 1.28125 -2.625 1.484375 -3.15625 1.875 -3.5625 C 2.125 -3.828125 2.421875 -4.015625 2.734375 -4.109375 L 2.765625 -4.0625 C 2.96875 -3.703125 3.140625 -3.328125 3.21875 -2.90625 C 3.265625 -2.75 3.265625 -2.578125 3.265625 -2.421875 C 3.265625 -2.15625 3.234375 -1.875 3.171875 -1.609375 Z M 3.171875 -1.609375 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 3.28125 0 L 3.28125 -0.25 L 3.015625 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.40625 C 2.328125 -4.59375 2.3125 -4.609375 2.109375 -4.609375 C 1.671875 -4.171875 1.046875 -4.15625 0.75 -4.15625 L 0.75 -3.90625 C 0.921875 -3.90625 1.375 -3.90625 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.0625 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</g>
<g id="glyph-2-2">
<path d="M 3.5 -1.265625 L 3.265625 -1.265625 C 3.25 -1.109375 3.171875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.421875 2.515625 -1.75 C 3.03125 -2.171875 3.5 -2.59375 3.5 -3.25 C 3.5 -4.09375 2.765625 -4.609375 1.875 -4.609375 C 1.015625 -4.609375 0.4375 -4 0.4375 -3.359375 C 0.4375 -3.015625 0.734375 -2.96875 0.8125 -2.96875 C 0.96875 -2.96875 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.46875 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.203125 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.828125 -3.8125 2.828125 -3.25 C 2.828125 -2.65625 2.40625 -2.171875 2.171875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.5 -1.265625 "/>
</g>
<g id="glyph-3-0">
</g>
<g id="glyph-3-1">
<path d="M 3.890625 -0.984375 C 3.890625 -1.078125 3.796875 -1.078125 3.78125 -1.078125 C 3.671875 -1.078125 3.671875 -1.046875 3.640625 -0.96875 C 3.5 -0.484375 3.078125 -0.125 2.6875 -0.125 C 2.421875 -0.125 2.265625 -0.3125 2.265625 -0.578125 C 2.265625 -0.75 2.4375 -1.390625 2.625 -2.15625 C 2.765625 -2.6875 3.078125 -2.859375 3.3125 -2.859375 C 3.3125 -2.859375 3.53125 -2.859375 3.6875 -2.765625 C 3.46875 -2.703125 3.375 -2.515625 3.375 -2.390625 C 3.375 -2.234375 3.5 -2.125 3.65625 -2.125 C 3.8125 -2.125 4.046875 -2.265625 4.046875 -2.546875 C 4.046875 -2.9375 3.59375 -3.0625 3.328125 -3.0625 C 2.96875 -3.0625 2.703125 -2.828125 2.546875 -2.5625 C 2.421875 -2.84375 2.109375 -3.0625 1.71875 -3.0625 C 0.9375 -3.0625 0.5 -2.203125 0.5 -2 C 0.5 -1.90625 0.59375 -1.90625 0.609375 -1.90625 C 0.703125 -1.90625 0.703125 -1.9375 0.75 -2.03125 C 0.921875 -2.5625 1.359375 -2.859375 1.6875 -2.859375 C 1.921875 -2.859375 2.109375 -2.734375 2.109375 -2.40625 C 2.109375 -2.265625 2.03125 -1.921875 1.96875 -1.6875 L 1.734375 -0.734375 C 1.65625 -0.5 1.421875 -0.125 1.078125 -0.125 C 1.046875 -0.125 0.84375 -0.125 0.703125 -0.21875 C 0.984375 -0.3125 1 -0.5625 1 -0.609375 C 1 -0.75 0.890625 -0.859375 0.734375 -0.859375 C 0.53125 -0.859375 0.328125 -0.6875 0.328125 -0.4375 C 0.328125 -0.09375 0.71875 0.0625 1.0625 0.0625 C 1.375 0.0625 1.671875 -0.125 1.84375 -0.421875 C 2 -0.0625 2.390625 0.0625 2.65625 0.0625 C 3.46875 0.0625 3.890625 -0.796875 3.890625 -0.984375 Z M 3.890625 -0.984375 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0.289062 0 L 188 0 L 188 171.125 L 0.289062 171.125 Z M 0.289062 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 202 96 L 225.398438 96 L 225.398438 128 L 202 128 Z M 202 96 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(69.999695%, 69.999695%, 100%)" fill-opacity="1" d="M 172.359375 81.417969 L 169.574219 72.441406 C 169.113281 70.957031 168.792969 68.488281 168.855469 66.933594 L 169.265625 57.046875 C 169.332031 55.492188 168.691406 53.175781 167.835938 51.875 L 162.589844 43.886719 C 161.738281 42.585938 160.199219 40.589844 159.160156 39.429688 L 153.046875 32.613281 C 152.007812 31.453125 150.515625 29.429688 149.71875 28.09375 L 144.75 19.78125 C 143.949219 18.445312 142.246094 16.671875 140.941406 15.824219 L 132.964844 10.628906 C 131.660156 9.78125 129.382812 8.777344 127.875 8.386719 L 118.703125 6.015625 C 117.195312 5.625 114.730469 5.085938 113.199219 4.808594 L 104.417969 3.210938 C 102.886719 2.933594 100.382812 2.648438 98.828125 2.574219 L 90.109375 2.171875 C 88.550781 2.097656 86.03125 1.949219 84.480469 1.839844 L 75.449219 1.191406 C 73.894531 1.082031 71.382812 1.160156 69.839844 1.363281 L 60.554688 2.601562 C 59.011719 2.804688 56.824219 3.824219 55.675781 4.871094 L 48.496094 11.40625 C 47.34375 12.453125 45.21875 13.722656 43.753906 14.242188 L 34.765625 17.410156 C 33.300781 17.929688 31.382812 19.378906 30.484375 20.652344 L 25.113281 28.269531 C 24.214844 29.539062 22.65625 31.523438 21.632812 32.695312 L 15.636719 39.546875 C 14.609375 40.71875 13.140625 42.757812 12.351562 44.097656 L 7.613281 52.160156 C 6.824219 53.503906 6.117188 55.851562 6.03125 57.40625 L 5.511719 66.847656 C 5.425781 68.402344 5.015625 70.878906 4.59375 72.378906 L 2.046875 81.398438 C 1.625 82.894531 1.285156 85.375 1.285156 86.929688 L 1.308594 96.449219 C 1.3125 98.007812 1.863281 100.40625 2.535156 101.8125 L 6.691406 110.460938 C 7.367188 111.867188 8.605469 114.058594 9.457031 115.359375 L 14.425781 122.929688 C 15.277344 124.234375 16.695312 126.320312 17.589844 127.597656 L 22.59375 134.734375 C 23.488281 136.007812 24.953125 138.0625 25.871094 139.320312 L 31.222656 146.671875 C 32.140625 147.929688 33.800781 149.816406 34.933594 150.886719 L 41.824219 157.375 C 42.957031 158.441406 45.070312 159.71875 46.542969 160.222656 L 55.472656 163.292969 C 56.945312 163.796875 59.394531 164.316406 60.945312 164.449219 L 70.136719 165.238281 C 71.6875 165.371094 74.183594 165.726562 75.710938 166.027344 L 84.527344 167.777344 C 86.054688 168.078125 88.542969 168.472656 90.089844 168.660156 L 99.660156 169.796875 C 101.207031 169.980469 103.609375 169.613281 105.027344 168.96875 L 113.75 165.027344 C 115.171875 164.386719 117.472656 163.355469 118.898438 162.722656 L 127.289062 158.996094 C 128.714844 158.367188 130.929688 157.171875 132.238281 156.328125 L 140.027344 151.308594 C 141.335938 150.464844 143.078125 148.71875 143.917969 147.410156 L 148.964844 139.511719 C 149.804688 138.199219 151.226562 136.117188 152.144531 134.859375 L 157.300781 127.769531 C 158.21875 126.507812 159.714844 124.476562 160.640625 123.226562 L 166.230469 115.714844 C 167.15625 114.46875 168.335938 112.265625 168.863281 110.800781 L 172.058594 101.878906 C 172.585938 100.414062 173.023438 97.964844 173.042969 96.40625 L 173.160156 86.929688 C 173.179688 85.375 172.820312 82.90625 172.359375 81.417969 Z M 172.359375 81.417969 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 85.533079 2.707752 L 82.732691 11.733408 C 82.269233 13.225901 81.947168 15.708153 82.01001 17.271343 L 82.42241 27.212133 C 82.489179 28.775323 81.84505 31.104398 80.984903 32.412293 L 75.710118 40.444262 C 74.853898 41.752158 73.306419 43.759168 72.261673 44.925669 L 66.114958 51.779355 C 65.070213 52.945856 63.569865 54.98036 62.768632 56.323604 L 57.772707 64.681565 C 56.967546 66.024809 55.255107 67.807946 53.943284 68.660238 L 45.923097 73.883964 C 44.611274 74.736256 42.321476 75.745652 40.805417 76.138414 L 31.58338 78.522475 C 30.067322 78.915237 27.588998 79.457247 26.049373 79.736108 L 17.220098 81.342502 C 15.680473 81.621362 13.162873 81.908078 11.599683 81.982703 L 2.83325 82.387247 C 1.266132 82.461872 -1.267179 82.611121 -2.826441 82.721094 L -11.907084 83.373078 C -13.470274 83.483051 -15.995729 83.404499 -17.547137 83.200263 L -26.883074 81.955209 C -28.434481 81.750974 -30.633945 80.725866 -31.788663 79.673266 L -39.007617 73.102369 C -40.166263 72.049768 -42.302885 70.773294 -43.77574 70.250921 L -52.813178 67.065627 C -54.286033 66.543254 -56.214492 65.086109 -57.117843 63.805707 L -62.518311 56.146861 C -63.421662 54.870387 -64.98878 52.875159 -66.017815 51.696875 L -72.046702 44.807841 C -73.079664 43.629557 -74.556447 41.579343 -75.349824 40.232171 L -80.11402 32.125577 C -80.907398 30.774478 -81.618296 28.413982 -81.704703 26.850792 L -82.227076 17.35775 C -82.313483 15.79456 -82.725883 13.304453 -83.150065 11.79625 L -85.710869 2.72739 C -86.135051 1.223114 -86.476753 -1.270921 -86.476753 -2.834111 L -86.453188 -12.405705 C -86.44926 -13.972823 -85.895467 -16.384377 -85.219917 -17.798318 L -81.040936 -26.494054 C -80.361459 -27.907995 -79.116406 -30.111386 -78.260186 -31.419282 L -73.264262 -39.030997 C -72.408042 -40.34282 -70.982318 -42.440165 -70.082895 -43.724495 L -65.051622 -50.900245 C -64.152198 -52.180647 -62.679343 -54.246571 -61.756354 -55.511263 L -56.375524 -62.903031 C -55.452535 -64.167723 -53.783299 -66.06476 -52.644291 -67.140926 L -45.715981 -73.664692 C -44.576973 -74.736931 -42.452134 -76.021261 -40.971424 -76.527923 L -31.992899 -79.615027 C -30.512189 -80.121689 -28.049575 -80.644062 -26.490313 -80.7776 L -17.248638 -81.570978 C -15.689376 -81.704517 -13.17963 -82.06193 -11.643934 -82.364356 L -2.77931 -84.123927 C -1.243613 -84.426353 1.258277 -84.823042 2.813612 -85.011568 L 12.436265 -86.154503 C 13.9916 -86.339101 16.407082 -85.969905 17.832806 -85.321849 L 26.603167 -81.358887 C 28.032818 -80.714759 30.346182 -79.677869 31.779761 -79.041595 L 40.216275 -75.294652 C 41.649854 -74.662306 43.876811 -73.460457 45.192561 -72.612092 L 53.024223 -67.565109 C 54.339973 -66.716744 56.091689 -64.961101 56.936126 -63.64535 L 62.010602 -55.703716 C 62.855039 -54.384038 64.28469 -52.29062 65.20768 -51.025928 L 70.392129 -43.89731 C 71.315119 -42.628691 72.819395 -40.586332 73.750239 -39.329495 L 79.370654 -31.776695 C 80.301498 -30.523786 81.487638 -28.308612 82.017865 -26.835757 L 85.230653 -17.865088 C 85.760881 -16.392232 86.200774 -13.929619 86.220412 -12.362501 L 86.33824 -2.834111 C 86.357878 -1.270921 85.996538 1.211331 85.533079 2.707752 Z M 85.533079 2.707752 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="197.583344" y="114.504767"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 113.387714 -28.347888 L 131.431171 -28.347888 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 221.207031 112.304688 L 216.785156 110.628906 L 218.253906 112.304688 L 216.785156 113.976562 Z M 221.207031 112.304688 "/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.055186 -0.00108793 L 1.609128 1.683858 L 3.08591 -0.00108793 L 1.609128 -1.682107 Z M 6.055186 -0.00108793 " transform="matrix(0.994561, 0, 0, -0.994561, 215.184781, 112.303605)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="213.153192" y="108.505577"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 113.387714 -28.347888 L 113.387714 -10.304432 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053624 -0.000474325 L 1.607565 1.684472 L 3.088276 -0.000474325 L 1.607565 -1.681493 Z M 6.053624 -0.000474325 " transform="matrix(0, -0.994561, -0.994561, 0, 200.062028, 97.180853)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="203.858028" y="97.813055"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.522795 -28.347888 C 114.522795 -27.71947 114.012205 -27.212808 113.387714 -27.212808 C 112.759296 -27.212808 112.252634 -27.71947 112.252634 -28.347888 C 112.252634 -28.972378 112.759296 -29.479041 113.387714 -29.479041 C 114.012205 -29.479041 114.522795 -28.972378 114.522795 -28.347888 Z M 114.522795 -28.347888 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 117.924108 -28.347888 C 117.924108 -25.842071 115.893532 -23.811494 113.387714 -23.811494 C 110.881897 -23.811494 108.851321 -25.842071 108.851321 -28.347888 C 108.851321 -30.849778 110.881897 -32.880354 113.387714 -32.880354 C 115.893532 -32.880354 117.924108 -30.849778 117.924108 -28.347888 Z M 117.924108 -28.347888 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="186.212532" y="114.436143"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="203.858028" y="123.532395"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-4" x="208.811935" y="123.532395"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="216.645095" y="123.532395"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -42.518903 42.52197 L -18.807901 42.52197 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054275 0.00176994 L 1.608216 1.682789 L 3.088927 0.00176994 L 1.608216 -1.683176 Z M 6.054275 0.00176994 " transform="matrix(0.994561, 0, 0, -0.994561, 65.763812, 41.822073)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="42.525365" y="44.024229"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="40.287603" y="36.098575"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="45.272341" y="37.584449"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="63.843773" y="36.09758"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="68.62359" y="36.09758"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="73.607376" y="37.584449"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="78.100801" y="37.584449"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.521784 42.52197 L 66.232787 42.52197 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054572 0.00176994 L 1.608514 1.682789 L 3.089224 0.00176994 L 1.608514 -1.683176 Z M 6.054572 0.00176994 " transform="matrix(0.994561, 0, 0, -0.994561, 150.341642, 41.822073)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="127.102806" y="44.024229"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="124.86405" y="36.098575"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="129.849783" y="37.584449"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="148.42022" y="36.09758"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="153.200037" y="36.09758"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-3-1" x="158.184817" y="37.584449"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="162.678242" y="37.584449"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -70.868417 42.52197 L 99.212957 42.52197 " transform="matrix(0.994561, 0, 0, -0.994561, 87.291536, 84.110992)"/>
</svg>

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
figs/modal_impact_x.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 457 KiB

BIN
figs/modal_impact_y.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 KiB

BIN
figs/modal_impact_z.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 547 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 514 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,199 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="225.576" height="174.643" viewBox="0 0 225.576 174.643">
<defs>
<g>
<g id="glyph-0-0">
</g>
<g id="glyph-0-1">
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.40625 2.484375 -4.40625 C 1.40625 -4.40625 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.46875 -0.5625 C 3.5625 -0.5625 4.40625 -1.4375 4.40625 -2.484375 Z M 4.40625 -2.484375 "/>
</g>
<g id="glyph-0-2">
<path d="M 4.25 2.375 C 4.25 2.28125 4.1875 2.28125 4.078125 2.265625 C 3.296875 2.21875 2.9375 1.765625 2.84375 1.40625 C 2.8125 1.296875 2.8125 1.28125 2.8125 0.9375 L 2.8125 -0.5625 C 2.8125 -0.859375 2.8125 -1.359375 2.796875 -1.453125 C 2.65625 -2.109375 2.03125 -2.375 1.640625 -2.484375 C 2.8125 -2.828125 2.8125 -3.53125 2.8125 -3.8125 L 2.8125 -5.59375 C 2.8125 -6.3125 2.8125 -6.53125 3.046875 -6.78125 C 3.234375 -6.953125 3.453125 -7.1875 4.15625 -7.234375 C 4.203125 -7.25 4.25 -7.28125 4.25 -7.34375 C 4.25 -7.453125 4.15625 -7.453125 4.046875 -7.453125 C 3.046875 -7.453125 2.171875 -6.953125 2.140625 -6.234375 L 2.140625 -4.40625 C 2.140625 -3.484375 2.140625 -3.3125 1.890625 -3.046875 C 1.75 -2.90625 1.484375 -2.640625 0.859375 -2.59375 C 0.78125 -2.59375 0.71875 -2.578125 0.71875 -2.484375 C 0.71875 -2.390625 0.78125 -2.390625 0.875 -2.375 C 1.296875 -2.34375 2.140625 -2.140625 2.140625 -1.140625 L 2.140625 0.828125 C 2.140625 1.40625 2.140625 1.734375 2.65625 2.109375 C 3.09375 2.40625 3.734375 2.484375 4.046875 2.484375 C 4.15625 2.484375 4.25 2.484375 4.25 2.375 Z M 4.25 2.375 "/>
</g>
<g id="glyph-0-3">
<path d="M 4.25 -2.484375 C 4.25 -2.578125 4.1875 -2.578125 4.078125 -2.59375 C 3.65625 -2.625 2.8125 -2.828125 2.8125 -3.828125 L 2.8125 -5.796875 C 2.8125 -6.375 2.8125 -6.703125 2.296875 -7.078125 C 1.875 -7.359375 1.234375 -7.453125 0.921875 -7.453125 C 0.8125 -7.453125 0.71875 -7.453125 0.71875 -7.34375 C 0.71875 -7.25 0.78125 -7.25 0.875 -7.234375 C 1.65625 -7.1875 2.03125 -6.734375 2.109375 -6.375 C 2.140625 -6.265625 2.140625 -6.25 2.140625 -5.90625 L 2.140625 -4.40625 C 2.140625 -4.109375 2.140625 -3.609375 2.171875 -3.515625 C 2.296875 -2.859375 2.9375 -2.59375 3.3125 -2.484375 C 2.140625 -2.140625 2.140625 -1.4375 2.140625 -1.15625 L 2.140625 0.625 C 2.140625 1.34375 2.140625 1.5625 1.90625 1.8125 C 1.734375 1.984375 1.5 2.21875 0.8125 2.265625 C 0.75 2.28125 0.71875 2.3125 0.71875 2.375 C 0.71875 2.484375 0.8125 2.484375 0.921875 2.484375 C 1.90625 2.484375 2.796875 1.984375 2.8125 1.265625 L 2.8125 -0.5625 C 2.8125 -1.484375 2.8125 -1.65625 3.078125 -1.921875 C 3.203125 -2.0625 3.484375 -2.328125 4.109375 -2.375 C 4.171875 -2.375 4.25 -2.390625 4.25 -2.484375 Z M 4.25 -2.484375 "/>
</g>
<g id="glyph-1-0">
</g>
<g id="glyph-1-1">
<path d="M 4.921875 -1.421875 C 4.921875 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.671875 -0.109375 3.359375 -0.109375 C 2.96875 -0.109375 2.8125 -0.421875 2.8125 -0.765625 C 2.8125 -0.984375 2.875 -1.203125 2.984375 -1.640625 L 3.3125 -3 C 3.375 -3.265625 3.609375 -4.171875 4.296875 -4.171875 C 4.359375 -4.171875 4.59375 -4.171875 4.796875 -4.046875 C 4.515625 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.34375 4.4375 -3.15625 4.703125 -3.15625 C 4.921875 -3.15625 5.234375 -3.34375 5.234375 -3.734375 C 5.234375 -4.25 4.65625 -4.390625 4.3125 -4.390625 C 3.734375 -4.390625 3.390625 -3.859375 3.265625 -3.640625 C 3.015625 -4.296875 2.484375 -4.390625 2.203125 -4.390625 C 1.15625 -4.390625 0.59375 -3.109375 0.59375 -2.859375 C 0.59375 -2.765625 0.71875 -2.765625 0.71875 -2.765625 C 0.796875 -2.765625 0.828125 -2.78125 0.84375 -2.875 C 1.1875 -3.921875 1.84375 -4.171875 2.171875 -4.171875 C 2.359375 -4.171875 2.71875 -4.078125 2.71875 -3.515625 C 2.71875 -3.203125 2.546875 -2.53125 2.171875 -1.140625 C 2.015625 -0.53125 1.671875 -0.109375 1.234375 -0.109375 C 1.171875 -0.109375 0.9375 -0.109375 0.734375 -0.234375 C 0.984375 -0.28125 1.203125 -0.5 1.203125 -0.78125 C 1.203125 -1.046875 0.984375 -1.125 0.828125 -1.125 C 0.53125 -1.125 0.28125 -0.859375 0.28125 -0.546875 C 0.28125 -0.09375 0.78125 0.109375 1.21875 0.109375 C 1.875 0.109375 2.234375 -0.59375 2.265625 -0.640625 C 2.390625 -0.28125 2.75 0.109375 3.34375 0.109375 C 4.359375 0.109375 4.921875 -1.171875 4.921875 -1.421875 Z M 4.921875 -1.421875 "/>
</g>
<g id="glyph-1-2">
<path d="M 4.828125 -3.78125 C 4.875 -3.921875 4.875 -3.9375 4.875 -4.015625 C 4.875 -4.1875 4.734375 -4.28125 4.578125 -4.28125 C 4.484375 -4.28125 4.328125 -4.21875 4.234375 -4.078125 C 4.21875 -4.03125 4.140625 -3.71875 4.09375 -3.53125 L 3.890625 -2.75 L 3.453125 -0.953125 C 3.40625 -0.8125 2.984375 -0.109375 2.328125 -0.109375 C 1.8125 -0.109375 1.703125 -0.546875 1.703125 -0.921875 C 1.703125 -1.375 1.875 -1.984375 2.21875 -2.859375 C 2.375 -3.265625 2.421875 -3.375 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.390625 1.59375 -4.390625 C 0.65625 -4.390625 0.28125 -2.953125 0.28125 -2.859375 C 0.28125 -2.765625 0.40625 -2.765625 0.40625 -2.765625 C 0.5 -2.765625 0.515625 -2.78125 0.5625 -2.9375 C 0.828125 -3.875 1.234375 -4.171875 1.5625 -4.171875 C 1.65625 -4.171875 1.8125 -4.171875 1.8125 -3.859375 C 1.8125 -3.609375 1.71875 -3.34375 1.65625 -3.15625 C 1.25 -2.109375 1.078125 -1.546875 1.078125 -1.078125 C 1.078125 -0.1875 1.703125 0.109375 2.28125 0.109375 C 2.671875 0.109375 3.015625 -0.0625 3.296875 -0.34375 C 3.15625 0.171875 3.046875 0.671875 2.640625 1.1875 C 2.390625 1.53125 2 1.8125 1.546875 1.8125 C 1.40625 1.8125 0.96875 1.78125 0.796875 1.40625 C 0.953125 1.40625 1.078125 1.40625 1.21875 1.28125 C 1.328125 1.1875 1.421875 1.0625 1.421875 0.875 C 1.421875 0.5625 1.15625 0.53125 1.046875 0.53125 C 0.828125 0.53125 0.5 0.6875 0.5 1.171875 C 0.5 1.671875 0.9375 2.03125 1.546875 2.03125 C 2.578125 2.03125 3.59375 1.140625 3.875 0.015625 Z M 4.828125 -3.78125 "/>
</g>
<g id="glyph-1-3">
<path d="M 4.328125 -1.421875 C 4.328125 -1.46875 4.28125 -1.515625 4.203125 -1.515625 C 4.109375 -1.515625 4.09375 -1.453125 4.0625 -1.390625 C 3.828125 -0.75 3.203125 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.5 -0.609375 2.28125 -0.6875 C 1.953125 -0.8125 1.796875 -0.859375 1.59375 -0.859375 C 1.59375 -0.859375 1.40625 -0.859375 1.328125 -0.828125 C 1.859375 -1.40625 2.140625 -1.65625 2.5 -1.953125 C 2.5 -1.953125 3.125 -2.5 3.484375 -2.859375 C 4.421875 -3.78125 4.640625 -4.25 4.640625 -4.296875 C 4.640625 -4.390625 4.53125 -4.390625 4.53125 -4.390625 C 4.46875 -4.390625 4.4375 -4.375 4.375 -4.28125 C 4.078125 -3.8125 3.875 -3.640625 3.640625 -3.640625 C 3.40625 -3.640625 3.28125 -3.796875 3.125 -3.96875 C 2.9375 -4.1875 2.765625 -4.390625 2.4375 -4.390625 C 1.703125 -4.390625 1.25 -3.46875 1.25 -3.265625 C 1.25 -3.203125 1.265625 -3.15625 1.359375 -3.15625 C 1.453125 -3.15625 1.46875 -3.203125 1.484375 -3.265625 C 1.671875 -3.71875 2.25 -3.734375 2.328125 -3.734375 C 2.546875 -3.734375 2.734375 -3.65625 2.96875 -3.578125 C 3.359375 -3.421875 3.46875 -3.421875 3.734375 -3.421875 C 3.375 -3 2.53125 -2.28125 2.34375 -2.125 L 1.453125 -1.296875 C 0.78125 -0.625 0.421875 -0.0625 0.421875 0.015625 C 0.421875 0.109375 0.546875 0.109375 0.546875 0.109375 C 0.625 0.109375 0.640625 0.09375 0.703125 -0.015625 C 0.9375 -0.375 1.234375 -0.640625 1.546875 -0.640625 C 1.78125 -0.640625 1.875 -0.546875 2.125 -0.265625 C 2.296875 -0.046875 2.46875 0.109375 2.765625 0.109375 C 3.75 0.109375 4.328125 -1.15625 4.328125 -1.421875 Z M 4.328125 -1.421875 "/>
</g>
<g id="glyph-1-4">
<path d="M 7.359375 -4.328125 C 7.359375 -5.9375 6.296875 -7 4.8125 -7 C 2.671875 -7 0.484375 -4.75 0.484375 -2.4375 C 0.484375 -0.78125 1.59375 0.21875 3.03125 0.21875 C 5.140625 0.21875 7.359375 -1.953125 7.359375 -4.328125 Z M 6.46875 -4.71875 C 6.46875 -4 6.203125 -2.453125 5.21875 -1.234375 C 4.734375 -0.625 3.921875 -0.046875 3.09375 -0.046875 C 2.109375 -0.046875 1.40625 -0.84375 1.40625 -2.15625 C 1.40625 -2.59375 1.546875 -4.046875 2.3125 -5.203125 C 3 -6.234375 3.96875 -6.75 4.765625 -6.75 C 5.578125 -6.75 6.46875 -6.203125 6.46875 -4.71875 Z M 6.46875 -4.71875 "/>
</g>
<g id="glyph-1-5">
<path d="M 6.21875 -6.109375 C 6.21875 -6.21875 6.140625 -6.265625 6.078125 -6.3125 C 5.859375 -6.453125 5.75 -6.640625 5.671875 -6.875 C 5.640625 -6.96875 5.609375 -7.09375 5.46875 -7.09375 C 5.328125 -7.09375 5.265625 -6.96875 5.265625 -6.890625 C 5.265625 -6.84375 5.34375 -6.515625 5.5 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.109375 C 1.8125 -5.90625 1.984375 -5.90625 2.15625 -5.90625 L 5.34375 -5.90625 C 5.203125 -5.78125 4.875 -5.5 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.125 5.0625 -5.125 C 5.15625 -5.125 5.203125 -5.203125 5.25 -5.25 C 5.375 -5.40625 5.609375 -5.6875 6.046875 -5.90625 C 6.109375 -5.9375 6.21875 -6 6.21875 -6.109375 Z M 6.21875 -6.109375 "/>
</g>
<g id="glyph-1-6">
<path d="M 4.875 -2.796875 C 4.875 -3.734375 4.296875 -4.390625 3.546875 -4.390625 C 3.046875 -4.390625 2.578125 -4.03125 2.25 -3.640625 C 2.140625 -4.1875 1.71875 -4.390625 1.34375 -4.390625 C 0.890625 -4.390625 0.703125 -4 0.609375 -3.828125 C 0.4375 -3.484375 0.3125 -2.890625 0.3125 -2.859375 C 0.3125 -2.765625 0.421875 -2.765625 0.421875 -2.765625 C 0.53125 -2.765625 0.53125 -2.765625 0.59375 -2.984375 C 0.765625 -3.703125 0.96875 -4.171875 1.328125 -4.171875 C 1.484375 -4.171875 1.625 -4.09375 1.625 -3.71875 C 1.625 -3.484375 1.59375 -3.375 1.5625 -3.203125 L 0.453125 1.21875 C 0.375 1.546875 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.921875 -0.1875 1.921875 C 0.078125 1.921875 0.375 1.890625 0.640625 1.890625 C 0.96875 1.890625 1.3125 1.921875 1.625 1.921875 C 1.671875 1.921875 1.8125 1.921875 1.8125 1.734375 C 1.8125 1.625 1.703125 1.625 1.5625 1.625 C 1.078125 1.625 1.078125 1.546875 1.078125 1.453125 C 1.078125 1.34375 1.484375 -0.28125 1.5625 -0.53125 C 1.6875 -0.234375 1.96875 0.109375 2.46875 0.109375 C 3.625 0.109375 4.875 -1.34375 4.875 -2.796875 Z M 3.640625 -1.140625 C 3.3125 -0.4375 2.828125 -0.109375 2.46875 -0.109375 C 1.8125 -0.109375 1.671875 -0.9375 1.671875 -1 C 1.671875 -1 1.671875 -1.03125 1.703125 -1.15625 L 2.203125 -3.09375 C 2.265625 -3.375 2.53125 -3.640625 2.71875 -3.796875 C 3.0625 -4.109375 3.34375 -4.171875 3.515625 -4.171875 C 3.921875 -4.171875 4.15625 -3.828125 4.15625 -3.234375 C 4.15625 -2.65625 3.828125 -1.515625 3.640625 -1.140625 Z M 3.640625 -1.140625 "/>
</g>
<g id="glyph-1-7">
<path d="M 3.828125 -1.8125 C 3.921875 -2.140625 3.96875 -2.5 3.96875 -2.828125 C 3.96875 -2.984375 3.953125 -3.125 3.9375 -3.28125 C 3.84375 -3.75 3.640625 -4.140625 3.359375 -4.484375 C 2.921875 -5.0625 2.296875 -5.84375 2.296875 -6.296875 C 2.296875 -6.34375 2.3125 -6.40625 2.328125 -6.453125 C 2.390625 -6.546875 2.46875 -6.640625 2.546875 -6.6875 C 2.65625 -6.734375 2.765625 -6.75 2.875 -6.75 C 3.3125 -6.734375 3.59375 -6.40625 3.96875 -6.25 C 4.015625 -6.234375 4.046875 -6.234375 4.078125 -6.234375 C 4.21875 -6.234375 4.375 -6.3125 4.4375 -6.453125 C 4.46875 -6.515625 4.484375 -6.5625 4.484375 -6.625 C 4.484375 -6.75 4.40625 -6.859375 4.28125 -6.890625 C 3.921875 -6.96875 3.5 -7.078125 3.140625 -7.078125 C 3.046875 -7.078125 2.96875 -7.0625 2.875 -7.0625 C 2.75 -7.03125 2.59375 -6.984375 2.453125 -6.890625 C 2.328125 -6.8125 2.21875 -6.703125 2.140625 -6.5625 C 2.0625 -6.40625 2.03125 -6.234375 2.03125 -6.046875 C 2.03125 -5.53125 2.328125 -4.890625 2.640625 -4.328125 C 2.21875 -4.25 1.828125 -4.03125 1.484375 -3.734375 C 0.984375 -3.3125 0.640625 -2.75 0.5 -2.171875 C 0.453125 -1.953125 0.421875 -1.765625 0.421875 -1.5625 C 0.421875 -1.1875 0.515625 -0.859375 0.703125 -0.5625 C 0.96875 -0.15625 1.4375 0.109375 2 0.109375 C 2.875 0.109375 3.59375 -0.828125 3.828125 -1.8125 Z M 3.1875 -1.625 C 2.984375 -0.890625 2.640625 -0.109375 2 -0.109375 C 1.59375 -0.109375 1.296875 -0.34375 1.15625 -0.671875 C 1.078125 -0.859375 1.03125 -1.0625 1.03125 -1.28125 C 1.03125 -1.546875 1.09375 -1.84375 1.15625 -2.109375 C 1.296875 -2.640625 1.484375 -3.15625 1.890625 -3.578125 C 2.125 -3.828125 2.4375 -4.03125 2.75 -4.125 L 2.765625 -4.078125 C 2.96875 -3.71875 3.15625 -3.34375 3.234375 -2.921875 C 3.265625 -2.765625 3.28125 -2.59375 3.28125 -2.421875 C 3.28125 -2.171875 3.25 -1.890625 3.1875 -1.625 Z M 3.1875 -1.625 "/>
</g>
<g id="glyph-2-0">
</g>
<g id="glyph-2-1">
<path d="M 3.28125 0 L 3.28125 -0.25 L 3.03125 -0.25 C 2.328125 -0.25 2.328125 -0.34375 2.328125 -0.5625 L 2.328125 -4.421875 C 2.328125 -4.609375 2.3125 -4.609375 2.125 -4.609375 C 1.671875 -4.171875 1.046875 -4.171875 0.765625 -4.171875 L 0.765625 -3.921875 C 0.921875 -3.921875 1.390625 -3.921875 1.765625 -4.109375 L 1.765625 -0.5625 C 1.765625 -0.34375 1.765625 -0.25 1.078125 -0.25 L 0.8125 -0.25 L 0.8125 0 L 2.046875 -0.03125 Z M 3.28125 0 "/>
</g>
<g id="glyph-2-2">
<path d="M 3.515625 -1.265625 L 3.28125 -1.265625 C 3.25 -1.109375 3.1875 -0.703125 3.09375 -0.625 C 3.03125 -0.59375 2.5 -0.59375 2.40625 -0.59375 L 1.125 -0.59375 C 1.859375 -1.234375 2.09375 -1.4375 2.515625 -1.765625 C 3.03125 -2.171875 3.515625 -2.59375 3.515625 -3.265625 C 3.515625 -4.109375 2.78125 -4.609375 1.890625 -4.609375 C 1.015625 -4.609375 0.4375 -4.015625 0.4375 -3.375 C 0.4375 -3.015625 0.734375 -2.984375 0.8125 -2.984375 C 0.96875 -2.984375 1.171875 -3.09375 1.171875 -3.34375 C 1.171875 -3.484375 1.125 -3.71875 0.765625 -3.71875 C 0.984375 -4.21875 1.453125 -4.359375 1.78125 -4.359375 C 2.46875 -4.359375 2.84375 -3.828125 2.84375 -3.265625 C 2.84375 -2.65625 2.40625 -2.171875 2.1875 -1.921875 L 0.5 -0.265625 C 0.4375 -0.203125 0.4375 -0.1875 0.4375 0 L 3.296875 0 Z M 3.515625 -1.265625 "/>
</g>
<g id="glyph-2-3">
<path d="M 3.578125 -1.203125 C 3.578125 -1.75 3.125 -2.28125 2.359375 -2.453125 C 3.09375 -2.71875 3.359375 -3.234375 3.359375 -3.65625 C 3.359375 -4.203125 2.71875 -4.609375 1.953125 -4.609375 C 1.1875 -4.609375 0.59375 -4.234375 0.59375 -3.6875 C 0.59375 -3.453125 0.75 -3.3125 0.953125 -3.3125 C 1.171875 -3.3125 1.3125 -3.484375 1.3125 -3.671875 C 1.3125 -3.875 1.171875 -4.015625 0.953125 -4.03125 C 1.203125 -4.34375 1.671875 -4.421875 1.9375 -4.421875 C 2.25 -4.421875 2.6875 -4.265625 2.6875 -3.65625 C 2.6875 -3.359375 2.59375 -3.046875 2.40625 -2.828125 C 2.171875 -2.5625 1.984375 -2.546875 1.640625 -2.53125 C 1.453125 -2.515625 1.453125 -2.515625 1.40625 -2.515625 C 1.40625 -2.515625 1.34375 -2.5 1.34375 -2.421875 C 1.34375 -2.328125 1.40625 -2.328125 1.515625 -2.328125 L 1.890625 -2.328125 C 2.4375 -2.328125 2.828125 -1.953125 2.828125 -1.203125 C 2.828125 -0.34375 2.328125 -0.078125 1.921875 -0.078125 C 1.640625 -0.078125 1.03125 -0.15625 0.75 -0.5625 C 1.078125 -0.578125 1.140625 -0.8125 1.140625 -0.953125 C 1.140625 -1.1875 0.984375 -1.34375 0.765625 -1.34375 C 0.5625 -1.34375 0.375 -1.21875 0.375 -0.9375 C 0.375 -0.28125 1.09375 0.140625 1.9375 0.140625 C 2.90625 0.140625 3.578125 -0.5 3.578125 -1.203125 Z M 3.578125 -1.203125 "/>
</g>
<g id="glyph-2-4">
<path d="M 3.671875 -1.140625 L 3.671875 -1.390625 L 2.90625 -1.390625 L 2.90625 -4.484375 C 2.90625 -4.640625 2.90625 -4.6875 2.75 -4.6875 C 2.671875 -4.6875 2.640625 -4.6875 2.578125 -4.59375 L 0.265625 -1.390625 L 0.265625 -1.140625 L 2.3125 -1.140625 L 2.3125 -0.5625 C 2.3125 -0.328125 2.3125 -0.25 1.75 -0.25 L 1.5625 -0.25 L 1.5625 0 L 2.609375 -0.03125 L 3.65625 0 L 3.65625 -0.25 L 3.46875 -0.25 C 2.90625 -0.25 2.90625 -0.328125 2.90625 -0.5625 L 2.90625 -1.140625 Z M 2.359375 -1.390625 L 0.53125 -1.390625 L 2.359375 -3.9375 Z M 2.359375 -1.390625 "/>
</g>
</g>
<clipPath id="clip-0">
<path clip-rule="nonzero" d="M 0.0195312 0 L 187 0 L 187 174.285156 L 0.0195312 174.285156 Z M 0.0195312 0 "/>
</clipPath>
<clipPath id="clip-1">
<path clip-rule="nonzero" d="M 202 98 L 225.132812 98 L 225.132812 130 L 202 130 Z M 202 98 "/>
</clipPath>
</defs>
<path fill-rule="nonzero" fill="rgb(69.999695%, 69.999695%, 100%)" fill-opacity="1" d="M 169.675781 83.097656 L 169.609375 74.113281 C 169.597656 72.550781 169.449219 70.027344 169.277344 68.472656 L 168.246094 59.117188 C 168.074219 57.5625 167.359375 55.175781 166.644531 53.789062 L 162.355469 45.425781 C 161.640625 44.035156 160.324219 41.878906 159.417969 40.605469 L 153.992188 33.015625 C 153.085938 31.746094 151.261719 30.066406 149.921875 29.261719 L 141.820312 24.40625 C 140.480469 23.605469 138.414062 22.148438 137.207031 21.160156 L 130.394531 15.570312 C 129.1875 14.578125 127.210938 12.996094 125.976562 12.035156 L 118.449219 6.167969 C 117.214844 5.207031 114.984375 4.140625 113.460938 3.785156 L 104.28125 1.640625 C 102.761719 1.285156 100.285156 1.234375 98.75 1.53125 L 89.332031 3.339844 C 87.796875 3.632812 85.300781 3.691406 83.753906 3.46875 L 74.503906 2.125 C 72.960938 1.902344 70.464844 1.96875 68.933594 2.277344 L 59.753906 4.117188 C 58.222656 4.425781 56.015625 5.492188 54.824219 6.503906 L 47.507812 12.730469 C 46.316406 13.742188 44.136719 14.921875 42.640625 15.367188 L 33.101562 18.191406 C 31.605469 18.632812 29.601562 19.984375 28.628906 21.207031 L 22.707031 28.660156 C 21.734375 29.882812 20.3125 31.96875 19.527344 33.320312 L 14.90625 41.292969 C 14.125 42.644531 12.820312 44.816406 11.992188 46.140625 L 7.058594 54.046875 C 6.230469 55.371094 5.363281 57.695312 5.121094 59.242188 L 3.679688 68.441406 C 3.4375 69.984375 3.121094 72.496094 2.976562 74.050781 L 2.128906 83.109375 C 1.984375 84.664062 1.792969 87.191406 1.707031 88.75 L 1.171875 98.183594 C 1.085938 99.742188 1.511719 102.171875 2.128906 103.605469 L 5.859375 112.289062 C 6.476562 113.726562 7.605469 115.988281 8.378906 117.34375 L 12.867188 125.199219 C 13.644531 126.558594 14.75 128.832031 15.335938 130.277344 L 18.933594 139.152344 C 19.519531 140.601562 20.945312 142.613281 22.113281 143.652344 L 29.164062 149.917969 C 30.332031 150.957031 32.40625 152.375 33.796875 153.089844 L 42.066406 157.332031 C 43.457031 158.042969 45.632812 159.328125 46.929688 160.199219 L 54.699219 165.421875 C 55.992188 166.292969 58.265625 167.339844 59.769531 167.757812 L 68.820312 170.277344 C 70.328125 170.699219 72.800781 171.226562 74.34375 171.457031 L 83.757812 172.871094 C 85.300781 173.105469 87.8125 173.148438 89.363281 172.972656 L 98.847656 171.898438 C 100.398438 171.722656 102.859375 171.191406 104.347656 170.707031 L 113.339844 167.785156 C 114.824219 167.300781 117.089844 166.21875 118.398438 165.363281 L 126.214844 160.269531 C 127.523438 159.417969 129.6875 158.101562 131.046875 157.332031 L 139.046875 152.808594 C 140.40625 152.039062 142.191406 150.351562 143.035156 149.035156 L 148.066406 141.203125 C 148.910156 139.890625 150.558594 138.003906 151.75 136.992188 L 158.992188 130.824219 C 160.179688 129.8125 161.515625 127.78125 161.976562 126.285156 L 164.710938 117.378906 C 165.167969 115.886719 166.121094 113.550781 166.84375 112.164062 L 171.277344 103.605469 C 171.996094 102.21875 172.34375 99.847656 172.050781 98.316406 L 170.226562 88.703125 C 169.933594 87.167969 169.6875 84.660156 169.675781 83.097656 Z M 169.675781 83.097656 "/>
<g clip-path="url(#clip-0)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 83.29207 2.833478 L 83.225528 11.836219 C 83.213785 13.401913 83.065044 15.930508 82.892818 17.488374 L 81.85946 26.862967 C 81.687233 28.420832 80.970928 30.81243 80.254623 32.201984 L 75.956793 40.582361 C 75.240488 41.975828 73.921391 44.136486 73.013288 45.412527 L 67.576416 53.017885 C 66.668313 54.290012 64.840366 55.973133 63.497783 56.779465 L 55.379659 61.644859 C 54.037077 62.447278 51.966447 63.907287 50.756948 64.897589 L 43.930522 70.498859 C 42.721023 71.493075 40.74042 73.07834 39.503522 74.041242 L 31.960791 79.920423 C 30.723893 80.883325 28.488865 81.951911 26.962313 82.308106 L 17.763861 84.457021 C 16.241223 84.813217 13.759598 84.864102 12.221304 84.56662 L 2.784083 82.754329 C 1.245789 82.460761 -1.255407 82.402048 -2.805444 82.625159 L -12.074353 83.971656 C -13.620476 84.194768 -16.121672 84.128226 -17.656052 83.819001 L -26.854504 81.975396 C -28.388885 81.666172 -30.600427 80.597586 -31.794269 79.583799 L -39.125631 73.344508 C -40.319473 72.330721 -42.503616 71.148622 -44.002768 70.702399 L -53.56133 67.872407 C -55.060482 67.430099 -57.068485 66.075774 -58.043129 64.850618 L -63.97711 57.382258 C -64.951754 56.157102 -66.376536 54.0669 -67.163297 52.712575 L -71.793837 44.723621 C -72.576684 43.369296 -73.884038 41.192981 -74.713856 39.866056 L -79.657535 31.943644 C -80.487353 30.616718 -81.356313 28.287748 -81.598996 26.737711 L -83.043348 17.519688 C -83.286031 15.973565 -83.603084 13.456712 -83.747911 11.898846 L -84.5973 2.821735 C -84.742126 1.26387 -84.933924 -1.26864 -85.020037 -2.83042 L -85.556287 -12.283298 C -85.642401 -13.845077 -85.215749 -16.279732 -84.5973 -17.716256 L -80.859205 -26.4176 C -80.240756 -27.858039 -79.109542 -30.124381 -78.334524 -31.482621 L -73.837068 -39.354147 C -73.058135 -40.716301 -71.950406 -42.994386 -71.363271 -44.442653 L -67.758261 -53.335795 C -67.171125 -54.787976 -65.74243 -56.803807 -64.572073 -57.844994 L -57.506879 -64.123427 C -56.336523 -65.164613 -54.258064 -66.58548 -52.864596 -67.301785 L -44.578161 -71.552645 C -43.184693 -72.265035 -41.004464 -73.552819 -39.704938 -74.425693 L -31.919525 -79.659025 C -30.623913 -80.5319 -28.345828 -81.580915 -26.838848 -81.999738 L -17.769565 -84.52442 C -16.25867 -84.947157 -13.780959 -85.475579 -12.234837 -85.706519 L -2.80153 -87.123472 C -1.255407 -87.358326 1.261446 -87.401382 2.815397 -87.225242 L 12.31916 -86.148827 C 13.873111 -85.972687 16.339079 -85.440351 17.830403 -84.954985 L 26.840972 -82.027138 C 28.328381 -81.541773 30.598637 -80.457529 31.909906 -79.600312 L 39.742291 -74.496149 C 41.053559 -73.642846 43.222045 -72.323749 44.584199 -71.552645 L 52.600553 -67.019961 C 53.962706 -66.248856 55.751512 -64.557907 56.596987 -63.238809 L 61.638521 -55.390768 C 62.483996 -54.075585 64.135803 -52.18501 65.329645 -51.171223 L 72.586637 -44.990646 C 73.776564 -43.976859 75.115233 -41.941457 75.577112 -40.442305 L 78.317077 -31.517849 C 78.775042 -30.022611 79.730116 -27.681898 80.454249 -26.292345 L 84.896906 -17.716256 C 85.617125 -16.326703 85.965492 -13.950762 85.671924 -12.416382 L 83.843977 -2.783449 C 83.550409 -1.245155 83.303812 1.267784 83.29207 2.833478 Z M 83.29207 2.833478 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="197.222402" y="116.423012"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 113.388623 -28.347318 L 131.429332 -28.347318 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 220.925781 114.214844 L 216.488281 112.535156 L 217.964844 114.214844 L 216.488281 115.894531 Z M 220.925781 114.214844 "/>
<g clip-path="url(#clip-1)">
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054133 -0.000518319 L 1.607562 1.682603 L 3.087143 -0.000518319 L 1.607562 -1.683639 Z M 6.054133 -0.000518319 " transform="matrix(0.99796, 0, 0, -0.99796, 214.883998, 114.214326)"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-1" x="212.846463" y="110.402319"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 113.388623 -28.347318 L 113.388623 -10.302695 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.052232 -0.00138277 L 1.609575 1.681738 L 3.089156 -0.00138277 L 1.609575 -1.684504 Z M 6.052232 -0.00138277 " transform="matrix(0, -0.99796, -0.99796, 0, 199.709558, 99.039886)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-2" x="203.519529" y="99.674249"/>
</g>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 114.519837 -28.347318 C 114.519837 -27.721041 114.0149 -27.21219 113.388623 -27.21219 C 112.762345 -27.21219 112.253495 -27.721041 112.253495 -28.347318 C 112.253495 -28.973596 112.762345 -29.482446 113.388623 -29.482446 C 114.0149 -29.482446 114.519837 -28.973596 114.519837 -28.347318 Z M 114.519837 -28.347318 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 117.921307 -28.347318 C 117.921307 -25.842208 115.893733 -23.81072 113.388623 -23.81072 C 110.883512 -23.81072 108.852024 -25.842208 108.852024 -28.347318 C 108.852024 -30.852429 110.883512 -32.883917 113.388623 -32.883917 C 115.893733 -32.883917 117.921307 -30.852429 117.921307 -28.347318 Z M 117.921307 -28.347318 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-3" x="185.813723" y="116.354152"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-2" x="203.519529" y="125.481494"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-4" x="208.490368" y="125.481494"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-3" x="216.350301" y="125.481494"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -42.519273 -42.520763 L -18.317558 -30.417949 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054767 -0.000899633 L 1.609945 1.683105 L 3.087488 -0.000952717 L 1.608255 -1.681562 Z M 6.054767 -0.000899633 " transform="matrix(0.892555, -0.446258, -0.446258, -0.892555, 65.739914, 117.54884)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="41.635448" y="130.567099"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="39.468877" y="122.613357"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="39.389339" y="122.613357"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="44.391813" y="124.105308"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-7" x="76.22075" y="116.798245"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="81.096442" y="116.798245"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="81.016904" y="116.798245"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-1" x="86.017723" y="118.290195"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -42.519273 42.519907 L -54.622088 66.721622 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.053509 -0.000688195 L 1.608687 1.683316 L 3.08623 -0.000741279 L 1.610498 -1.683101 Z M 6.053509 -0.000688195 " transform="matrix(-0.446258, -0.892555, -0.892555, 0.446258, 33.310186, 21.87215)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="41.635448" y="45.701578"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="39.468877" y="37.747837"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="39.389339" y="37.747837"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="44.391813" y="39.238789"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-7" x="33.78749" y="17.788637"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="38.663183" y="17.788637"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="38.583645" y="17.788637"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-2" x="43.584464" y="19.279589"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.521397 42.519907 L 66.723113 54.622722 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.055126 -0.000787607 L 1.610304 1.683217 L 3.087846 -0.000840691 L 1.608613 -1.68145 Z M 6.055126 -0.000787607 " transform="matrix(0.892555, -0.446258, -0.446258, -0.892555, 150.606832, 32.681913)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="126.500968" y="45.701578"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="124.335395" y="37.747837"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="124.255857" y="37.747837"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="129.257334" y="39.238789"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-7" x="161.08627" y="31.932724"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="165.961962" y="31.932724"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="165.882424" y="31.932724"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-3" x="170.883243" y="33.423676"/>
</g>
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 42.521397 -42.520763 L 54.620298 -18.319048 " transform="matrix(0.99796, 0, 0, -0.99796, 86.553628, 85.925354)"/>
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.054217 -0.00133293 L 1.609456 1.684581 L 3.086938 -0.00127984 L 1.607645 -1.681836 Z M 6.054217 -0.00133293 " transform="matrix(0.446258, -0.892555, -0.892555, -0.446258, 139.797069, 106.739067)"/>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-0-1" x="126.500968" y="130.567099"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="124.335395" y="122.613357"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="124.255857" y="122.613357"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="129.257334" y="124.105308"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-7" x="146.942183" y="102.654157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-5" x="151.817875" y="102.654157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-1-6" x="151.738337" y="102.654157"/>
</g>
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
<use xlink:href="#glyph-2-4" x="156.739156" y="104.14511"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 183 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 194 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
figs/modal_oros.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 252 KiB

BIN
figs/modal_raw_acc_meas.pdf Normal file

Binary file not shown.

BIN
figs/modal_raw_acc_meas.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

BIN
figs/modal_raw_meas.pdf Normal file

Binary file not shown.

BIN
figs/modal_raw_meas.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 174 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

BIN
img/impacts/hammer_x.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.6 MiB

BIN
img/impacts/hammer_x.mp4 Normal file

Binary file not shown.

BIN
img/impacts/hammer_y.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.7 MiB

BIN
img/impacts/hammer_y.mp4 Normal file

Binary file not shown.

BIN
img/impacts/hammer_z.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 MiB

BIN
img/impacts/hammer_z.mp4 Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

BIN
img/modal_software/MAC.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 76 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 79 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 78 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
img/modes/crop_int.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 785 KiB

67
img/modes/generate_gif.sh Executable file
View File

@ -0,0 +1,67 @@
convert mode1.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode1_crop.gif && \
convert mode2.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode2_crop.gif && \
convert mode3.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode3_crop.gif && \
convert mode4.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode4_crop.gif && \
convert mode5.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode5_crop.gif && \
convert mode6.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode6_crop.gif && \
convert mode7.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode7_crop.gif && \
convert mode8.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode8_crop.gif && \
convert mode9.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode9_crop.gif && \
convert mode10.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode10_crop.gif && \
convert mode11.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode11_crop.gif && \
convert mode12.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode12_crop.gif && \
convert mode13.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode13_crop.gif && \
convert mode14.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode14_crop.gif && \
convert mode15.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode15_crop.gif && \
convert mode16.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode16_crop.gif && \
convert mode17.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode17_crop.gif && \
convert mode18.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode18_crop.gif && \
convert mode19.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode19_crop.gif && \
convert mode20.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode20_crop.gif && \
convert mode21.gif -coalesce -repage 0x0 -crop 200x150+80+40 +repage mode21_crop.gif && \
convert mode1_crop.gif -repage 400x150 -coalesce null: \( mode2_crop.gif -coalesce \) -geometry +200+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 600x150 -coalesce null: \( mode3_crop.gif -coalesce \) -geometry +400+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 800x150 -coalesce null: \( mode4_crop.gif -coalesce \) -geometry +600+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 1000x150 -coalesce null: \( mode5_crop.gif -coalesce \) -geometry +800+0 -layers Composite mode_12345_crop.gif && \
convert mode6_crop.gif -repage 400x150 -coalesce null: \( mode7_crop.gif -coalesce \) -geometry +200+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 600x150 -coalesce null: \( mode8_crop.gif -coalesce \) -geometry +400+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 800x150 -coalesce null: \( mode9_crop.gif -coalesce \) -geometry +600+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 1000x150 -coalesce null: \( mode10_crop.gif -coalesce \) -geometry +800+0 -layers Composite mode_678910_crop.gif && \
convert mode11_crop.gif -repage 400x150 -coalesce null: \( mode12_crop.gif -coalesce \) -geometry +200+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 600x150 -coalesce null: \( mode13_crop.gif -coalesce \) -geometry +400+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 800x150 -coalesce null: \( mode14_crop.gif -coalesce \) -geometry +600+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 1000x150 -coalesce null: \( mode15_crop.gif -coalesce \) -geometry +800+0 -layers Composite mode_1112131415_crop.gif && \
convert mode16_crop.gif -repage 400x150 -coalesce null: \( mode17_crop.gif -coalesce \) -geometry +200+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 600x150 -coalesce null: \( mode18_crop.gif -coalesce \) -geometry +400+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 800x150 -coalesce null: \( mode19_crop.gif -coalesce \) -geometry +600+0 -layers Composite crop_int.gif && \
convert crop_int.gif -repage 1000x150 -coalesce null: \( mode20_crop.gif -coalesce \) -geometry +800+0 -layers Composite mode_1617181920_crop.gif && \
convert mode_12345_crop.gif -repage 1000x300 -coalesce null: \( mode_678910_crop.gif -coalesce \) -geometry +0+150 -layers Composite crop_int.gif
convert crop_int.gif -repage 1000x450 -coalesce null: \( mode_1112131415_crop.gif -coalesce \) -geometry +0+300 -layers Composite crop_int.gif
convert crop_int.gif -repage 1000x600 -coalesce null: \( mode_1617181920_crop.gif -coalesce \) -geometry +0+450 -layers Composite modes.gif
convert modes.gif -fill black -pointsize 25 -gravity South -font /usr/share/fonts/OTF/lmroman12-regular.otf \
-annotate -400+460 ' a) 11Hz '\
-annotate -200+460 ' b) 18Hz '\
-annotate +0+460 ' c) 37Hz '\
-annotate +200+460 ' d) 40Hz '\
-annotate +400+460 ' e) 54Hz '\
-annotate -400+300 ' f) 56Hz '\
-annotate -200+300 ' g) 70Hz '\
-annotate +0+300 ' h) 72Hz '\
-annotate +200+300 ' i) 72Hz '\
-annotate +400+300 ' j) 85Hz '\
-annotate -400+160 ' k) 90Hz '\
-annotate -200+160 ' l) 91Hz '\
-annotate +0+160 ' m) 96Hz '\
-annotate +200+160 ' n) 105Hz '\
-annotate +400+160 ' o) 107Hz '\
-annotate -400+10 ' p) 113Hz '\
-annotate -200+10 ' q) 117Hz '\
-annotate +0+10 ' r) 124Hz '\
-annotate +200+10 ' s) 145Hz '\
-annotate +400+10 ' t) 150Hz '\
modes_annotated.gif

BIN
img/modes/mode1.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 447 KiB

BIN
img/modes/mode10.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

BIN
img/modes/mode10_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
img/modes/mode11.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 402 KiB

BIN
img/modes/mode11_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
img/modes/mode12.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 KiB

BIN
img/modes/mode12_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
img/modes/mode13.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 KiB

BIN
img/modes/mode13_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
img/modes/mode14.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 463 KiB

BIN
img/modes/mode14_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 74 KiB

BIN
img/modes/mode15.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 KiB

BIN
img/modes/mode15_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 68 KiB

BIN
img/modes/mode16.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 409 KiB

BIN
img/modes/mode16_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

BIN
img/modes/mode17.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 406 KiB

BIN
img/modes/mode17_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
img/modes/mode18.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 407 KiB

BIN
img/modes/mode18_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

BIN
img/modes/mode19.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 KiB

BIN
img/modes/mode19_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

BIN
img/modes/mode1_crop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 71 KiB

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