First draft
475
example-phd.org
Normal file
@ -0,0 +1,475 @@
|
||||
#+TITLE: PhD Thesis
|
||||
:DRAWER:
|
||||
#+SUBTITLE: My subtitle
|
||||
|
||||
#+LANGUAGE: en
|
||||
#+EMAIL: dehaeze.thomas@gmail.com
|
||||
#+AUTHOR: Dehaeze Thomas
|
||||
|
||||
#+STARTUP: overview
|
||||
#+DATE: {{{time(%Y-%m-%d)}}}
|
||||
|
||||
#+LATEX_CLASS: scrreprt
|
||||
#+LATEX_CLASS_OPTIONS: [a4paper, twoside, 11pt, onecolumn, bibliography=totoc, openright, appendixprefix=true]
|
||||
|
||||
#+OPTIONS: num:t toc:nil ':t *:t -:t ::t <:nil author:t date:t tags:nil todo:nil |:t H:4 title:nil
|
||||
|
||||
#+SELECT_TAGS: export
|
||||
#+EXCLUDE_TAGS: noexport
|
||||
|
||||
#+BIND: org-latex-bib-compiler "biber"
|
||||
|
||||
#+LATEX_HEADER: \input{config.tex}
|
||||
#+LATEX_HEADER_EXTRA: \input{config_extra.tex}
|
||||
#+LATEX_HEADER_EXTRA: \addbibresource{ref.bib}
|
||||
|
||||
#+PROPERTY: header-args:latex :headers '("\\usepackage{tikz}" "\\usepackage{import}" "\\import{$HOME/Cloud/tikz/org/}{config.tex}")
|
||||
#+PROPERTY: header-args:latex+ :imagemagick t :fit yes
|
||||
#+PROPERTY: header-args:latex+ :iminoptions -scale 100% -density 150
|
||||
#+PROPERTY: header-args:latex+ :imoutoptions -quality 100
|
||||
#+PROPERTY: header-args:latex+ :results file raw replace
|
||||
#+PROPERTY: header-args:latex+ :buffer no
|
||||
#+PROPERTY: header-args:latex+ :eval no-export
|
||||
#+PROPERTY: header-args:latex+ :exports results
|
||||
#+PROPERTY: header-args:latex+ :mkdirp yes
|
||||
#+PROPERTY: header-args:latex+ :output-dir figs
|
||||
#+PROPERTY: header-args:latex+ :post pdf2svg(file=*this*, ext="png")
|
||||
:END:
|
||||
|
||||
* Build :noexport:
|
||||
#+NAME: startblock
|
||||
#+BEGIN_SRC emacs-lisp :results none
|
||||
(add-to-list 'org-latex-classes
|
||||
'("scrreprt"
|
||||
"\\documentclass{scrreprt}"
|
||||
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||
("\\section{%s}" . "\\section*{%s}")
|
||||
("\\subsection{%s}" . "\\subsection*{%s}")
|
||||
("\\paragraph{%s}" . "\\paragraph*{%s}")
|
||||
))
|
||||
|
||||
|
||||
;; Remove automatic org heading labels
|
||||
(defun my-latex-filter-removeOrgAutoLabels (text backend info)
|
||||
"Org-mode automatically generates labels for headings despite explicit use of `#+LABEL`. This filter forcibly removes all automatically generated org-labels in headings."
|
||||
(when (org-export-derived-backend-p backend 'latex)
|
||||
(replace-regexp-in-string "\\\\label{sec:org[a-f0-9]+}\n" "" text)))
|
||||
(add-to-list 'org-export-filter-headline-functions
|
||||
'my-latex-filter-removeOrgAutoLabels)
|
||||
|
||||
;; Remove all org comments in the output LaTeX file
|
||||
(defun delete-org-comments (backend)
|
||||
(loop for comment in (reverse (org-element-map (org-element-parse-buffer)
|
||||
'comment 'identity))
|
||||
do
|
||||
(setf (buffer-substring (org-element-property :begin comment)
|
||||
(org-element-property :end comment))
|
||||
"")))
|
||||
(add-hook 'org-export-before-processing-hook 'delete-org-comments)
|
||||
|
||||
;; Use no package by default
|
||||
(setq org-latex-packages-alist nil)
|
||||
(setq org-latex-default-packages-alist nil)
|
||||
|
||||
;; Do not include the subtitle inside the title
|
||||
(setq org-latex-subtitle-separate t)
|
||||
(setq org-latex-subtitle-format "\\subtitle{%s}")
|
||||
|
||||
(setq org-export-before-parsing-hook '(org-ref-glossary-before-parsing
|
||||
org-ref-acronyms-before-parsing))
|
||||
#+END_SRC
|
||||
|
||||
* Glossary and Acronyms - Tables :ignore:
|
||||
|
||||
#+name: glossary
|
||||
| label | name | description |
|
||||
|-------+-------------------+-----------------------|
|
||||
| ka | \ensuremath{k_a} | Actuator Stiffness in |
|
||||
| phi | \ensuremath{\phi} | A woody bush |
|
||||
|
||||
#+name: acronyms
|
||||
| key | abbreviation | full form |
|
||||
|------+--------------+----------------------------------|
|
||||
| mimo | MIMO | Multiple-Inputs Multiple-Outputs |
|
||||
| siso | SISO | Single-Input Single-Output |
|
||||
| nass | NASS | Nano Active Stabilization System |
|
||||
| lti | LTI | Linear Time Invariant |
|
||||
|
||||
* Title Page :ignore:
|
||||
|
||||
#+begin_export latex
|
||||
\begin{titlepage}
|
||||
\vspace*{5cm}
|
||||
\makeatletter
|
||||
\begin{center}
|
||||
\begin{Huge}
|
||||
\@title
|
||||
\end{Huge}\\[0.1cm]
|
||||
%
|
||||
\begin{Large}
|
||||
\@subtitle
|
||||
\end{Large}\\
|
||||
%
|
||||
\emph{by}\\
|
||||
\@author
|
||||
%
|
||||
\vfill
|
||||
A document submitted in partial fulfillment
|
||||
of the requirements for the degree of\\
|
||||
\emph{Technical Report}\\
|
||||
at\\
|
||||
\textsc{Miskatonic University}
|
||||
\end{center}
|
||||
\makeatother
|
||||
\end{titlepage}
|
||||
|
||||
\newpage
|
||||
\null
|
||||
\thispagestyle{empty}
|
||||
\newpage
|
||||
#+end_export
|
||||
|
||||
* Abstract
|
||||
:PROPERTIES:
|
||||
:UNNUMBERED: notoc
|
||||
:END:
|
||||
|
||||
* Résumé
|
||||
:PROPERTIES:
|
||||
:UNNUMBERED: notoc
|
||||
:END:
|
||||
|
||||
* Acknowledgments
|
||||
:PROPERTIES:
|
||||
:UNNUMBERED: notoc
|
||||
:END:
|
||||
|
||||
* Table of Contents :ignore:
|
||||
|
||||
#+begin_export latex
|
||||
\dominitoc
|
||||
\tableofcontents
|
||||
|
||||
\listoftables
|
||||
\listoffigures
|
||||
#+end_export
|
||||
|
||||
* Introduction
|
||||
* Test
|
||||
\minitoc
|
||||
**** Abstract
|
||||
|
||||
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
||||
|
||||
** Test
|
||||
A list:
|
||||
- acronyms acrshort:nass acrshort:mimo acrshort:lti [[acrfull:siso][Single-Input Single-Output (SISO)]]
|
||||
- glossary terms gls:ka, gls:phi.
|
||||
- Bibliography citations: [[cite:&dehaeze21_activ_dampin_rotat_platf_using;&dehaeze21_mechat_approac_devel_nano_activ_stabil_system]].
|
||||
|
||||
A definition list:
|
||||
- this :: means that
|
||||
- that :: means this
|
||||
|
||||
Some Footnote[fn:1]
|
||||
|
||||
** Section
|
||||
*** Sub section
|
||||
|
||||
This is a sub section.
|
||||
|
||||
*** Sub section
|
||||
Start of the sub section
|
||||
**** Paragraph
|
||||
This is a paragraph
|
||||
**** lksdfjasd
|
||||
|
||||
**** lksdfjasd
|
||||
|
||||
** blabla
|
||||
* Source Blocks
|
||||
\minitoc
|
||||
** Matlab Init :noexport:ignore:
|
||||
#+begin_src matlab :tangle no :exports none :results silent :noweb yes :var current_dir=(file-name-directory buffer-file-name)
|
||||
<<matlab-dir>>
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :exports none :results silent :noweb yes
|
||||
<<matlab-init>>
|
||||
#+end_src
|
||||
|
||||
** Figures
|
||||
#+begin_src matlab
|
||||
t = 0:0.01:5; % Time [s]
|
||||
x = sin(2*pi*t); % Output Voltage [V]
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab
|
||||
figure;
|
||||
plot(t, x);
|
||||
xlabel('Time [s]'); ylabel('Voltage [V]');
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :tangle no :exports results :results file replace
|
||||
exportFig('figs/matlab_fig_example.pdf', 'width', 'wide', 'height', 'normal');
|
||||
#+end_src
|
||||
|
||||
#+name: fig:matlab_fig_example
|
||||
#+caption: Matlab Figure
|
||||
#+RESULTS:
|
||||
[[file:figs/matlab_fig_example.png]]
|
||||
|
||||
** Table Result
|
||||
|
||||
#+begin_src matlab
|
||||
x = 1:10;
|
||||
y = x.^2;
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :exports results :results value table replace :tangle no :post addhdr(*this*)
|
||||
data2orgtable([x', y'], {}, {'$x$', '$y = x^2$'}, ' %.0f ');
|
||||
#+end_src
|
||||
|
||||
#+name: tab:table_name
|
||||
#+caption: Table caption
|
||||
#+RESULTS:
|
||||
| $x$ | $y = x^2$ |
|
||||
|-----+-----------|
|
||||
| 1 | 1 |
|
||||
| 2 | 4 |
|
||||
| 3 | 9 |
|
||||
| 4 | 16 |
|
||||
| 5 | 25 |
|
||||
| 6 | 36 |
|
||||
| 7 | 49 |
|
||||
| 8 | 64 |
|
||||
| 9 | 81 |
|
||||
| 10 | 100 |
|
||||
|
||||
** Inline Results
|
||||
|
||||
Results can be automatically outputed as shown below.
|
||||
|
||||
#+begin_src matlab :results value replace
|
||||
sqrt(2)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: 1.4142
|
||||
|
||||
|
||||
#+begin_src matlab :results output replace
|
||||
y
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: y =
|
||||
: 1 4 9 16 25 36 49 64 81 100
|
||||
|
||||
** Caption and Reference
|
||||
|
||||
Captions can be added to code blocks.
|
||||
Moreover, we can link to specific bode blocks (Listing [[lst:matlab_figure]] or [[lst:matlab_svd]]).
|
||||
|
||||
#+name: lst:matlab_figure
|
||||
#+caption: Code to produce a nice contour plot
|
||||
#+begin_src matlab
|
||||
figure;
|
||||
[X,Y,Z] = peaks;
|
||||
contour(X,Y,Z,20)
|
||||
#+end_src
|
||||
|
||||
#+begin_src matlab :tangle no :exports results :results file replace
|
||||
exportFig('figs/matlab_logo.pdf', 'width', 'small', 'height', 'normal');
|
||||
#+end_src
|
||||
|
||||
#+name: fig:matlab_logo
|
||||
#+caption: Obtained Contour Plot
|
||||
#+RESULTS:
|
||||
[[file:figs/matlab_logo.png]]
|
||||
|
||||
#+name: lst:matlab_svd
|
||||
#+caption: Code to compute the Singular Value Decomposition
|
||||
#+begin_src matlab :results output replace
|
||||
A = [1 2; 3 4; 5 6; 7 8]
|
||||
[U,S,V] = svd(A)
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
#+begin_example
|
||||
A = [1 2; 3 4; 5 6; 7 8]
|
||||
A =
|
||||
1 2
|
||||
3 4
|
||||
5 6
|
||||
7 8
|
||||
[U,S,V] = svd(A)
|
||||
U =
|
||||
-0.152483233310201 -0.82264747222566 -0.394501022283829 -0.379959133877596
|
||||
-0.349918371807964 -0.42137528768458 0.242796545704357 0.800655879510063
|
||||
-0.547353510305727 -0.0201031031435029 0.697909975442776 -0.461434357387336
|
||||
-0.74478864880349 0.381169081397575 -0.546205498863303 0.0407376117548695
|
||||
S =
|
||||
14.2690954992615 0
|
||||
0 0.626828232417541
|
||||
0 0
|
||||
0 0
|
||||
V =
|
||||
-0.641423027995072 0.767187395072177
|
||||
-0.767187395072177 -0.641423027995072
|
||||
#+end_example
|
||||
|
||||
** Source Blocks with Line Numbers
|
||||
|
||||
Citation [[cite:&taghirad13_paral;&dehaeze21_activ_dampin_rotat_platf_using]]
|
||||
|
||||
The Listing [[lst:matlab_line_numbers]] has line numbers as the =-n= option was used.
|
||||
|
||||
Specific lines of codes can be referenced.
|
||||
For instance, the code used to specify the wanted the vertical label is on line [[(test)]].
|
||||
|
||||
#+name: lst:matlab_line_numbers
|
||||
#+caption: Specify Labels
|
||||
#+begin_src matlab +n -r
|
||||
figure;
|
||||
plot(t, x)
|
||||
xlabel('Time [s]');
|
||||
ylabel('Output [V]'); (ref:test)
|
||||
#+end_src
|
||||
|
||||
Numbering can be continued by using =+n= option as shown below.
|
||||
#+begin_src matlab +n
|
||||
figure;
|
||||
plot(t, u)
|
||||
xlabel('Time [s]');
|
||||
ylabel('Input [V]');
|
||||
#+end_src
|
||||
|
||||
* Images
|
||||
\minitoc
|
||||
** Normal Image
|
||||
|
||||
Figure [[fig:general_control_names]] shows the results of the Tikz code of listing [[lst:tikz_test]].
|
||||
|
||||
#+name: lst:tikz_test
|
||||
#+caption: Tikz code that is used to generate Figure [[fig:general_control_names]]
|
||||
#+begin_src latex :file general_control_names.pdf :exports both
|
||||
\begin{tikzpicture}
|
||||
|
||||
% Blocs
|
||||
\node[block={2.0cm}{2.0cm}] (P) {$P$};
|
||||
\node[block={1.5cm}{1.5cm}, below=0.7 of P] (K) {$K$};
|
||||
|
||||
% Input and outputs coordinates
|
||||
\coordinate[] (inputw) at ($(P.south west)!0.75!(P.north west)$);
|
||||
\coordinate[] (inputu) at ($(P.south west)!0.25!(P.north west)$);
|
||||
\coordinate[] (outputz) at ($(P.south east)!0.75!(P.north east)$);
|
||||
\coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);
|
||||
|
||||
% Connections and labels
|
||||
\draw[<-] (inputw) -- ++(-1.5, 0);
|
||||
\draw[<-] (inputu) -- ++(-0.8, 0) |- (K.west);
|
||||
|
||||
\draw[->] (outputz) -- ++(1.5, 0);
|
||||
\draw[->] (outputv) -- ++(0.8, 0) |- (K.east);
|
||||
\end{tikzpicture}
|
||||
#+end_src
|
||||
|
||||
#+name: fig:general_control_names
|
||||
#+caption: General Control Configuration
|
||||
#+RESULTS: lst:tikz_test
|
||||
[[file:figs/general_control_names.png]]
|
||||
|
||||
** Sub Images
|
||||
|
||||
Link to subfigure [[fig:general_control_names_1]].
|
||||
|
||||
#+name: fig:subfigure
|
||||
#+caption: Subfigure Caption
|
||||
#+attr_latex: :environment subfigure :width 0.49\linewidth :align c
|
||||
| file:figs/general_control_names.png | file:figs/general_control_names.png |
|
||||
| <<fig:general_control_names_1>> sub figure caption | <<fig:general_control_names_2>> sub figure caption |
|
||||
|
||||
* Tables
|
||||
\minitoc
|
||||
|
||||
Table [[tab:table_with_equations]] shows a table with some mathematics inside.
|
||||
|
||||
#+name: tab:table_with_equations
|
||||
#+caption: A Simple table with included math
|
||||
| $N$ | $N^2$ | $N^3$ | $N^4$ | $\sqrt n$ | $\sqrt[4]N$ |
|
||||
|-----+-------+-------+-------+-----------+-------------|
|
||||
| 1 | 1 | 1 | 1 | 1 | 1 |
|
||||
| 2 | 4 | 8 | 16 | 1.4142136 | 1.1892071 |
|
||||
| 3 | 9 | 27 | 81 | 1.7320508 | 1.3160740 |
|
||||
#+TBLFM: $2=$1^2::$3=$1^3::$4=$1^4::$5=sqrt($1)::$6=sqrt(sqrt(($1)))
|
||||
|
||||
#+name: tab:table_without_head
|
||||
#+caption: Table without Head
|
||||
| | *1* | *2* | *3* | *4* | *5* |
|
||||
| *1* | 1 | 2 | 3 | 4 | 5 |
|
||||
| *2* | 2 | 4 | 6 | 8 | 10 |
|
||||
| *3* | 3 | 6 | 9 | 12 | 15 |
|
||||
| *4* | 4 | 8 | 12 | 16 | 20 |
|
||||
| *5* | 5 | 10 | 15 | 20 | 25 |
|
||||
|
||||
#+name: tab:table_multiple_heads
|
||||
#+ATTR_LATEX: :font \footnotesize
|
||||
#+caption: Table with multiples groups
|
||||
| | *Classical Control* | *Modern Control* |
|
||||
| <l> | <c> | <c> |
|
||||
|-------------------------+------------------------------------+--------------------------------------|
|
||||
| *Date* | 1930- | 1960- |
|
||||
|-------------------------+------------------------------------+--------------------------------------|
|
||||
| *Tools* | Transfer Functions | State Space formulation |
|
||||
| | Nyquist Plots | Riccati Equations |
|
||||
| | Bode Plots | |
|
||||
| | Phase and Gain margins | |
|
||||
|-------------------------+------------------------------------+--------------------------------------|
|
||||
| *Control Architectures* | Proportional, Integral, Derivative | Full State Feedback |
|
||||
| | Leads, Lags | LQR, LQG |
|
||||
| | | Kalman Filters |
|
||||
|-------------------------+------------------------------------+--------------------------------------|
|
||||
| *Advantages* | Study Stability | Automatic Synthesis |
|
||||
| | Simple | MIMO |
|
||||
| | Natural | Optimization Problem |
|
||||
| | | |
|
||||
| | | |
|
||||
|-------------------------+------------------------------------+--------------------------------------|
|
||||
| *Disadvantages* | Manual Method | No Guaranteed Robustness |
|
||||
| | Only SISO | Difficult Rejection of Perturbations |
|
||||
|
||||
|
||||
* Appendix :ignore:
|
||||
#+latex: \appendix
|
||||
|
||||
* Mathematical formulas
|
||||
* Comments on something
|
||||
* Bibliography :ignore:
|
||||
#+latex: \printbibliography[heading=bibintoc,title={Bibliography}]
|
||||
|
||||
* List of Publications
|
||||
:PROPERTIES:
|
||||
:UNNUMBERED: notoc
|
||||
:END:
|
||||
|
||||
#+begin_export latex
|
||||
\begin{refsection}[ref.bib]
|
||||
% List all papers even if not cited
|
||||
\nocite{*}
|
||||
% Sort by year
|
||||
\newrefcontext[sorting=ynt]
|
||||
% Articles
|
||||
\printbibliography[keyword={publication},heading={subbibliography},title={Articles},env=mypubs,type={article}]
|
||||
% Proceedings
|
||||
\printbibliography[keyword={publication},heading={subbibliography},title={In Proceedings},env=mypubs,type={inproceedings}]
|
||||
\end{refsection}
|
||||
#+end_export
|
||||
|
||||
* Glossary :ignore:
|
||||
#+latex: \printglossary[type=\acronymtype]
|
||||
#+latex: \printglossary
|
||||
|
||||
* Footnotes
|
||||
|
||||
[fn:1]this is a footnote with citation [[cite:&dehaeze21_mechat_approac_devel_nano_activ_stabil_system]].
|
BIN
figs/2dof_rotating_system.pdf
Normal file
BIN
figs/2dof_rotating_system.png
Normal file
After Width: | Height: | Size: 84 KiB |
324
figs/2dof_rotating_system.svg
Normal file
@ -0,0 +1,324 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="256.686" height="254.806" viewBox="0 0 256.686 254.806">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 5.765625 -3.5625 C 5.75 -3.609375 5.703125 -3.703125 5.578125 -3.65625 C 5.46875 -3.59375 5.5 -3.53125 5.53125 -3.46875 C 5.734375 -2.9375 5.5625 -2.640625 5.3125 -2.515625 C 5.046875 -2.390625 4.90625 -2.515625 4.75 -2.625 C 4.609375 -2.78125 4.28125 -3.265625 4.0625 -3.625 C 3.765625 -4.09375 3.4375 -4.609375 2.40625 -4.46875 C 3.0625 -5.046875 3.46875 -5.828125 3.171875 -6.453125 C 2.796875 -7.265625 1.53125 -7.453125 0.34375 -6.890625 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.6875 -0.359375 1.109375 -0.546875 1.484375 -0.734375 C 1.875 -0.921875 2.28125 -1.09375 2.6875 -1.25 L 2.5625 -1.5 L 2.375 -1.40625 C 1.75 -1.125 1.703125 -1.203125 1.5625 -1.5 L 0.609375 -3.53125 L 1.578125 -4 C 2.15625 -4.265625 2.578125 -4.078125 2.625 -4.0625 C 3.015625 -3.875 3.0625 -3.75 3.328125 -3.171875 C 3.578125 -2.640625 3.75 -2.265625 4.28125 -2.15625 C 4.796875 -2.015625 5.296875 -2.25 5.375 -2.28125 C 6.046875 -2.59375 5.859375 -3.375 5.765625 -3.5625 Z M 2.359375 -6.0625 C 2.6875 -5.375 2.5625 -4.703125 1.453125 -4.1875 L 0.515625 -3.734375 L -0.453125 -5.8125 C -0.546875 -6.03125 -0.5625 -6.109375 -0.421875 -6.203125 C -0.375 -6.28125 -0.109375 -6.40625 0.0625 -6.484375 C 0.765625 -6.796875 1.796875 -7.28125 2.359375 -6.0625 Z M 2.359375 -6.0625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 3.109375 -3.5625 C 2.625 -4.625 1.390625 -5.078125 0.375 -4.609375 C -0.65625 -4.125 -1.046875 -2.875 -0.578125 -1.84375 C -0.09375 -0.8125 1.125 -0.421875 2.125 -0.890625 C 3.140625 -1.375 3.578125 -2.5625 3.109375 -3.5625 Z M 2.390625 -3.296875 C 2.53125 -3 2.75 -2.53125 2.71875 -2.09375 C 2.65625 -1.609375 2.359375 -1.265625 2.015625 -1.109375 C 1.625 -0.921875 1.1875 -0.96875 0.84375 -1.1875 C 0.46875 -1.421875 0.265625 -1.875 0.09375 -2.234375 C -0.046875 -2.53125 -0.25 -3 -0.21875 -3.4375 C -0.171875 -3.953125 0.1875 -4.25 0.484375 -4.390625 C 0.9375 -4.609375 1.390625 -4.515625 1.671875 -4.3125 C 2.03125 -4.046875 2.234375 -3.640625 2.390625 -3.296875 Z M 2.390625 -3.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 2.3125 -2.296875 L 2.09375 -2.765625 L 1.859375 -2.65625 L 2.0625 -2.21875 C 2.34375 -1.609375 2.234375 -1.203125 1.953125 -1.078125 C 1.390625 -0.828125 1.0625 -1.53125 0.984375 -1.671875 L -0.0625 -3.9375 L 1.125 -4.484375 L 1.015625 -4.734375 L -0.171875 -4.1875 L -0.875 -5.671875 L -1.09375 -5.5625 C -0.765625 -4.890625 -0.6875 -3.90625 -1.453125 -3.53125 L -1.359375 -3.328125 L -0.65625 -3.65625 L 0.390625 -1.40625 C 0.8125 -0.5 1.5625 -0.625 2 -0.828125 C 2.546875 -1.078125 2.578125 -1.71875 2.3125 -2.296875 Z M 2.3125 -2.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 3.6875 -2.59375 L 3.484375 -3.046875 L 3.265625 -2.953125 L 3.46875 -2.515625 C 3.515625 -2.421875 3.703125 -2.015625 3.40625 -1.875 C 3.109375 -1.734375 2.921875 -2.125 2.875 -2.25 L 2.203125 -3.6875 C 1.984375 -4.140625 1.859375 -4.421875 1.34375 -4.578125 C 0.90625 -4.703125 0.46875 -4.65625 0.046875 -4.453125 C -0.625 -4.140625 -1.015625 -3.53125 -0.78125 -3.015625 C -0.65625 -2.75 -0.421875 -2.6875 -0.21875 -2.796875 C 0.015625 -2.890625 0.078125 -3.140625 -0.015625 -3.359375 C -0.1875 -3.6875 -0.5625 -3.5625 -0.5625 -3.5625 C -0.4375 -3.875 -0.078125 -4.125 0.140625 -4.234375 C 0.5625 -4.421875 1.171875 -4.34375 1.5 -3.625 L 1.625 -3.359375 C 1.203125 -3.140625 0.609375 -2.8125 0.171875 -2.3125 C -0.265625 -1.765625 -0.25 -1.25 -0.109375 -0.921875 C 0.203125 -0.25 1.09375 -0.40625 1.640625 -0.671875 C 2.3125 -0.984375 2.40625 -1.5625 2.421875 -1.828125 C 2.625 -1.515625 2.984375 -1.34375 3.328125 -1.5 C 3.546875 -1.59375 4 -1.953125 3.6875 -2.59375 Z M 2.09375 -2.359375 C 2.453125 -1.578125 1.96875 -1.046875 1.609375 -0.875 C 1.234375 -0.703125 0.734375 -0.8125 0.546875 -1.21875 C 0.296875 -1.75 0.484375 -2.53125 1.71875 -3.171875 Z M 2.09375 -2.359375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 2.046875 -0.953125 L 1.921875 -1.203125 C 1.40625 -0.96875 1.34375 -0.984375 1.203125 -1.296875 L -0.1875 -4.265625 L -1.296875 -3.65625 L -1.1875 -3.40625 C -0.671875 -3.640625 -0.578125 -3.625 -0.390625 -3.21875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.65625 -0.3125 0.8125 -0.421875 1.171875 -0.578125 C 1.296875 -0.640625 1.640625 -0.796875 2.046875 -0.953125 Z M -0.6875 -5.65625 C -0.796875 -5.890625 -1.078125 -5.984375 -1.328125 -5.875 C -1.5625 -5.75 -1.671875 -5.484375 -1.5625 -5.25 C -1.453125 -4.984375 -1.15625 -4.875 -0.921875 -5 C -0.671875 -5.109375 -0.578125 -5.390625 -0.6875 -5.65625 Z M -0.6875 -5.65625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.890625 -2.125 3.703125 -2.03125 3.578125 -2.296875 L 2.84375 -3.84375 C 2.53125 -4.515625 2.421875 -4.75 2.0625 -4.921875 C 1.78125 -5.0625 1.421875 -5.015625 1.015625 -4.828125 C 0.25 -4.46875 0.1875 -3.765625 0.15625 -3.484375 L 0.140625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.140625 -3.65625 0.546875 -4.375 1.0625 -4.625 C 1.515625 -4.84375 1.828125 -4.484375 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.5 -1.671875 C 3.890625 -1.859375 4 -1.890625 4.4375 -2.0625 Z M 4.4375 -2.0625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 2.515625 -5.15625 C 2.453125 -5.3125 2.21875 -5.515625 1.890625 -5.375 C 1.65625 -5.265625 1.34375 -4.984375 1.203125 -4.578125 C 0.875 -4.640625 0.515625 -4.609375 0.1875 -4.4375 C -0.59375 -4.078125 -0.90625 -3.265625 -0.609375 -2.625 C -0.421875 -2.21875 -0.046875 -2.03125 0.125 -1.984375 C 0.125 -1.9375 0.03125 -1.5625 0.203125 -1.1875 C 0.328125 -0.921875 0.59375 -0.671875 0.90625 -0.640625 C 0.546875 -0.3125 0.359375 0.140625 0.53125 0.53125 C 0.796875 1.09375 1.8125 1.1875 2.859375 0.703125 C 3.859375 0.234375 4.5 -0.578125 4.21875 -1.203125 C 4.046875 -1.546875 3.734375 -1.828125 3.34375 -1.890625 C 2.765625 -1.953125 2.296875 -1.734375 1.515625 -1.375 C 1.359375 -1.296875 1.109375 -1.1875 1.015625 -1.15625 C 0.75 -1.109375 0.515625 -1.25 0.390625 -1.515625 C 0.328125 -1.65625 0.3125 -1.78125 0.328125 -1.921875 C 0.609375 -1.875 0.90625 -1.890625 1.28125 -2.0625 C 2.0625 -2.421875 2.390625 -3.25 2.09375 -3.890625 C 1.90625 -4.296875 1.53125 -4.46875 1.375 -4.515625 C 1.5625 -4.953125 1.9375 -5.125 2.046875 -5.171875 C 2.015625 -5.140625 1.96875 -5.0625 2.046875 -4.90625 C 2.078125 -4.828125 2.21875 -4.703125 2.40625 -4.796875 C 2.515625 -4.84375 2.59375 -4.984375 2.515625 -5.15625 Z M 1.46875 -3.59375 C 1.546875 -3.40625 1.921875 -2.625 1.1875 -2.28125 C 0.46875 -1.9375 0.09375 -2.71875 0.015625 -2.90625 C -0.09375 -3.140625 -0.203125 -3.421875 -0.15625 -3.6875 C -0.109375 -3.90625 0.03125 -4.125 0.265625 -4.234375 C 1 -4.578125 1.375 -3.78125 1.46875 -3.59375 Z M 3.765625 -1 C 3.984375 -0.53125 3.53125 0.125 2.765625 0.484375 C 1.96875 0.859375 1.1875 0.75 0.984375 0.296875 C 0.921875 0.171875 0.75 -0.40625 1.453125 -0.734375 L 2.1875 -1.078125 C 2.46875 -1.203125 3.453125 -1.65625 3.765625 -1 Z M 3.765625 -1 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path d="M 3.453125 -3.4375 C 3.234375 -3.90625 2.921875 -4.1875 2.609375 -4.328125 C 2.046875 -4.625 1.640625 -4.53125 1.046875 -4.40625 L 0.265625 -4.265625 C -0.46875 -4.09375 -0.921875 -4.53125 -1.078125 -4.890625 C -1.328125 -5.421875 -1.140625 -6.15625 -0.46875 -6.484375 C 0.578125 -6.96875 1.359375 -6.375 1.875 -5.609375 C 1.953125 -5.46875 1.984375 -5.4375 2.09375 -5.484375 C 2.203125 -5.53125 2.171875 -5.578125 2.09375 -5.75 L 1.359375 -7.328125 C 1.28125 -7.484375 1.25 -7.546875 1.15625 -7.5 C 1.09375 -7.46875 1.109375 -7.453125 1.078125 -7.359375 C 1.046875 -7.140625 1.078125 -7.296875 1 -6.75 C 0.796875 -6.84375 0.1875 -7.046875 -0.578125 -6.703125 C -1.53125 -6.25 -1.859375 -5.203125 -1.46875 -4.375 C -1.171875 -3.75 -0.609375 -3.515625 -0.5625 -3.5 C -0.03125 -3.3125 0.15625 -3.34375 1.203125 -3.578125 C 1.9375 -3.71875 2.03125 -3.734375 2.421875 -3.59375 C 2.421875 -3.59375 2.84375 -3.421875 3.0625 -2.9375 C 3.328125 -2.390625 3.21875 -1.59375 2.46875 -1.25 C 1.859375 -0.953125 0.59375 -0.671875 -0.09375 -2 C -0.15625 -2.109375 -0.171875 -2.15625 -0.28125 -2.109375 C -0.390625 -2.0625 -0.359375 -1.984375 -0.28125 -1.828125 L 0.453125 -0.265625 C 0.515625 -0.109375 0.546875 -0.03125 0.640625 -0.078125 C 0.703125 -0.109375 0.703125 -0.125 0.71875 -0.234375 C 0.765625 -0.453125 0.71875 -0.296875 0.796875 -0.84375 C 1.515625 -0.59375 2.203125 -0.796875 2.59375 -0.984375 C 3.59375 -1.453125 3.859375 -2.578125 3.453125 -3.4375 Z M 3.453125 -3.4375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 3.015625 -2.59375 C 3 -2.640625 2.921875 -2.671875 2.859375 -2.640625 C 2.765625 -2.609375 2.78125 -2.53125 2.796875 -2.5 C 2.875 -1.53125 2.171875 -1.1875 2.0625 -1.125 C 1.671875 -0.953125 1.234375 -1.015625 0.90625 -1.203125 C 0.453125 -1.46875 0.234375 -1.953125 0.078125 -2.296875 L 2.390625 -3.375 C 2.5625 -3.453125 2.609375 -3.484375 2.53125 -3.65625 C 2.140625 -4.484375 1.3125 -5.046875 0.265625 -4.5625 C -0.71875 -4.109375 -1.0625 -2.90625 -0.59375 -1.890625 C -0.109375 -0.828125 1.140625 -0.4375 2.125 -0.890625 C 3.125 -1.359375 3.109375 -2.40625 3.015625 -2.59375 Z M 1.96875 -3.40625 L -0.015625 -2.484375 C -0.515625 -3.765625 0.140625 -4.234375 0.375 -4.34375 C 0.828125 -4.546875 1.46875 -4.453125 1.96875 -3.40625 Z M 1.96875 -3.40625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 4.4375 -2.0625 L 4.3125 -2.3125 C 3.75 -2.0625 3.671875 -2.09375 3.484375 -2.484375 L 2.140625 -5.359375 L 0.96875 -4.703125 L 1.078125 -4.453125 C 1.625 -4.71875 1.734375 -4.6875 1.921875 -4.296875 L 2.578125 -2.859375 C 2.921875 -2.140625 2.75 -1.421875 2.171875 -1.140625 C 1.5 -0.828125 1.296875 -1.171875 1.09375 -1.609375 L -0.15625 -4.28125 L -1.34375 -3.625 L -1.234375 -3.375 C -0.609375 -3.671875 -0.59375 -3.640625 -0.25 -2.921875 L 0.3125 -1.703125 C 0.5625 -1.171875 0.71875 -0.828125 1.21875 -0.71875 C 1.53125 -0.671875 1.90625 -0.78125 2.234375 -0.9375 C 2.640625 -1.125 2.9375 -1.484375 2.96875 -2.078125 L 2.984375 -2.09375 L 3.296875 -1.4375 Z M 4.4375 -2.0625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 2.515625 -2.4375 C 2.34375 -2.8125 2.078125 -2.953125 1.8125 -3.046875 C 1.40625 -3.1875 1.09375 -3.125 0.4375 -2.9375 C 0.21875 -2.890625 -0.421875 -2.71875 -0.640625 -3.1875 C -0.765625 -3.4375 -0.734375 -3.859375 0 -4.203125 C 0.890625 -4.609375 1.25 -3.984375 1.359375 -3.765625 C 1.421875 -3.6875 1.4375 -3.640625 1.53125 -3.6875 C 1.65625 -3.734375 1.640625 -3.796875 1.5625 -3.9375 L 1.203125 -4.71875 C 1.140625 -4.859375 1.09375 -4.9375 0.984375 -4.890625 C 0.9375 -4.875 0.9375 -4.875 0.875 -4.734375 C 0.875 -4.703125 0.828125 -4.59375 0.796875 -4.515625 C 0.46875 -4.578125 0.1875 -4.53125 -0.09375 -4.390625 C -1.171875 -3.890625 -1.15625 -3.171875 -0.96875 -2.765625 C -0.84375 -2.484375 -0.609375 -2.34375 -0.34375 -2.25 C 0.03125 -2.125 0.375 -2.21875 0.828125 -2.328125 C 1.28125 -2.4375 1.4375 -2.46875 1.671875 -2.4375 C 1.78125 -2.390625 2.0625 -2.34375 2.203125 -2.03125 C 2.546875 -1.3125 1.71875 -0.9375 1.609375 -0.875 C 0.78125 -0.5 0.25 -1.109375 -0.046875 -1.5 C -0.109375 -1.546875 -0.15625 -1.59375 -0.25 -1.5625 C -0.375 -1.5 -0.34375 -1.421875 -0.28125 -1.28125 L 0.203125 -0.25 C 0.265625 -0.109375 0.3125 -0.046875 0.421875 -0.09375 C 0.46875 -0.125 0.46875 -0.125 0.546875 -0.34375 C 0.546875 -0.40625 0.578125 -0.5625 0.609375 -0.609375 C 1.109375 -0.421875 1.5 -0.609375 1.703125 -0.6875 C 2.6875 -1.15625 2.765625 -1.90625 2.515625 -2.4375 Z M 2.515625 -2.4375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 3.53125 -3.78125 C 3.046875 -4.8125 1.875 -5.234375 0.921875 -4.78125 C 0.484375 -4.578125 0.15625 -4.21875 0 -3.75 L -0.234375 -4.25 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.6875 -3.640625 -0.640625 -3.609375 -0.46875 -3.25 L 1.296875 0.546875 C 1.46875 0.90625 1.390625 0.953125 0.84375 1.203125 L 0.96875 1.46875 C 1.34375 1.265625 1.5 1.1875 1.890625 1 C 2.28125 0.828125 2.375 0.796875 2.828125 0.59375 L 2.703125 0.328125 C 2.171875 0.59375 2.078125 0.625 1.90625 0.265625 L 1.28125 -1.078125 C 1.609375 -0.96875 2 -0.828125 2.546875 -1.078125 C 3.5 -1.53125 4.015625 -2.71875 3.53125 -3.78125 Z M 2.84375 -3.453125 C 3.265625 -2.53125 3.046875 -1.5625 2.390625 -1.25 C 2.03125 -1.078125 1.609375 -1.15625 1.296875 -1.34375 C 1.109375 -1.453125 1.09375 -1.484375 1.03125 -1.625 L 0.1875 -3.421875 C 0.234375 -4.015625 0.625 -4.390625 0.96875 -4.546875 C 1.59375 -4.828125 2.421875 -4.34375 2.84375 -3.453125 Z M 2.84375 -3.453125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 4.375 -2.046875 L 4.25 -2.296875 C 3.703125 -2.03125 3.609375 -2.0625 3.421875 -2.453125 L 1.125 -7.390625 L -0.03125 -6.71875 L 0.078125 -6.484375 C 0.625 -6.75 0.75 -6.71875 0.921875 -6.328125 L 1.734375 -4.578125 C 1.671875 -4.625 1.109375 -4.875 0.46875 -4.578125 C -0.53125 -4.109375 -1.03125 -2.921875 -0.546875 -1.859375 C -0.078125 -0.859375 1.140625 -0.4375 2.09375 -0.875 C 2.6875 -1.15625 2.890625 -1.65625 2.953125 -1.890625 L 3.203125 -1.390625 Z M 2.703125 -2.453125 C 2.765625 -2.296875 2.78125 -2.28125 2.734375 -2.046875 C 2.671875 -1.5625 2.359375 -1.234375 2.03125 -1.078125 C 1.6875 -0.921875 1.28125 -0.96875 0.90625 -1.21875 C 0.515625 -1.453125 0.296875 -1.921875 0.171875 -2.1875 C 0 -2.578125 -0.171875 -3.015625 -0.109375 -3.453125 C -0.03125 -3.78125 0.15625 -4.203125 0.609375 -4.40625 C 0.9375 -4.5625 1.34375 -4.546875 1.703125 -4.328125 C 1.859375 -4.25 1.875 -4.234375 1.9375 -4.09375 Z M 2.703125 -2.453125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 3.328125 -6.453125 C 2.9375 -7.265625 1.78125 -7.5625 0.671875 -7.046875 L -2.25 -5.6875 L -2.140625 -5.453125 L -1.953125 -5.53125 C -1.328125 -5.828125 -1.28125 -5.734375 -1.140625 -5.4375 L 0.84375 -1.171875 C 0.984375 -0.875 1.015625 -0.78125 0.390625 -0.484375 L 0.203125 -0.40625 L 0.328125 -0.15625 C 0.671875 -0.359375 1.125 -0.5625 1.5 -0.734375 C 1.875 -0.921875 2.328125 -1.125 2.703125 -1.265625 L 2.578125 -1.515625 L 2.390625 -1.421875 C 1.765625 -1.140625 1.734375 -1.21875 1.59375 -1.515625 L 0.703125 -3.421875 L 2.0625 -4.0625 C 3.1875 -4.59375 3.6875 -5.671875 3.328125 -6.453125 Z M 2.5 -6.078125 C 2.671875 -5.71875 3.078125 -4.828125 1.734375 -4.1875 L 0.5625 -3.640625 L -0.453125 -5.8125 C -0.578125 -6.09375 -0.59375 -6.171875 -0.21875 -6.34375 L 0.5625 -6.703125 C 1.90625 -7.34375 2.328125 -6.453125 2.5 -6.078125 Z M 2.5 -6.078125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 2.125 -0.984375 L 2 -1.234375 C 1.46875 -0.984375 1.359375 -0.9375 1.1875 -1.3125 L -1.140625 -6.328125 L -2.28125 -5.671875 L -2.171875 -5.4375 C -1.625 -5.6875 -1.515625 -5.65625 -1.34375 -5.265625 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.6875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.765625 1.71875 -0.8125 2.125 -0.984375 Z M 2.125 -0.984375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 0.578125 -6.53125 C 0.421875 -6.84375 -0.015625 -6.953125 -0.46875 -6.75 C -1.078125 -6.453125 -1.515625 -5.65625 -1.140625 -4.859375 L -0.703125 -3.921875 L -1.359375 -3.625 L -1.25 -3.375 L -0.59375 -3.671875 L 0.625 -1.046875 C 0.796875 -0.671875 0.703125 -0.640625 0.171875 -0.390625 L 0.296875 -0.140625 C 0.71875 -0.359375 0.8125 -0.421875 1.234375 -0.609375 L 2.265625 -1.0625 L 2.140625 -1.3125 L 1.984375 -1.234375 C 1.390625 -0.953125 1.328125 -1.03125 1.1875 -1.328125 L -0.03125 -3.9375 L 0.921875 -4.390625 L 0.8125 -4.640625 L -0.15625 -4.1875 L -0.59375 -5.109375 C -0.9375 -5.84375 -0.703125 -6.390625 -0.375 -6.546875 C -0.28125 -6.578125 -0.1875 -6.609375 -0.078125 -6.625 C -0.15625 -6.546875 -0.234375 -6.390625 -0.140625 -6.1875 C -0.046875 -5.96875 0.1875 -5.890625 0.390625 -5.984375 C 0.59375 -6.078125 0.671875 -6.3125 0.578125 -6.53125 Z M 0.578125 -6.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 1.59375 -4.5 C 1.46875 -4.75 1.125 -4.875 0.75 -4.703125 C 0.25 -4.46875 0.078125 -3.984375 0.125 -3.40625 L -0.265625 -4.234375 L -1.390625 -3.609375 L -1.28125 -3.359375 C -0.71875 -3.625 -0.625 -3.59375 -0.4375 -3.203125 L 0.5625 -1.03125 C 0.734375 -0.65625 0.65625 -0.609375 0.109375 -0.359375 L 0.234375 -0.109375 C 0.6875 -0.328125 0.765625 -0.390625 1.171875 -0.578125 L 2.21875 -1.03125 L 2.09375 -1.28125 L 1.9375 -1.21875 C 1.34375 -0.9375 1.28125 -1.015625 1.140625 -1.3125 L 0.578125 -2.53125 C 0.40625 -2.859375 -0.046875 -4.109375 0.890625 -4.546875 L 0.890625 -4.53125 C 0.859375 -4.515625 0.78125 -4.34375 0.875 -4.15625 C 0.984375 -3.9375 1.21875 -3.875 1.40625 -3.96875 C 1.578125 -4.046875 1.703125 -4.25 1.59375 -4.5 Z M 1.59375 -4.5 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 6.75 -3.15625 L 6.625 -3.40625 C 6.21875 -3.203125 6.015625 -3.109375 5.890625 -3.375 L 5.15625 -4.921875 C 4.84375 -5.625 4.734375 -5.84375 4.328125 -6.03125 C 4.0625 -6.140625 3.6875 -6.078125 3.328125 -5.90625 C 2.75 -5.640625 2.5 -5.125 2.484375 -4.578125 C 2.171875 -5.015625 1.703125 -5.15625 1.015625 -4.828125 C 0.375 -4.53125 0.171875 -3.921875 0.171875 -3.484375 L 0.15625 -3.484375 L -0.21875 -4.265625 L -1.34375 -3.625 L -1.234375 -3.375 C -0.6875 -3.640625 -0.578125 -3.609375 -0.390625 -3.21875 L 0.609375 -1.046875 C 0.78125 -0.671875 0.703125 -0.640625 0.15625 -0.375 L 0.28125 -0.125 C 0.671875 -0.328125 0.8125 -0.421875 1.1875 -0.59375 C 1.578125 -0.78125 1.703125 -0.8125 2.140625 -1 L 2.015625 -1.25 C 1.46875 -1 1.390625 -0.953125 1.21875 -1.328125 L 0.53125 -2.796875 C 0.125 -3.671875 0.5625 -4.390625 1.0625 -4.625 C 1.5 -4.828125 1.78125 -4.578125 2.0625 -4 L 2.921875 -2.125 C 3.09375 -1.75 3 -1.703125 2.46875 -1.453125 L 2.59375 -1.203125 C 2.96875 -1.40625 3.109375 -1.484375 3.515625 -1.671875 C 3.890625 -1.859375 4.015625 -1.890625 4.453125 -2.078125 L 4.328125 -2.328125 C 3.78125 -2.078125 3.703125 -2.03125 3.53125 -2.40625 L 2.84375 -3.875 C 2.4375 -4.75 2.875 -5.46875 3.359375 -5.6875 C 3.796875 -5.90625 4.09375 -5.65625 4.375 -5.078125 L 5.234375 -3.203125 C 5.40625 -2.828125 5.3125 -2.78125 4.78125 -2.546875 L 4.90625 -2.296875 C 5.296875 -2.484375 5.421875 -2.5625 5.8125 -2.75 C 6.203125 -2.9375 6.328125 -2.96875 6.75 -3.15625 Z M 6.75 -3.15625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 2.703125 -5.21875 L 2.59375 -5.46875 C 2.34375 -5.3125 2.078125 -5.203125 1.96875 -5.140625 C 1.75 -5.046875 1.5 -4.9375 1.28125 -4.859375 L 1.390625 -4.609375 C 1.765625 -4.765625 1.90625 -4.46875 1.90625 -4.4375 C 1.953125 -4.34375 1.96875 -4.25 1.953125 -4.171875 L 2.03125 -1.84375 L 0.140625 -3.546875 C 0.046875 -3.640625 0.03125 -3.703125 0.03125 -3.703125 C -0.078125 -3.921875 0.1875 -4.046875 0.359375 -4.125 L 0.25 -4.375 L -0.640625 -3.921875 C -0.671875 -3.90625 -1.140625 -3.6875 -1.453125 -3.578125 L -1.34375 -3.328125 C -0.984375 -3.5 -0.8125 -3.5625 -0.609375 -3.390625 L 2.0625 -0.96875 L 2.09375 -0.390625 C 2.109375 0.125 2.140625 0.765625 1.609375 1.03125 C 1.40625 1.109375 1.21875 1.09375 1.1875 1.078125 C 1.25 1.03125 1.4375 0.875 1.3125 0.59375 C 1.203125 0.390625 0.984375 0.328125 0.8125 0.421875 C 0.609375 0.515625 0.515625 0.703125 0.625 0.90625 C 0.796875 1.28125 1.28125 1.421875 1.6875 1.234375 C 2.21875 0.96875 2.34375 0.34375 2.34375 -0.1875 L 2.21875 -4.3125 C 2.1875 -4.5625 2.203125 -4.953125 2.703125 -5.21875 Z M 2.703125 -5.21875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 4.40625 -2.484375 C 4.40625 -3.546875 3.53125 -4.421875 2.484375 -4.421875 C 1.40625 -4.421875 0.5625 -3.53125 0.5625 -2.484375 C 0.5625 -1.421875 1.4375 -0.5625 2.484375 -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-2-0">
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M 4.5625 -7.390625 L 3.984375 -9.03125 C 3.90625 -9.28125 3.859375 -9.265625 3.640625 -9.15625 L -0.78125 -7.09375 C -0.96875 -7.015625 -1.046875 -6.96875 -0.953125 -6.796875 C -0.921875 -6.6875 -0.84375 -6.734375 -0.671875 -6.8125 C -0.34375 -6.953125 -0.09375 -7.078125 -0.015625 -6.921875 C 0 -6.890625 0.015625 -6.875 0.046875 -6.703125 L 1.09375 -1.359375 C 1.15625 -0.984375 1.171875 -0.890625 0.46875 -0.5625 C 0.3125 -0.484375 0.21875 -0.4375 0.296875 -0.265625 C 0.34375 -0.15625 0.453125 -0.21875 0.484375 -0.21875 L 1.65625 -0.8125 L 3.015625 -1.40625 C 3.09375 -1.4375 3.203125 -1.5 3.125 -1.671875 C 3.09375 -1.734375 3.015625 -1.734375 3.015625 -1.734375 C 2.984375 -1.734375 2.96875 -1.734375 2.765625 -1.625 C 2.5625 -1.53125 2.515625 -1.515625 2.28125 -1.421875 C 2.015625 -1.34375 1.96875 -1.359375 1.921875 -1.484375 C 1.921875 -1.484375 1.890625 -1.546875 1.875 -1.703125 L 1.375 -4.21875 L 2.25 -4.625 C 2.9375 -4.9375 3.0625 -4.828125 3.1875 -4.546875 C 3.203125 -4.5 3.265625 -4.375 3.328125 -4.078125 C 3.328125 -4.046875 3.34375 -3.96875 3.34375 -3.96875 C 3.375 -3.890625 3.4375 -3.890625 3.5 -3.921875 C 3.578125 -3.953125 3.5625 -3.96875 3.53125 -4.15625 L 3.140625 -6.359375 C 3.109375 -6.46875 3.109375 -6.484375 3.09375 -6.5 C 3.09375 -6.5 3.03125 -6.609375 2.9375 -6.5625 C 2.84375 -6.515625 2.859375 -6.46875 2.875 -6.3125 C 3.03125 -5.515625 2.890625 -5.265625 2.125 -4.90625 L 1.296875 -4.53125 L 0.828125 -7.09375 C 0.75 -7.4375 0.734375 -7.46875 1.125 -7.640625 L 2.328125 -8.203125 C 3.4375 -8.71875 3.78125 -8.515625 4.109375 -7.828125 C 4.203125 -7.625 4.21875 -7.578125 4.296875 -7.328125 C 4.34375 -7.21875 4.359375 -7.1875 4.359375 -7.15625 C 4.390625 -7.109375 4.4375 -7.078125 4.515625 -7.109375 C 4.625 -7.15625 4.609375 -7.203125 4.5625 -7.390625 Z M 4.5625 -7.390625 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M 3.828125 -3.34375 C 3.78125 -3.4375 3.6875 -3.390625 3.671875 -3.375 C 3.578125 -3.34375 3.578125 -3.3125 3.625 -3.171875 C 3.75 -2.421875 3.75 -1.859375 3.359375 -1.671875 C 3.1875 -1.59375 3.015625 -1.65625 2.859375 -1.984375 C 2.796875 -2.140625 2.734375 -2.34375 2.703125 -2.515625 C 2.671875 -2.671875 2.65625 -2.71875 2.609375 -2.796875 C 2.328125 -3.390625 1.640625 -3.390625 0.84375 -3.125 C 1.046875 -3.4375 1.1875 -3.84375 1.296875 -4.15625 C 1.515625 -4.84375 1.75 -5.4375 2.1875 -5.640625 C 2.234375 -5.671875 2.234375 -5.671875 2.265625 -5.65625 C 2.390625 -5.6875 2.40625 -5.703125 2.484375 -5.671875 C 2.515625 -5.671875 2.515625 -5.671875 2.5625 -5.65625 C 2.125 -5.421875 2.203125 -5.046875 2.25 -4.9375 C 2.3125 -4.796875 2.5 -4.671875 2.75 -4.78125 C 2.96875 -4.890625 3.15625 -5.21875 3 -5.546875 C 2.875 -5.84375 2.515625 -6.046875 2.109375 -5.84375 C 1.84375 -5.734375 1.46875 -5.4375 1.15625 -4.421875 C 1.015625 -3.9375 0.84375 -3.4375 0.5625 -3.109375 L -0.28125 -7.359375 C -0.28125 -7.359375 -0.328125 -7.46875 -0.4375 -7.421875 C -0.65625 -7.328125 -1.296875 -6.9375 -1.5 -6.8125 C -1.578125 -6.765625 -1.65625 -6.703125 -1.59375 -6.546875 C -1.53125 -6.4375 -1.453125 -6.46875 -1.3125 -6.53125 C -0.875 -6.734375 -0.84375 -6.6875 -0.796875 -6.59375 L -0.75 -6.40625 L 0.359375 -0.609375 C 0.390625 -0.46875 0.40625 -0.453125 0.421875 -0.390625 C 0.53125 -0.171875 0.734375 -0.21875 0.8125 -0.265625 C 0.921875 -0.3125 1 -0.453125 1.015625 -0.578125 C 1.03125 -0.6875 0.65625 -2.546875 0.609375 -2.796875 C 0.921875 -2.921875 1.734375 -3.109375 2.015625 -2.515625 C 2.046875 -2.453125 2.0625 -2.421875 2.078125 -2.3125 C 2.109375 -2.203125 2.125 -2.078125 2.171875 -1.984375 C 2.421875 -1.4375 2.96875 -1.265625 3.4375 -1.484375 C 3.703125 -1.609375 3.875 -1.859375 3.921875 -2.28125 C 3.953125 -2.796875 3.828125 -3.34375 3.828125 -3.34375 Z M 3.828125 -3.34375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M 3.421875 -2.78125 C 3.40625 -2.828125 3.328125 -2.859375 3.265625 -2.828125 C 3.21875 -2.8125 3.203125 -2.796875 3.1875 -2.6875 C 2.90625 -1.46875 1.90625 -1 1.8125 -0.953125 C 1.234375 -0.6875 0.78125 -1.015625 0.53125 -1.5625 C 0.34375 -1.9375 0.140625 -2.890625 0.1875 -3.609375 C 0.21875 -4.25 0.53125 -4.859375 1.03125 -5.09375 C 1.328125 -5.25 1.734375 -5.28125 1.96875 -5.078125 C 1.828125 -5.015625 1.703125 -4.953125 1.640625 -4.78125 C 1.546875 -4.578125 1.609375 -4.421875 1.640625 -4.359375 C 1.734375 -4.140625 1.9375 -4.125 2.109375 -4.203125 C 2.375 -4.328125 2.53125 -4.640625 2.359375 -5.015625 C 2.15625 -5.453125 1.5625 -5.59375 0.9375 -5.296875 C -0.28125 -4.734375 -0.875 -2.859375 -0.296875 -1.609375 C 0.09375 -0.78125 0.9375 -0.328125 1.875 -0.765625 C 3.15625 -1.359375 3.46875 -2.671875 3.421875 -2.78125 Z M 3.421875 -2.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-2-4">
|
||||
<path d="M 3.046875 -8.171875 C 3.015625 -8.265625 2.9375 -8.28125 2.84375 -8.28125 C 2.578125 -8.328125 2.40625 -8.46875 2.234375 -8.640625 C 2.171875 -8.71875 2.078125 -8.8125 1.953125 -8.75 C 1.828125 -8.6875 1.828125 -8.5625 1.875 -8.484375 C 1.890625 -8.4375 2.09375 -8.1875 2.328125 -8.046875 L -0.71875 -6.625 C -0.875 -6.5625 -1.03125 -6.484375 -0.953125 -6.3125 C -0.859375 -6.125 -0.703125 -6.203125 -0.546875 -6.265625 L 2.34375 -7.625 C 2.265625 -7.453125 2.09375 -7.0625 2.171875 -6.890625 C 2.203125 -6.8125 2.328125 -6.75 2.4375 -6.796875 C 2.515625 -6.84375 2.53125 -6.921875 2.546875 -6.984375 C 2.59375 -7.1875 2.671875 -7.53125 2.984375 -7.921875 C 3.03125 -7.984375 3.109375 -8.0625 3.046875 -8.171875 Z M 3.046875 -8.171875 "/>
|
||||
</g>
|
||||
<g id="glyph-2-5">
|
||||
<path d="M -0.0625 -6.828125 C -0.15625 -7 -0.34375 -7.109375 -0.5625 -7 C -0.796875 -6.890625 -0.9375 -6.53125 -0.828125 -6.296875 C -0.734375 -6.125 -0.53125 -6.03125 -0.328125 -6.125 C -0.109375 -6.21875 0.0625 -6.546875 -0.0625 -6.828125 Z M 2.046875 -2.515625 C 2 -2.609375 1.921875 -2.5625 1.890625 -2.5625 C 1.8125 -2.515625 1.8125 -2.5 1.828125 -2.328125 C 1.9375 -1.703125 1.890625 -1 1.421875 -0.78125 C 1.28125 -0.71875 1.1875 -0.78125 1.078125 -0.984375 C 0.96875 -1.21875 0.96875 -1.359375 0.921875 -2.015625 L 0.828125 -3.125 C 0.8125 -3.421875 0.8125 -3.4375 0.78125 -3.75 C 0.78125 -3.953125 0.75 -4.109375 0.671875 -4.28125 C 0.484375 -4.6875 0.03125 -4.890625 -0.40625 -4.6875 C -1.25 -4.28125 -1 -2.796875 -0.953125 -2.71875 C -0.921875 -2.625 -0.796875 -2.671875 -0.796875 -2.671875 C -0.71875 -2.71875 -0.703125 -2.734375 -0.734375 -2.90625 C -0.875 -3.875 -0.640625 -4.3125 -0.328125 -4.46875 C -0.265625 -4.5 -0.109375 -4.5625 0.03125 -4.265625 C 0.109375 -4.078125 0.140625 -3.84375 0.15625 -3.75 C 0.171875 -3.484375 0.265625 -2.25 0.296875 -1.796875 C 0.296875 -1.53125 0.328125 -1.171875 0.421875 -0.984375 C 0.625 -0.5625 1.078125 -0.390625 1.5 -0.59375 C 2.359375 -0.984375 2.078125 -2.4375 2.046875 -2.515625 Z M 2.046875 -2.515625 "/>
|
||||
</g>
|
||||
<g id="glyph-3-0">
|
||||
</g>
|
||||
<g id="glyph-3-1">
|
||||
<path d="M 3.546875 -2.75 C 3.5 -2.828125 3.40625 -2.796875 3.390625 -2.78125 C 3.296875 -2.734375 3.3125 -2.71875 3.34375 -2.53125 C 3.40625 -2.203125 3.484375 -1.75 3.203125 -1.625 C 3.046875 -1.5625 2.921875 -1.671875 2.84375 -1.84375 C 2.796875 -1.953125 2.734375 -2.21875 2.71875 -2.390625 L 2.46875 -3.640625 C 2.4375 -3.828125 2.390625 -4.15625 2.375 -4.171875 C 2.3125 -4.296875 2.171875 -4.328125 2.0625 -4.265625 C 1.828125 -4.171875 1.859375 -3.953125 1.90625 -3.75 L 2.203125 -2.265625 C 2.21875 -2.125 2.28125 -1.859375 2.28125 -1.859375 C 2.234375 -1.59375 2.140625 -1.140625 1.765625 -0.953125 C 1.328125 -0.75 1.125 -1.171875 1.078125 -1.28125 C 0.90625 -1.640625 0.859375 -2.171875 0.84375 -2.734375 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.265625 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.515625 0.46875 -1.328125 0.546875 -1.15625 C 0.59375 -1.0625 0.734375 -0.765625 1.078125 -0.671875 C 1.3125 -0.59375 1.59375 -0.65625 1.8125 -0.765625 C 2.21875 -0.953125 2.3125 -1.265625 2.4375 -1.578125 C 2.78125 -1.21875 3.1875 -1.40625 3.28125 -1.453125 C 3.484375 -1.546875 3.59375 -1.75 3.609375 -2.015625 C 3.625 -2.34375 3.5625 -2.71875 3.546875 -2.75 Z M 3.546875 -2.75 "/>
|
||||
</g>
|
||||
<g id="glyph-3-2">
|
||||
<path d="M 2.3125 -3.875 C 2.078125 -4.375 1.78125 -4.234375 1.765625 -4.21875 C 1.59375 -4.140625 1.5 -3.890625 1.578125 -3.71875 C 1.625 -3.609375 1.71875 -3.59375 1.75 -3.578125 C 1.921875 -3.53125 2.125 -3.4375 2.25 -3.171875 C 2.375 -2.890625 2.59375 -1.34375 1.84375 -0.984375 C 1.328125 -0.75 1.109375 -1.203125 1.0625 -1.328125 C 0.921875 -1.609375 0.875 -2 0.84375 -2.71875 C 0.8125 -2.875 0.8125 -2.984375 0.765625 -3.078125 C 0.609375 -3.421875 0.234375 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.65625 -0.28125 -3.046875 -0.03125 -3.15625 C 0.078125 -3.21875 0.15625 -3.15625 0.234375 -3.015625 C 0.296875 -2.859375 0.3125 -2.71875 0.3125 -2.546875 C 0.375 -1.71875 0.421875 -1.40625 0.53125 -1.1875 C 0.828125 -0.5625 1.421875 -0.578125 1.90625 -0.8125 C 2.96875 -1.296875 2.546875 -3.34375 2.3125 -3.875 Z M 2.3125 -3.875 "/>
|
||||
</g>
|
||||
<g id="glyph-3-3">
|
||||
<path d="M 3.859375 -4.59375 C 3.640625 -5.0625 3.359375 -4.96875 3.3125 -4.953125 C 3.15625 -4.875 3.046875 -4.609375 3.125 -4.4375 C 3.171875 -4.328125 3.265625 -4.3125 3.3125 -4.3125 C 3.53125 -4.25 3.703125 -4.109375 3.796875 -3.90625 C 3.828125 -3.828125 4.296875 -2.140625 3.5 -1.765625 C 2.984375 -1.515625 2.765625 -1.96875 2.71875 -2.09375 C 2.640625 -2.25 2.625 -2.375 2.53125 -2.765625 L 2.390625 -3.5625 C 2.359375 -3.765625 2.28125 -4.109375 2.265625 -4.125 C 2.203125 -4.25 2.078125 -4.28125 1.96875 -4.21875 C 1.84375 -4.171875 1.765625 -4.046875 1.765625 -3.90625 C 1.796875 -3.875 1.84375 -3.5625 1.859375 -3.390625 C 1.953125 -2.984375 1.953125 -2.984375 2.015625 -2.578125 C 2.109375 -2.1875 2.125 -2.125 2.1875 -1.953125 C 2.28125 -1.84375 2.28125 -1.6875 2.21875 -1.4375 C 2.1875 -1.296875 2.125 -1.125 1.90625 -1.015625 C 1.65625 -0.90625 1.296875 -0.84375 1.0625 -1.328125 C 0.921875 -1.65625 0.875 -2.203125 0.84375 -2.59375 C 0.828125 -2.921875 0.8125 -2.984375 0.765625 -3.09375 C 0.625 -3.390625 0.265625 -3.515625 -0.078125 -3.359375 C -0.71875 -3.0625 -0.59375 -2.0625 -0.546875 -1.953125 C -0.515625 -1.875 -0.4375 -1.90625 -0.40625 -1.921875 C -0.3125 -1.96875 -0.328125 -2 -0.328125 -2.09375 C -0.421875 -2.671875 -0.265625 -3.046875 -0.015625 -3.171875 C 0.078125 -3.21875 0.171875 -3.171875 0.25 -3.03125 C 0.3125 -2.875 0.3125 -2.71875 0.34375 -2.625 C 0.390625 -1.53125 0.453125 -1.40625 0.546875 -1.203125 C 0.890625 -0.453125 1.625 -0.671875 1.953125 -0.828125 C 2.078125 -0.890625 2.375 -1.03125 2.46875 -1.59375 C 2.765625 -1.375 3.15625 -1.390625 3.546875 -1.578125 C 4.109375 -1.84375 4.15625 -2.453125 4.171875 -2.78125 C 4.203125 -3.4375 3.984375 -4.296875 3.859375 -4.59375 Z M 3.859375 -4.59375 "/>
|
||||
</g>
|
||||
<g id="glyph-4-0">
|
||||
</g>
|
||||
<g id="glyph-4-1">
|
||||
<path d="M 6.21875 -6.125 C 6.21875 -6.21875 6.15625 -6.265625 6.078125 -6.3125 C 5.859375 -6.46875 5.75 -6.65625 5.671875 -6.890625 C 5.65625 -6.984375 5.609375 -7.109375 5.46875 -7.109375 C 5.328125 -7.109375 5.28125 -6.984375 5.28125 -6.890625 C 5.28125 -6.84375 5.359375 -6.53125 5.515625 -6.3125 L 2.15625 -6.3125 C 1.984375 -6.3125 1.8125 -6.3125 1.8125 -6.125 C 1.8125 -5.921875 1.984375 -5.921875 2.15625 -5.921875 L 5.34375 -5.921875 C 5.203125 -5.796875 4.875 -5.515625 4.875 -5.328125 C 4.875 -5.234375 4.96875 -5.140625 5.078125 -5.140625 C 5.171875 -5.140625 5.21875 -5.203125 5.265625 -5.265625 C 5.390625 -5.421875 5.609375 -5.6875 6.046875 -5.90625 C 6.125 -5.953125 6.21875 -6 6.21875 -6.125 Z M 6.21875 -6.125 "/>
|
||||
</g>
|
||||
<g id="glyph-4-2">
|
||||
<path d="M 2.828125 -6.21875 C 2.828125 -6.421875 2.6875 -6.578125 2.453125 -6.578125 C 2.1875 -6.578125 1.921875 -6.3125 1.921875 -6.046875 C 1.921875 -5.859375 2.0625 -5.6875 2.296875 -5.6875 C 2.53125 -5.6875 2.828125 -5.921875 2.828125 -6.21875 Z M 2.921875 -1.421875 C 2.921875 -1.515625 2.828125 -1.515625 2.796875 -1.515625 C 2.703125 -1.515625 2.703125 -1.5 2.640625 -1.34375 C 2.46875 -0.71875 2.140625 -0.109375 1.625 -0.109375 C 1.46875 -0.109375 1.390625 -0.203125 1.390625 -0.4375 C 1.390625 -0.6875 1.453125 -0.828125 1.6875 -1.4375 L 2.0625 -2.484375 C 2.1875 -2.765625 2.1875 -2.78125 2.296875 -3.0625 C 2.375 -3.25 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.671875 -4.40625 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.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.65625 1.75 -3.4375 1.71875 -3.34375 C 1.625 -3.078125 1.1875 -1.9375 1.03125 -1.5 C 0.921875 -1.25 0.796875 -0.921875 0.796875 -0.703125 C 0.796875 -0.234375 1.140625 0.109375 1.609375 0.109375 C 2.546875 0.109375 2.921875 -1.328125 2.921875 -1.421875 Z M 2.921875 -1.421875 "/>
|
||||
</g>
|
||||
<g id="glyph-4-3">
|
||||
<path d="M 4.53125 -4.96875 C 4.53125 -5.640625 4.34375 -7.015625 3.328125 -7.015625 C 1.953125 -7.015625 0.421875 -4.203125 0.421875 -1.9375 C 0.421875 -1 0.703125 0.109375 1.609375 0.109375 C 3.015625 0.109375 4.53125 -2.75 4.53125 -4.96875 Z M 3.546875 -3.609375 L 1.46875 -3.609375 C 1.640625 -4.25 1.84375 -5.046875 2.234375 -5.75 C 2.515625 -6.234375 2.875 -6.796875 3.328125 -6.796875 C 3.8125 -6.796875 3.875 -6.15625 3.875 -5.59375 C 3.875 -5.109375 3.796875 -4.59375 3.546875 -3.609375 Z M 3.46875 -3.296875 C 3.359375 -2.84375 3.140625 -1.984375 2.765625 -1.28125 C 2.421875 -0.59375 2.046875 -0.109375 1.609375 -0.109375 C 1.28125 -0.109375 1.078125 -0.390625 1.078125 -1.328125 C 1.078125 -1.734375 1.140625 -2.3125 1.390625 -3.296875 Z M 3.46875 -3.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-5-0">
|
||||
</g>
|
||||
<g id="glyph-5-1">
|
||||
<path d="M 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.328125 -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 L 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 Z M 3.90625 -1 "/>
|
||||
</g>
|
||||
<g id="glyph-5-2">
|
||||
<path 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 L 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.609375 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 "/>
|
||||
</g>
|
||||
<g id="glyph-5-3">
|
||||
<path d="M 3.46875 -1.015625 C 3.46875 -1.09375 3.390625 -1.09375 3.359375 -1.09375 C 3.265625 -1.09375 3.25 -1.0625 3.21875 -0.984375 C 3.09375 -0.640625 2.6875 -0.46875 2.34375 -0.46875 C 2.1875 -0.46875 2 -0.515625 1.828125 -0.546875 C 1.515625 -0.625 1.453125 -0.625 1.328125 -0.625 C 1.328125 -0.625 1.21875 -0.625 1.171875 -0.609375 C 1.359375 -0.796875 1.484375 -0.921875 2.0625 -1.40625 C 2.21875 -1.515625 2.734375 -1.9375 2.9375 -2.125 C 3.359375 -2.546875 3.625 -2.90625 3.625 -2.984375 C 3.625 -3.078125 3.546875 -3.078125 3.515625 -3.078125 C 3.453125 -3.078125 3.421875 -3.0625 3.390625 -3 C 3.171875 -2.6875 3.03125 -2.578125 2.859375 -2.578125 C 2.78125 -2.578125 2.671875 -2.578125 2.46875 -2.78125 C 2.234375 -3.03125 2.078125 -3.078125 1.921875 -3.078125 C 1.359375 -3.078125 0.984375 -2.46875 0.984375 -2.265625 C 0.984375 -2.1875 1.046875 -2.171875 1.09375 -2.171875 C 1.1875 -2.171875 1.203125 -2.1875 1.21875 -2.265625 C 1.328125 -2.515625 1.71875 -2.53125 1.828125 -2.53125 C 2 -2.53125 2.171875 -2.484375 2.265625 -2.46875 C 2.65625 -2.390625 2.703125 -2.390625 2.875 -2.390625 C 2.703125 -2.1875 2.578125 -2.0625 1.90625 -1.546875 C 1.359375 -1.109375 1.171875 -0.9375 1.046875 -0.796875 C 0.625 -0.390625 0.421875 -0.078125 0.421875 -0.015625 C 0.421875 0.0625 0.515625 0.0625 0.546875 0.0625 C 0.609375 0.0625 0.625 0.0625 0.65625 0 C 0.84375 -0.265625 1.0625 -0.421875 1.296875 -0.421875 C 1.390625 -0.421875 1.484375 -0.421875 1.671875 -0.25 C 1.890625 -0.03125 2.03125 0.0625 2.265625 0.0625 C 3 0.0625 3.46875 -0.78125 3.46875 -1.015625 Z M 3.46875 -1.015625 "/>
|
||||
</g>
|
||||
<g id="glyph-6-0">
|
||||
</g>
|
||||
<g id="glyph-6-1">
|
||||
<path d="M 6.734375 -1.609375 L 6.484375 -1.609375 C 6.4375 -1.359375 6.40625 -1.125 6.3125 -0.890625 C 6.265625 -0.734375 6.234375 -0.640625 5.65625 -0.640625 L 4.859375 -0.640625 C 4.984375 -1.203125 5.296875 -1.6875 5.75 -2.34375 C 6.203125 -3.046875 6.625 -3.734375 6.625 -4.515625 C 6.625 -5.90625 5.28125 -7.015625 3.59375 -7.015625 C 1.875 -7.015625 0.5625 -5.875 0.5625 -4.515625 C 0.5625 -3.734375 0.96875 -3.046875 1.4375 -2.34375 C 1.875 -1.6875 2.1875 -1.203125 2.3125 -0.640625 L 1.515625 -0.640625 C 0.953125 -0.640625 0.921875 -0.734375 0.859375 -0.875 C 0.78125 -1.109375 0.734375 -1.359375 0.6875 -1.609375 L 0.4375 -1.609375 L 0.765625 0 L 2.359375 0 C 2.578125 0 2.609375 0 2.609375 -0.203125 C 2.609375 -0.90625 2.296875 -1.78125 2.0625 -2.421875 C 1.859375 -3 1.578125 -3.78125 1.578125 -4.53125 C 1.578125 -6.125 2.671875 -6.796875 3.578125 -6.796875 C 4.53125 -6.796875 5.59375 -6.078125 5.59375 -4.53125 C 5.59375 -3.78125 5.328125 -3.03125 5.03125 -2.203125 C 4.890625 -1.796875 4.5625 -0.890625 4.5625 -0.203125 C 4.5625 0 4.59375 0 4.828125 0 L 6.40625 0 Z M 6.734375 -1.609375 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 0 0.0585938 L 256.371094 0.0585938 L 256.371094 254.554688 L 0 254.554688 Z M 0 0.0585938 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 2 217 L 39 217 L 39 254.554688 L 2 254.554688 Z M 2 217 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" fill-opacity="1" d="M 255.378906 122.796875 C 255.378906 55.558594 200.871094 1.054688 133.632812 1.054688 C 66.398438 1.054688 11.890625 55.558594 11.890625 122.796875 C 11.890625 190.035156 66.398438 244.539062 133.632812 244.539062 C 200.871094 244.539062 255.378906 190.035156 255.378906 122.796875 Z M 255.378906 122.796875 "/>
|
||||
<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 121.893307 -0.000240399 C 121.893307 67.320292 67.318816 121.890872 -0.00171655 121.890872 C -67.318338 121.890872 -121.892829 67.320292 -121.892829 -0.000240399 C -121.892829 -67.320773 -67.318338 -121.891353 -0.00171655 -121.891353 C 67.318816 -121.891353 121.893307 -67.320773 121.893307 -0.000240399 Z M 121.893307 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" 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 107.71974 -0.000240399 C 107.71974 59.490413 59.492848 107.717305 -0.00171655 107.717305 C -59.49237 107.717305 -107.719262 59.490413 -107.719262 -0.000240399 C -107.719262 -59.490894 -59.49237 -107.717786 -0.00171655 -107.717786 C 59.492848 -107.717786 107.71974 -59.490894 107.71974 -0.000240399 Z M 107.71974 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="70.530721" y="59.453122"/>
|
||||
<use xlink:href="#glyph-0-2" x="76.669973" y="56.590337"/>
|
||||
<use xlink:href="#glyph-0-3" x="80.840996" y="54.645354"/>
|
||||
<use xlink:href="#glyph-0-4" x="84.085124" y="53.132589"/>
|
||||
<use xlink:href="#glyph-0-3" x="88.256147" y="51.187606"/>
|
||||
<use xlink:href="#glyph-0-5" x="91.500276" y="49.674842"/>
|
||||
<use xlink:href="#glyph-0-6" x="93.817511" y="48.594295"/>
|
||||
<use xlink:href="#glyph-0-7" x="98.451981" y="46.433203"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="105.406932" y="43.190051"/>
|
||||
<use xlink:href="#glyph-0-3" x="110.041401" y="41.028958"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="113.277414" y="39.519978"/>
|
||||
<use xlink:href="#glyph-0-7" x="117.448437" y="37.574995"/>
|
||||
<use xlink:href="#glyph-0-9" x="121.619459" y="35.630012"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" 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 -35.64683 -97.944126 L -97.945602 35.648784 L 35.647308 97.943645 L 97.94608 -35.649265 Z M -35.64683 -97.944126 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-8" x="43.485804" y="94.628093"/>
|
||||
<use xlink:href="#glyph-0-10" x="48.120274" y="92.467001"/>
|
||||
<use xlink:href="#glyph-0-11" x="52.754744" y="90.305908"/>
|
||||
<use xlink:href="#glyph-0-12" x="56.045136" y="88.771571"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="60.914982" y="86.500721"/>
|
||||
<use xlink:href="#glyph-0-6" x="64.625804" y="84.770333"/>
|
||||
<use xlink:href="#glyph-0-13" x="69.260274" y="82.60924"/>
|
||||
<use xlink:href="#glyph-0-9" x="73.894744" y="80.448148"/>
|
||||
<use xlink:href="#glyph-0-13" x="77.605566" y="78.71776"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="85.015848" y="75.262284"/>
|
||||
<use xlink:href="#glyph-0-15" x="90.692464" y="72.615229"/>
|
||||
<use xlink:href="#glyph-0-4" x="93.009699" y="71.534683"/>
|
||||
<use xlink:href="#glyph-0-3" x="97.180722" y="69.5897"/>
|
||||
<use xlink:href="#glyph-0-16" x="100.424851" y="68.076935"/>
|
||||
<use xlink:href="#glyph-0-2" x="102.973403" y="66.888524"/>
|
||||
<use xlink:href="#glyph-0-17" x="107.144426" y="64.943541"/>
|
||||
<use xlink:href="#glyph-0-18" x="110.407223" y="63.422071"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -13.709871 -37.671266 L -37.672743 13.711825 L 13.710349 37.670786 L 37.66931 -13.712306 Z M -13.709871 -37.671266 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-14" x="121.048923" y="153.77474"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="126.490164" y="151.237443"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-19" x="130.433927" y="149.398433"/>
|
||||
<use xlink:href="#glyph-0-15" x="134.836267" y="147.345585"/>
|
||||
<use xlink:href="#glyph-0-2" x="137.153502" y="146.265039"/>
|
||||
<use xlink:href="#glyph-0-4" x="141.324525" y="144.320056"/>
|
||||
<use xlink:href="#glyph-0-13" x="145.495548" y="142.375072"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1" x="105.486959" y="136.973293"/>
|
||||
</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 -25.689351 -11.979721 L -30.828443 -14.377181 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 -21.246423 -34.929636 L -40.414374 6.175274 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1" x="143.111933" y="150.666542"/>
|
||||
</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 11.981675 -25.691786 L 14.375224 -30.830878 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.17723 -40.412897 L 34.927679 -21.244947 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -45.72555 -49.470839 L -30.312187 -42.28628 L -32.709648 -37.147189 L -48.123011 -44.335659 Z M -45.72555 -49.470839 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 -25.446868 -36.889061 L -31.059194 -39.505539 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.052049 0.00154613 L 1.610697 1.684127 L 3.086296 -0.000785306 L 1.60819 -1.6807 Z M 6.052049 0.00154613 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 105.651288, 160.837121)"/>
|
||||
<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 -52.98833 -49.732878 L -47.376004 -47.112489 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.051849 0.000390099 L 1.610498 1.682971 L 3.087749 0.00160334 L 1.60799 -1.681856 Z M 6.051849 0.000390099 " transform="matrix(-0.905193, 0.422084, 0.422084, 0.905193, 83.278706, 171.269479)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-1" x="86.996578" y="160.958952"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1" x="93.42593" y="159.607328"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -40.414374 6.175274 L -45.553465 3.781724 L -45.854614 0.891474 L -50.66909 4.14545 L -51.271389 -1.63505 L -56.085865 1.618925 L -56.688163 -4.161575 L -61.502639 -0.907599 L -62.104937 -6.688099 L -66.919413 -3.434123 L -67.525623 -9.214623 L -69.930905 -7.587636 L -76.380191 -10.595216 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-2" x="71.249841" y="119.966097"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -58.960471 -22.656828 L -46.679841 -16.931083 L -42.976097 -24.878292 L -55.256727 -30.604038 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -53.78618 -22.441722 L -51.764178 -26.775141 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -30.828443 -14.377181 L -44.829925 -20.904687 M -52.773223 -24.608431 L -66.794261 -31.147671 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-3" x="78.873515" y="139.891723"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 49.472793 -45.727985 L 42.284323 -30.310711 L 37.145232 -32.708171 L 44.333702 -48.121535 Z M 49.472793 -45.727985 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 36.887104 -25.445392 L 39.503582 -31.057717 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.052561 -0.000848746 L 1.607665 1.683385 L 3.088461 0.000364491 L 1.608702 -1.683095 Z M 6.052561 -0.000848746 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 171.675013, 150.779873)"/>
|
||||
<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 49.730921 -52.990765 L 47.114443 -47.374528 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.054882 0.00113212 L 1.608333 1.681821 L 3.089129 -0.00119931 L 1.60937 -1.684659 Z M 6.054882 0.00113212 " transform="matrix(0.422084, 0.905193, 0.905193, -0.422084, 182.107371, 173.152455)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-1" x="164.566688" y="170.654092"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-2" x="170.996945" y="169.302046"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.17723 -40.412897 L -3.77977 -45.551989 L -0.893431 -45.853138 L -4.143496 -50.667614 L 1.633093 -51.269912 L -1.616971 -56.084388 L 4.159618 -56.690598 L 0.909553 -61.501163 L 6.686142 -62.107372 L 3.436077 -66.921848 L 9.212666 -67.524147 L 7.585679 -69.929429 L 10.59326 -76.382626 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-2" x="128.955251" y="188.144696"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22.658782 -58.958994 L 16.933037 -46.682276 L 24.876335 -42.974621 L 30.602081 -55.25525 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 22.443676 -53.784704 L 26.777095 -51.762702 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 14.375224 -30.830878 L 20.902731 -44.828449 M 24.610386 -52.775658 L 31.145714 -66.796695 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-3" x="147.172966" y="176.880475"/>
|
||||
</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.386342 -113.388777 L -61.326643 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.053923 -0.00153737 L 1.607083 1.684116 L 3.089363 -0.00153737 L 1.607083 -1.68328 Z M 6.053923 -0.00153737 " transform="matrix(0.998778, 0, 0, -0.998778, 69.547224, 236.04534)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-1" x="71.252838" y="246.96674"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-2" x="72.791955" y="249.244953"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-1" x="76.219762" y="250.738126"/>
|
||||
</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.386342 -113.388777 L -113.386342 -61.329078 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.051488 -0.000897507 L 1.608559 1.684756 L 3.086928 -0.000897507 L 1.608559 -1.68264 Z M 6.051488 -0.000897507 " transform="matrix(0, -0.998778, -0.998778, 0, 20.385822, 186.883938)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-1" x="6.823653" y="180.412155"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-2" x="8.361771" y="182.690368"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-2" x="11.790577" y="184.182542"/>
|
||||
</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 -111.685045 -113.388777 C -111.685045 -112.44622 -112.447696 -111.68748 -113.386342 -111.68748 C -114.324989 -111.68748 -115.08764 -112.44622 -115.08764 -113.388777 C -115.08764 -114.327424 -114.324989 -115.086164 -113.386342 -115.086164 C -112.447696 -115.086164 -111.685045 -114.327424 -111.685045 -113.388777 Z M -111.685045 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 -109.135055 -113.388777 C -109.135055 -111.038249 -111.039725 -109.133578 -113.386342 -109.133578 C -115.736871 -109.133578 -117.63763 -111.038249 -117.63763 -113.388777 C -117.63763 -115.735394 -115.736871 -117.640065 -113.386342 -117.640065 C -111.039725 -117.640065 -109.135055 -115.735394 -109.135055 -113.388777 Z M -109.135055 -113.388777 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-1" x="2.277214" y="237.713059"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-2" x="3.816332" y="239.991273"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-5-3" x="7.244138" y="241.483447"/>
|
||||
</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 -0.00171655 -0.000240399 L 47.180931 22.003206 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.051833 0.000637619 L 1.610482 1.683218 L 3.087733 0.00185086 L 1.607974 -1.681609 Z M 6.051833 0.000637619 " transform="matrix(0.905193, -0.422084, -0.422084, -0.905193, 178.190163, 102.019801)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-4" x="116.632705" y="122.356138"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-5" x="118.990441" y="123.770444"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-3" x="122.727719" y="123.674157"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-4" x="176.441542" y="94.466255"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-5" x="178.799278" y="95.880561"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-1" x="182.536556" y="95.784274"/>
|
||||
</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 -0.00171655 -0.000240399 L -22.001252 47.182407 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.053998 0.00178742 L 1.607449 1.682476 L 3.088245 -0.000544017 L 1.608486 -1.684004 Z M 6.053998 0.00178742 " transform="matrix(-0.422084, -0.905193, -0.905193, 0.422084, 112.857693, 78.240999)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-4" x="98.166295" y="78.699542"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-5" x="100.524031" y="80.113848"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-3-2" x="104.261731" y="80.018466"/>
|
||||
</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 1.699581 -0.000240399 C 1.699581 0.938406 0.940841 1.701057 -0.00171655 1.701057 C -0.940363 1.701057 -1.699103 0.938406 -1.699103 -0.000240399 C -1.699103 -0.938887 -0.940363 -1.701538 -0.00171655 -1.701538 C 0.940841 -1.701538 1.699581 -0.938887 1.699581 -0.000240399 Z M 1.699581 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 4.253482 -0.000240399 C 4.253482 2.350288 2.348812 4.251048 -0.00171655 4.251048 C -2.348334 4.251048 -4.253004 2.350288 -4.253004 -0.000240399 C -4.253004 -2.346857 -2.348334 -4.251528 -0.00171655 -4.251528 C 2.348812 -4.251528 4.253482 -2.346857 4.253482 -0.000240399 Z M 4.253482 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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 -0.00171655 -0.000240399 L 56.692552 -0.000240399 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.518985 -0.000240399 C 42.518985 6.206562 41.157947 12.346876 38.537558 17.970935 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-4-3" x="178.908144" y="117.060652"/>
|
||||
</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 99.213253 -0.000240399 C 99.213253 21.776366 92.048249 42.907653 78.89546 60.155288 " transform="matrix(0.998778, 0, 0, -0.998778, 133.634527, 122.796635)"/>
|
||||
<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.054999 -0.00109799 L 1.608902 1.680577 L 3.085091 -0.000478407 L 1.608483 -1.684544 Z M 6.054999 -0.00109799 " transform="matrix(-0.622289, -0.781144, -0.781144, 0.622289, 214.192881, 64.937543)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-6-1" x="215.750076" y="92.331902"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 61 KiB |
BIN
figs/IMG_20181106_142851.jpg
Normal file
After Width: | Height: | Size: 1.7 MiB |
BIN
figs/esrf_picture.jpg
Normal file
After Width: | Height: | Size: 263 KiB |
BIN
figs/exp_setup_photo.png
Normal file
After Width: | Height: | Size: 836 KiB |
BIN
figs/id31_beamline_schematic.pdf
Normal file
BIN
figs/id31_beamline_schematic.png
Normal file
After Width: | Height: | Size: 44 KiB |
238
figs/id31_beamline_schematic.svg
Normal file
@ -0,0 +1,238 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="455.539" height="193.683" viewBox="0 0 455.539 193.683">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 4.96875 -1.84375 C 4.96875 -2.84375 4.3125 -3.65625 3.46875 -3.859375 L 2.203125 -4.171875 C 1.578125 -4.3125 1.1875 -4.859375 1.1875 -5.4375 C 1.1875 -6.125 1.734375 -6.734375 2.515625 -6.734375 C 4.171875 -6.734375 4.390625 -5.109375 4.453125 -4.65625 C 4.453125 -4.59375 4.453125 -4.53125 4.5625 -4.53125 C 4.703125 -4.53125 4.703125 -4.59375 4.703125 -4.78125 L 4.703125 -6.78125 C 4.703125 -6.953125 4.703125 -7.015625 4.59375 -7.015625 C 4.515625 -7.015625 4.515625 -7 4.4375 -6.890625 L 4.09375 -6.3125 C 3.796875 -6.609375 3.390625 -7.015625 2.5 -7.015625 C 1.390625 -7.015625 0.5625 -6.140625 0.5625 -5.09375 C 0.5625 -4.265625 1.078125 -3.53125 1.859375 -3.265625 C 1.96875 -3.21875 2.484375 -3.109375 3.171875 -2.9375 C 3.4375 -2.859375 3.75 -2.796875 4.015625 -2.421875 C 4.234375 -2.171875 4.328125 -1.84375 4.328125 -1.515625 C 4.328125 -0.8125 3.828125 -0.09375 3 -0.09375 C 2.703125 -0.09375 1.953125 -0.140625 1.421875 -0.625 C 0.84375 -1.171875 0.8125 -1.796875 0.8125 -2.15625 C 0.796875 -2.265625 0.71875 -2.265625 0.6875 -2.265625 C 0.5625 -2.265625 0.5625 -2.1875 0.5625 -2.015625 L 0.5625 -0.015625 C 0.5625 0.15625 0.5625 0.21875 0.671875 0.21875 C 0.734375 0.21875 0.75 0.203125 0.8125 0.09375 C 0.8125 0.09375 0.84375 0.046875 1.171875 -0.484375 C 1.484375 -0.140625 2.125 0.21875 3 0.21875 C 4.171875 0.21875 4.96875 -0.75 4.96875 -1.84375 Z M 4.96875 -1.84375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 4.8125 -0.890625 L 4.8125 -1.4375 L 4.5625 -1.4375 L 4.5625 -0.890625 C 4.5625 -0.3125 4.3125 -0.25 4.203125 -0.25 C 3.875 -0.25 3.828125 -0.703125 3.828125 -0.75 L 3.828125 -2.734375 C 3.828125 -3.15625 3.828125 -3.546875 3.46875 -3.90625 C 3.078125 -4.296875 2.59375 -4.453125 2.109375 -4.453125 C 1.296875 -4.453125 0.609375 -3.984375 0.609375 -3.328125 C 0.609375 -3.03125 0.8125 -2.859375 1.0625 -2.859375 C 1.34375 -2.859375 1.515625 -3.0625 1.515625 -3.328125 C 1.515625 -3.4375 1.46875 -3.765625 1.015625 -3.78125 C 1.28125 -4.125 1.765625 -4.234375 2.09375 -4.234375 C 2.578125 -4.234375 3.140625 -3.859375 3.140625 -2.96875 L 3.140625 -2.59375 C 2.640625 -2.5625 1.9375 -2.53125 1.3125 -2.234375 C 0.5625 -1.90625 0.3125 -1.390625 0.3125 -0.953125 C 0.3125 -0.140625 1.28125 0.109375 1.90625 0.109375 C 2.5625 0.109375 3.03125 -0.28125 3.21875 -0.75 C 3.25 -0.359375 3.515625 0.0625 3.984375 0.0625 C 4.203125 0.0625 4.8125 -0.078125 4.8125 -0.890625 Z M 3.140625 -1.390625 C 3.140625 -0.453125 2.421875 -0.109375 1.984375 -0.109375 C 1.5 -0.109375 1.078125 -0.453125 1.078125 -0.953125 C 1.078125 -1.5 1.5 -2.328125 3.140625 -2.390625 Z M 3.140625 -1.390625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 8.09375 0 L 8.09375 -0.3125 C 7.578125 -0.3125 7.328125 -0.3125 7.3125 -0.609375 L 7.3125 -2.515625 C 7.3125 -3.359375 7.3125 -3.671875 7 -4.03125 C 6.875 -4.203125 6.546875 -4.40625 5.96875 -4.40625 C 5.125 -4.40625 4.6875 -3.796875 4.515625 -3.421875 C 4.375 -4.296875 3.640625 -4.40625 3.1875 -4.40625 C 2.46875 -4.40625 2 -3.96875 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.90625 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 L 1.4375 -0.03125 L 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.484375 -4.1875 3.125 -4.1875 C 3.75 -4.1875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 L 5.328125 0 L 5.328125 -0.3125 C 4.65625 -0.3125 4.546875 -0.3125 4.546875 -0.75 L 4.546875 -2.59375 C 4.546875 -3.625 5.25 -4.1875 5.890625 -4.1875 C 6.515625 -4.1875 6.625 -3.640625 6.625 -3.078125 L 6.625 -0.75 C 6.625 -0.3125 6.515625 -0.3125 5.859375 -0.3125 L 5.859375 0 L 6.984375 -0.03125 Z M 8.09375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 5.1875 -2.15625 C 5.1875 -3.40625 4.21875 -4.40625 3.109375 -4.40625 C 2.328125 -4.40625 1.90625 -3.96875 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 L 1.390625 1.90625 L 2.515625 1.9375 L 2.515625 1.625 C 1.84375 1.625 1.734375 1.625 1.734375 1.171875 L 1.734375 -0.59375 C 1.796875 -0.421875 2.203125 0.109375 2.96875 0.109375 C 4.15625 0.109375 5.1875 -0.859375 5.1875 -2.15625 Z M 4.359375 -2.15625 C 4.359375 -0.953125 3.65625 -0.109375 2.921875 -0.109375 C 2.53125 -0.109375 2.15625 -0.3125 1.875 -0.71875 C 1.734375 -0.921875 1.734375 -0.9375 1.734375 -1.140625 L 1.734375 -3.359375 C 2.03125 -3.859375 2.515625 -4.15625 3.03125 -4.15625 C 3.75 -4.15625 4.359375 -3.28125 4.359375 -2.15625 Z M 4.359375 -2.15625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 2.53125 0 L 2.53125 -0.3125 C 1.875 -0.3125 1.765625 -0.3125 1.765625 -0.75 L 1.765625 -6.90625 L 0.328125 -6.796875 L 0.328125 -6.484375 C 1.03125 -6.484375 1.109375 -6.421875 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 L 1.4375 -0.03125 Z M 2.53125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-6">
|
||||
<path d="M 4.125 -1.1875 C 4.125 -1.28125 4.046875 -1.296875 4 -1.296875 C 3.90625 -1.296875 3.890625 -1.25 3.875 -1.171875 C 3.515625 -0.140625 2.625 -0.140625 2.53125 -0.140625 C 2.03125 -0.140625 1.625 -0.4375 1.40625 -0.8125 C 1.109375 -1.28125 1.109375 -1.9375 1.109375 -2.296875 L 3.875 -2.296875 C 4.09375 -2.296875 4.125 -2.296875 4.125 -2.515625 C 4.125 -3.5 3.59375 -4.453125 2.34375 -4.453125 C 1.1875 -4.453125 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.125 -1 4.125 -1.1875 Z M 3.46875 -2.515625 L 1.109375 -2.515625 C 1.171875 -3.984375 2.015625 -4.234375 2.34375 -4.234375 C 3.375 -4.234375 3.46875 -2.890625 3.46875 -2.515625 Z M 3.46875 -2.515625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-7">
|
||||
<path d="M 7.21875 0 L 7.21875 -0.3125 L 7.03125 -0.3125 C 6.515625 -0.3125 6.3125 -0.359375 6.09375 -0.671875 L 4 -3.84375 L 5.359375 -5.84375 C 5.578125 -6.15625 5.921875 -6.484375 6.8125 -6.484375 L 6.8125 -6.796875 L 5.703125 -6.765625 C 5.3125 -6.765625 4.828125 -6.765625 4.421875 -6.796875 L 4.421875 -6.484375 C 4.828125 -6.484375 5.046875 -6.265625 5.046875 -6.03125 C 5.046875 -5.9375 5.03125 -5.90625 4.953125 -5.796875 L 3.828125 -4.125 L 2.53125 -6.046875 C 2.515625 -6.078125 2.46875 -6.15625 2.46875 -6.1875 C 2.46875 -6.3125 2.6875 -6.484375 3.109375 -6.484375 L 3.109375 -6.796875 C 2.765625 -6.765625 2.046875 -6.765625 1.65625 -6.765625 L 0.375 -6.796875 L 0.375 -6.484375 L 0.5625 -6.484375 C 1.109375 -6.484375 1.296875 -6.421875 1.484375 -6.140625 L 3.3125 -3.375 L 1.6875 -0.96875 C 1.546875 -0.765625 1.25 -0.3125 0.234375 -0.3125 L 0.234375 0 L 1.34375 -0.03125 C 1.71875 -0.03125 2.265625 -0.03125 2.625 0 L 2.625 -0.3125 C 2.15625 -0.3125 1.984375 -0.59375 1.984375 -0.765625 C 1.984375 -0.859375 2.015625 -0.890625 2.09375 -1 L 3.5 -3.09375 L 5.078125 -0.71875 C 5.09375 -0.671875 5.125 -0.640625 5.125 -0.609375 C 5.125 -0.484375 4.90625 -0.3125 4.484375 -0.3125 L 4.484375 0 C 4.828125 -0.03125 5.546875 -0.03125 5.9375 -0.03125 Z M 7.21875 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-8">
|
||||
<path 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 "/>
|
||||
</g>
|
||||
<g id="glyph-0-9">
|
||||
<path d="M 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.65625 -3.296875 L 1.65625 -4.40625 L 0.28125 -4.296875 L 0.28125 -3.984375 C 0.96875 -3.984375 1.0625 -3.90625 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 L 1.40625 -0.03125 C 1.8125 -0.03125 2.28125 -0.03125 2.671875 0 L 2.671875 -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.125 -4.1875 2.890625 -4.1875 C 2.953125 -4.1875 2.96875 -4.1875 3 -4.171875 C 2.96875 -4.15625 2.765625 -4.046875 2.765625 -3.78125 C 2.765625 -3.5 2.96875 -3.359375 3.1875 -3.359375 C 3.375 -3.359375 3.625 -3.46875 3.625 -3.796875 Z M 3.625 -3.796875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-10">
|
||||
<path d="M 5.0625 -3.984375 L 5.0625 -4.296875 C 4.828125 -4.265625 4.53125 -4.265625 4.3125 -4.265625 L 3.4375 -4.296875 L 3.4375 -3.984375 C 3.75 -3.96875 3.90625 -3.796875 3.90625 -3.546875 C 3.90625 -3.453125 3.90625 -3.4375 3.859375 -3.3125 L 2.84375 -0.859375 L 1.734375 -3.546875 C 1.703125 -3.640625 1.6875 -3.6875 1.6875 -3.71875 C 1.6875 -3.984375 2.046875 -3.984375 2.234375 -3.984375 L 2.234375 -4.296875 L 1.15625 -4.265625 C 0.890625 -4.265625 0.484375 -4.265625 0.1875 -4.296875 L 0.1875 -3.984375 C 0.671875 -3.984375 0.859375 -3.984375 1 -3.640625 L 2.484375 0 L 2.234375 0.59375 C 2.015625 1.140625 1.734375 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 L 4.125 -3.34375 C 4.390625 -3.96875 4.890625 -3.984375 5.0625 -3.984375 Z M 5.0625 -3.984375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-11">
|
||||
<path d="M 6.203125 -4.953125 C 6.203125 -5.921875 5.21875 -6.796875 3.859375 -6.796875 L 0.34375 -6.796875 L 0.34375 -6.484375 L 0.59375 -6.484375 C 1.359375 -6.484375 1.375 -6.375 1.375 -6.015625 L 1.375 -0.78125 C 1.375 -0.421875 1.359375 -0.3125 0.59375 -0.3125 L 0.34375 -0.3125 L 0.34375 0 C 0.703125 -0.03125 1.4375 -0.03125 1.8125 -0.03125 C 2.1875 -0.03125 2.9375 -0.03125 3.28125 0 L 3.28125 -0.3125 L 3.046875 -0.3125 C 2.28125 -0.3125 2.265625 -0.421875 2.265625 -0.78125 L 2.265625 -3.140625 L 3.9375 -3.140625 C 5.140625 -3.140625 6.203125 -3.953125 6.203125 -4.953125 Z M 5.1875 -4.953125 C 5.1875 -4.484375 5.1875 -3.40625 3.609375 -3.40625 L 2.234375 -3.40625 L 2.234375 -6.09375 C 2.234375 -6.421875 2.25 -6.484375 2.71875 -6.484375 L 3.609375 -6.484375 C 5.1875 -6.484375 5.1875 -5.4375 5.1875 -4.953125 Z M 5.1875 -4.953125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-12">
|
||||
<path d="M 4.6875 -2.125 C 4.6875 -3.40625 3.6875 -4.453125 2.484375 -4.453125 C 1.25 -4.453125 0.28125 -3.375 0.28125 -2.125 C 0.28125 -0.84375 1.3125 0.109375 2.484375 0.109375 C 3.6875 0.109375 4.6875 -0.859375 4.6875 -2.125 Z M 3.859375 -2.203125 C 3.859375 -1.84375 3.859375 -1.3125 3.640625 -0.875 C 3.421875 -0.421875 2.984375 -0.140625 2.484375 -0.140625 C 2.0625 -0.140625 1.625 -0.34375 1.359375 -0.8125 C 1.109375 -1.25 1.109375 -1.84375 1.109375 -2.203125 C 1.109375 -2.59375 1.109375 -3.140625 1.34375 -3.578125 C 1.609375 -4.03125 2.078125 -4.234375 2.484375 -4.234375 C 2.921875 -4.234375 3.34375 -4.015625 3.609375 -3.59375 C 3.859375 -3.171875 3.859375 -2.59375 3.859375 -2.203125 Z M 3.859375 -2.203125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-13">
|
||||
<path d="M 3.578125 -1.28125 C 3.578125 -1.796875 3.28125 -2.09375 3.171875 -2.21875 C 2.84375 -2.53125 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.859375 1.0625 -4.265625 1.921875 -4.265625 C 3.015625 -4.265625 3.0625 -3.375 3.078125 -3.0625 C 3.09375 -2.96875 3.203125 -2.96875 3.203125 -2.96875 C 3.328125 -2.96875 3.328125 -3.03125 3.328125 -3.21875 L 3.328125 -4.21875 C 3.328125 -4.390625 3.328125 -4.453125 3.21875 -4.453125 C 3.171875 -4.453125 3.15625 -4.453125 3.03125 -4.34375 C 3 -4.296875 2.890625 -4.203125 2.859375 -4.1875 C 2.484375 -4.453125 2.0625 -4.453125 1.921875 -4.453125 C 0.703125 -4.453125 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.125 1.359375 -2.0625 2.0625 -1.9375 C 2.296875 -1.890625 3.109375 -1.734375 3.109375 -1.015625 C 3.109375 -0.5 2.75 -0.109375 1.984375 -0.109375 C 1.140625 -0.109375 0.78125 -0.671875 0.59375 -1.515625 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.4375 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.765625 0.109375 1.984375 0.109375 C 3.125 0.109375 3.578125 -0.5625 3.578125 -1.28125 Z M 3.578125 -1.28125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-14">
|
||||
<path d="M 2.453125 0 L 2.453125 -0.3125 C 1.796875 -0.3125 1.765625 -0.359375 1.765625 -0.75 L 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 L 1.421875 -0.03125 C 1.765625 -0.03125 2.125 -0.015625 2.453125 0 Z M 1.90625 -6.015625 C 1.90625 -6.28125 1.6875 -6.546875 1.390625 -6.546875 C 1.046875 -6.546875 0.84375 -6.265625 0.84375 -6.015625 C 0.84375 -5.75 1.078125 -5.484375 1.375 -5.484375 C 1.71875 -5.484375 1.90625 -5.765625 1.90625 -6.015625 Z M 1.90625 -6.015625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-15">
|
||||
<path d="M 3.296875 -1.234375 L 3.296875 -1.796875 L 3.0625 -1.796875 L 3.0625 -1.25 C 3.0625 -0.515625 2.75 -0.140625 2.390625 -0.140625 C 1.71875 -0.140625 1.71875 -1.046875 1.71875 -1.21875 L 1.71875 -3.984375 L 3.140625 -3.984375 L 3.140625 -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.234375 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.953125 0.109375 2.3125 0.109375 C 3.03125 0.109375 3.296875 -0.59375 3.296875 -1.234375 Z M 3.296875 -1.234375 "/>
|
||||
</g>
|
||||
<g id="glyph-0-16">
|
||||
<path d="M 5.328125 0 L 5.328125 -0.3125 C 4.8125 -0.3125 4.5625 -0.3125 4.546875 -0.609375 L 4.546875 -2.515625 C 4.546875 -3.359375 4.546875 -3.671875 4.234375 -4.03125 C 4.09375 -4.203125 3.765625 -4.40625 3.1875 -4.40625 C 2.46875 -4.40625 2 -3.96875 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.90625 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 L 1.4375 -0.03125 L 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.484375 -4.1875 3.125 -4.1875 C 3.75 -4.1875 3.859375 -3.640625 3.859375 -3.078125 L 3.859375 -0.75 C 3.859375 -0.3125 3.75 -0.3125 3.078125 -0.3125 L 3.078125 0 L 4.203125 -0.03125 Z M 5.328125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-17">
|
||||
<path d="M 4.828125 -4.015625 C 4.828125 -4.1875 4.703125 -4.515625 4.3125 -4.515625 C 4.125 -4.515625 3.6875 -4.453125 3.265625 -4.046875 C 2.84375 -4.375 2.421875 -4.40625 2.203125 -4.40625 C 1.28125 -4.40625 0.59375 -3.71875 0.59375 -2.953125 C 0.59375 -2.515625 0.8125 -2.125 1.0625 -1.921875 C 0.9375 -1.765625 0.75 -1.4375 0.75 -1.09375 C 0.75 -0.78125 0.890625 -0.40625 1.1875 -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.546875 -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 C 1.0625 -1.359375 1.0625 -1.59375 1.21875 -1.796875 C 1.609375 -1.515625 2.015625 -1.484375 2.203125 -1.484375 C 3.140625 -1.484375 3.828125 -2.171875 3.828125 -2.9375 C 3.828125 -3.296875 3.65625 -3.671875 3.40625 -3.90625 C 3.765625 -4.234375 4.125 -4.296875 4.3125 -4.296875 C 4.3125 -4.296875 4.375 -4.296875 4.40625 -4.28125 C 4.296875 -4.234375 4.25 -4.125 4.25 -4.015625 C 4.25 -3.84375 4.375 -3.71875 4.53125 -3.71875 C 4.640625 -3.71875 4.828125 -3.796875 4.828125 -4.015625 Z M 3.078125 -2.953125 C 3.078125 -2.671875 3.0625 -2.359375 2.921875 -2.109375 C 2.84375 -1.984375 2.609375 -1.71875 2.203125 -1.71875 C 1.34375 -1.71875 1.34375 -2.703125 1.34375 -2.9375 C 1.34375 -3.203125 1.359375 -3.515625 1.5 -3.765625 C 1.578125 -3.890625 1.8125 -4.171875 2.203125 -4.171875 C 3.078125 -4.171875 3.078125 -3.171875 3.078125 -2.953125 Z M 4.171875 0.78125 C 4.171875 1.328125 3.46875 1.828125 2.484375 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 Z M 4.171875 0.78125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-18">
|
||||
<path d="M 7.3125 -2.40625 L 7.3125 -2.71875 L 6.09375 -2.6875 C 5.703125 -2.6875 4.859375 -2.6875 4.5 -2.71875 L 4.5 -2.40625 L 4.8125 -2.40625 C 5.71875 -2.40625 5.75 -2.296875 5.75 -1.9375 L 5.75 -1.296875 C 5.75 -0.171875 4.484375 -0.09375 4.203125 -0.09375 C 3.546875 -0.09375 1.578125 -0.4375 1.578125 -3.40625 C 1.578125 -6.375 3.546875 -6.703125 4.140625 -6.703125 C 5.203125 -6.703125 6.109375 -5.8125 6.3125 -4.34375 C 6.328125 -4.203125 6.328125 -4.1875 6.46875 -4.1875 C 6.625 -4.1875 6.625 -4.203125 6.625 -4.421875 L 6.625 -6.78125 C 6.625 -6.953125 6.625 -7.015625 6.515625 -7.015625 C 6.484375 -7.015625 6.4375 -7.015625 6.359375 -6.890625 L 5.859375 -6.15625 C 5.546875 -6.484375 5 -7.015625 4.015625 -7.015625 C 2.171875 -7.015625 0.5625 -5.4375 0.5625 -3.40625 C 0.5625 -1.359375 2.15625 0.21875 4.046875 0.21875 C 4.765625 0.21875 5.5625 -0.046875 5.90625 -0.625 C 6.03125 -0.40625 6.421875 -0.015625 6.546875 -0.015625 C 6.625 -0.015625 6.625 -0.09375 6.625 -0.234375 L 6.625 -1.96875 C 6.625 -2.359375 6.671875 -2.40625 7.3125 -2.40625 Z M 7.3125 -2.40625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-19">
|
||||
<path d="M 6.078125 -4.53125 L 5.796875 -6.765625 L 0.328125 -6.765625 L 0.328125 -6.453125 L 0.5625 -6.453125 C 1.328125 -6.453125 1.359375 -6.34375 1.359375 -5.984375 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.5625 -0.3125 L 0.328125 -0.3125 L 0.328125 0 C 0.671875 -0.03125 1.453125 -0.03125 1.84375 -0.03125 C 2.25 -0.03125 3.15625 -0.03125 3.515625 0 L 3.515625 -0.3125 L 3.1875 -0.3125 C 2.234375 -0.3125 2.234375 -0.4375 2.234375 -0.78125 L 2.234375 -3.234375 L 3.09375 -3.234375 C 4.046875 -3.234375 4.15625 -2.921875 4.15625 -2.0625 L 4.40625 -2.0625 L 4.40625 -4.703125 L 4.15625 -4.703125 C 4.15625 -3.875 4.046875 -3.546875 3.09375 -3.546875 L 2.234375 -3.546875 L 2.234375 -6.0625 C 2.234375 -6.390625 2.265625 -6.453125 2.734375 -6.453125 L 3.921875 -6.453125 C 5.421875 -6.453125 5.65625 -5.90625 5.828125 -4.53125 Z M 6.078125 -4.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-20">
|
||||
<path d="M 4.125 -1.1875 C 4.125 -1.28125 4.03125 -1.28125 4 -1.28125 C 3.90625 -1.28125 3.890625 -1.25 3.875 -1.1875 C 3.578125 -0.265625 2.9375 -0.140625 2.5625 -0.140625 C 2.046875 -0.140625 1.171875 -0.5625 1.171875 -2.171875 C 1.171875 -3.796875 1.984375 -4.203125 2.515625 -4.203125 C 2.59375 -4.203125 3.21875 -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.28125 -2.921875 3.5625 -2.921875 C 3.828125 -2.921875 4.015625 -3.09375 4.015625 -3.390625 C 4.015625 -4.078125 3.265625 -4.453125 2.5 -4.453125 C 1.25 -4.453125 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.125 -1.078125 4.125 -1.1875 Z M 4.125 -1.1875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-21">
|
||||
<path d="M 5.328125 0 L 5.328125 -0.3125 C 4.625 -0.3125 4.546875 -0.375 4.546875 -0.859375 L 4.546875 -4.40625 L 3.078125 -4.296875 L 3.078125 -3.984375 C 3.78125 -3.984375 3.859375 -3.90625 3.859375 -3.421875 L 3.859375 -1.65625 C 3.859375 -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.0625 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 L 3.890625 0.109375 Z M 5.328125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-0-22">
|
||||
<path d="M 7.171875 -3.375 C 7.171875 -5.40625 5.671875 -7.015625 3.859375 -7.015625 C 2.078125 -7.015625 0.5625 -5.421875 0.5625 -3.375 C 0.5625 -1.328125 2.09375 0.21875 3.859375 0.21875 C 5.671875 0.21875 7.171875 -1.359375 7.171875 -3.375 Z M 6.15625 -3.515625 C 6.15625 -0.875 4.78125 -0.046875 3.875 -0.046875 C 2.921875 -0.046875 1.578125 -0.921875 1.578125 -3.515625 C 1.578125 -6.09375 3.03125 -6.765625 3.859375 -6.765625 C 4.734375 -6.765625 6.15625 -6.0625 6.15625 -3.515625 Z M 6.15625 -3.515625 "/>
|
||||
</g>
|
||||
<g id="glyph-0-23">
|
||||
<path d="M 3.3125 0 L 3.3125 -0.3125 L 3.0625 -0.3125 C 2.265625 -0.3125 2.234375 -0.421875 2.234375 -0.78125 L 2.234375 -6.015625 C 2.234375 -6.375 2.265625 -6.484375 3.0625 -6.484375 L 3.3125 -6.484375 L 3.3125 -6.796875 C 2.96875 -6.765625 2.1875 -6.765625 1.796875 -6.765625 C 1.40625 -6.765625 0.625 -6.765625 0.28125 -6.796875 L 0.28125 -6.484375 L 0.53125 -6.484375 C 1.328125 -6.484375 1.359375 -6.375 1.359375 -6.015625 L 1.359375 -0.78125 C 1.359375 -0.421875 1.328125 -0.3125 0.53125 -0.3125 L 0.28125 -0.3125 L 0.28125 0 C 0.625 -0.03125 1.40625 -0.03125 1.796875 -0.03125 C 2.1875 -0.03125 2.96875 -0.03125 3.3125 0 Z M 3.3125 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 4.328125 -1.421875 C 4.328125 -1.46875 4.296875 -1.515625 4.203125 -1.515625 C 4.125 -1.515625 4.09375 -1.46875 4.078125 -1.390625 C 3.84375 -0.75 3.203125 -0.5625 2.875 -0.5625 C 2.671875 -0.5625 2.5 -0.609375 2.296875 -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.15625 -1.65625 2.515625 -1.953125 C 2.515625 -1.953125 3.125 -2.5 3.484375 -2.859375 C 4.421875 -3.78125 4.640625 -4.265625 4.640625 -4.296875 C 4.640625 -4.40625 4.53125 -4.40625 4.53125 -4.40625 C 4.46875 -4.40625 4.4375 -4.375 4.390625 -4.296875 C 4.09375 -3.8125 3.875 -3.65625 3.640625 -3.65625 C 3.40625 -3.65625 3.28125 -3.796875 3.140625 -3.96875 C 2.953125 -4.203125 2.78125 -4.40625 2.453125 -4.40625 C 1.703125 -4.40625 1.25 -3.46875 1.25 -3.265625 C 1.25 -3.21875 1.28125 -3.15625 1.359375 -3.15625 C 1.453125 -3.15625 1.46875 -3.203125 1.5 -3.265625 C 1.6875 -3.71875 2.265625 -3.734375 2.34375 -3.734375 C 2.546875 -3.734375 2.734375 -3.65625 2.96875 -3.578125 C 3.359375 -3.4375 3.46875 -3.4375 3.734375 -3.4375 C 3.375 -3 2.53125 -2.296875 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.484375 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-2">
|
||||
<path d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.734375 -1.515625 4.703125 -1.484375 4.6875 -1.40625 C 4.359375 -0.34375 3.6875 -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.328125 -3 C 3.390625 -3.265625 3.609375 -4.1875 4.3125 -4.1875 C 4.359375 -4.1875 4.59375 -4.1875 4.8125 -4.046875 C 4.53125 -4 4.328125 -3.75 4.328125 -3.515625 C 4.328125 -3.359375 4.4375 -3.171875 4.703125 -3.171875 C 4.921875 -3.171875 5.25 -3.34375 5.25 -3.75 C 5.25 -4.265625 4.65625 -4.40625 4.3125 -4.40625 C 3.75 -4.40625 3.390625 -3.875 3.28125 -3.640625 C 3.03125 -4.296875 2.484375 -4.40625 2.203125 -4.40625 C 1.171875 -4.40625 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.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.53125 2.1875 -1.140625 C 2.015625 -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.28125 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.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.375 0.109375 4.9375 -1.171875 4.9375 -1.421875 Z M 4.9375 -1.421875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 4.84375 -3.796875 C 4.875 -3.9375 4.875 -3.953125 4.875 -4.015625 C 4.875 -4.203125 4.734375 -4.296875 4.59375 -4.296875 C 4.484375 -4.296875 4.328125 -4.234375 4.234375 -4.078125 C 4.21875 -4.03125 4.140625 -3.71875 4.09375 -3.546875 L 3.90625 -2.75 L 3.453125 -0.953125 C 3.40625 -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.875 -1.984375 2.21875 -2.859375 C 2.375 -3.28125 2.421875 -3.390625 2.421875 -3.578125 C 2.421875 -4.03125 2.09375 -4.40625 1.609375 -4.40625 C 0.65625 -4.40625 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.953125 C 0.84375 -3.875 1.234375 -4.1875 1.578125 -4.1875 C 1.65625 -4.1875 1.828125 -4.1875 1.828125 -3.859375 C 1.828125 -3.609375 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.671875 0.109375 3.015625 -0.0625 3.296875 -0.34375 C 3.171875 0.171875 3.046875 0.671875 2.640625 1.1875 C 2.390625 1.53125 2.015625 1.828125 1.546875 1.828125 C 1.40625 1.828125 0.96875 1.796875 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.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.546875 2.046875 C 2.578125 2.046875 3.609375 1.140625 3.875 0.015625 Z M 4.84375 -3.796875 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 0.140625 163 L 454.9375 163 L 454.9375 193 L 0.140625 193 Z M 0.140625 163 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<path fill-rule="nonzero" fill="rgb(69.999695%, 69.999695%, 69.999695%)" 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 28.30716 46.207646 L 45.295857 47.099729 L 44.732437 57.855585 L -34.533805 53.700358 L -33.966471 42.944502 L -16.981687 43.836584 L -15.201434 9.867015 L 30.087413 12.238077 Z M 28.30716 46.207646 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(39.99939%, 39.99939%, 39.99939%)" 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 -61.769715 31.836507 C -54.719132 28.244701 -47.351624 25.267179 -39.780659 22.950894 L 53.164183 27.822135 C 60.453438 30.917036 67.464894 34.645785 74.10465 38.957518 L 73.036499 59.338477 L 47.561278 58.004266 L 48.273379 44.415655 L -36.650545 39.96698 L -37.362646 53.551678 L -62.837867 52.217466 Z M -61.769715 31.836507 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -32.268384 53.82165 L -32.659649 61.294799 L 42.075752 65.211355 L 42.467016 57.738206 Z M -32.268384 53.82165 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -26.931539 82.031809 L -27.252376 88.14727 L 33.890502 91.351725 L 34.211339 85.236263 Z M -26.931539 82.031809 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 4.706095 63.251121 L 27.219445 84.868475 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 4.706095 63.251121 L -19.939645 82.399597 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 -25.667755 61.658675 L -19.939645 82.399597 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 -25.667755 61.658675 L 3.637944 83.63208 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 35.079946 64.843566 L 3.637944 83.63208 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 35.079946 64.843566 L 27.219445 84.868475 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -13.667678 88.859371 L -15.447931 122.828941 L 18.525552 124.609193 L 20.305804 90.639624 Z M -13.667678 88.859371 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="214.216682" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-2" x="219.742858" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-3" x="224.716018" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-4" x="233.004287" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-5" x="238.530463" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-6" x="241.293551" y="41.578948"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(59.999084%, 59.999084%, 59.999084%)" 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 -85.042118 -10.204846 L -85.042118 -5.102759 L 85.040488 -5.102759 L 85.040488 -10.204846 Z M -85.042118 -10.204846 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(89.99939%, 89.99939%, 89.99939%)" fill-opacity="0.5" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -85.042118 -3.400759 L -85.042118 40.819936 L 85.040488 40.819936 L 85.040488 -3.400759 L 59.530054 -3.400759 L 59.530054 17.007589 L -59.52777 17.007589 L -59.52777 -3.400759 Z M -85.042118 -3.400759 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(39.99939%, 39.99939%, 39.99939%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -65.482814 6.803415 C -65.482814 10.559553 -68.52685 13.607502 -72.282988 13.607502 C -76.043038 13.607502 -79.087074 10.559553 -79.087074 6.803415 C -79.087074 3.047277 -76.043038 -0.000671732 -72.282988 -0.000671732 C -68.52685 -0.000671732 -65.482814 3.047277 -65.482814 6.803415 Z M -65.482814 6.803415 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(39.99939%, 39.99939%, 39.99939%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 79.089358 6.803415 C 79.089358 10.559553 76.041409 13.607502 72.285271 13.607502 C 68.529133 13.607502 65.481184 10.559553 65.481184 6.803415 C 65.481184 3.047277 68.529133 -0.000671732 72.285271 -0.000671732 C 76.041409 -0.000671732 79.089358 3.047277 79.089358 6.803415 Z M 79.089358 6.803415 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(39.99939%, 39.99939%, 39.99939%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -40.774471 19.699487 C -50.869091 22.786563 -60.592009 27.016131 -69.731944 32.290374 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(39.99939%, 39.99939%, 39.99939%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 40.776754 19.699487 C 50.867461 22.786563 60.594293 27.016131 69.734228 32.290374 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(100%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 2.428937 106.732326 L 206.524151 106.732326 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 0%, 0%)" fill-opacity="1" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(100%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -6.053417 -0.000234063 L -1.608654 1.682203 L -3.087633 -0.000234063 L -1.608654 -1.682671 Z M -6.053417 -0.000234063 " transform="matrix(0.998366, 0, 0, -0.998366, 291.094307, 47.323985)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 0%, 0%)" fill-opacity="1" d="M 231.457031 47.324219 C 231.457031 46.5 230.789062 45.832031 229.964844 45.832031 C 229.140625 45.832031 228.472656 46.5 228.472656 47.324219 C 228.472656 48.148438 229.140625 48.816406 229.964844 48.816406 C 230.789062 48.816406 231.457031 48.148438 231.457031 47.324219 Z M 231.457031 47.324219 "/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-7" x="278.785003" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-8" x="286.244744" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-9" x="289.559853" y="41.578948"/>
|
||||
<use xlink:href="#glyph-0-2" x="293.455827" y="41.578948"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-10" x="298.15049" y="41.578948"/>
|
||||
</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 -59.52777 102.048892 L -59.52777 120.094003 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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.052533 -0.00156957 L 1.60777 1.68478 L 3.086749 -0.00156957 L 1.60777 -1.684006 Z M 6.052533 -0.00156957 " transform="matrix(0, -0.998366, -0.998366, 0, 168.107808, 36.819987)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1" x="171.920907" y="31.50244"/>
|
||||
</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 -59.52777 102.048892 L -77.572882 102.048892 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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.054274 -0.000591859 L 1.609512 1.681845 L 3.088491 -0.000591859 L 1.609512 -1.683028 Z M 6.054274 -0.000591859 " transform="matrix(-0.998366, 0, 0, 0.998366, 152.927194, 52.000591)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-2" x="142.625854" y="48.189129"/>
|
||||
</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 -58.397017 102.048892 C -58.397017 102.674915 -58.901747 103.183558 -59.52777 103.183558 C -60.153793 103.183558 -60.662437 102.674915 -60.662437 102.048892 C -60.662437 101.422869 -60.153793 100.914225 -59.52777 100.914225 C -58.901747 100.914225 -58.397017 101.422869 -58.397017 102.048892 Z M -58.397017 102.048892 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<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 -54.993017 102.048892 C -54.993017 104.552984 -57.023679 106.583645 -59.52777 106.583645 C -62.035775 106.583645 -64.066437 104.552984 -64.066437 102.048892 C -64.066437 99.5448 -62.035775 97.514138 -59.52777 97.514138 C -57.023679 97.514138 -54.993017 99.5448 -54.993017 102.048892 Z M -54.993017 102.048892 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-3" x="176.945683" y="53.175967"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -102.050378 -17.008932 L 102.048749 -17.008932 L 102.048749 136.065413 L -102.050378 136.065413 Z M -102.050378 -17.008932 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-11" x="185.86209" y="11.797691"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-12" x="192.353059" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-13" x="197.326219" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-14" x="201.250043" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-15" x="204.013131" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-14" x="207.881255" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-12" x="210.644343" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-16" x="215.617503" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-14" x="221.143679" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-16" x="223.906767" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-17" x="229.432943" y="11.797691"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="237.718228" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-15" x="243.244404" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-2" x="247.112528" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-15" x="252.085689" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-14" x="255.953813" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-12" x="258.716901" y="11.797691"/>
|
||||
<use xlink:href="#glyph-0-16" x="263.690061" y="11.797691"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(69.999695%, 69.999695%, 69.999695%)" fill-opacity="1" d="M 1.136719 192.371094 L 1.136719 164.070312 L 453.945312 164.070312 L 453.945312 192.371094 Z M 1.136719 192.371094 "/>
|
||||
<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 -226.77371 -38.551947 L -226.77371 -10.204846 L 226.775993 -10.204846 L 226.775993 -38.551947 Z M -226.77371 -38.551947 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-18" x="195.635094" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-9" x="203.439972" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-2" x="207.335946" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-16" x="212.309107" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-14" x="217.835282" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-15" x="220.59837" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-6" x="224.466495" y="181.645701"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-19" x="232.199759" y="181.645701"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-9" x="237.867173" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-2" x="241.763147" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-3" x="246.736307" y="181.645701"/>
|
||||
<use xlink:href="#glyph-0-6" x="255.024576" y="181.645701"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" 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 184.253386 74.836457 L 184.253386 131.530659 L 155.906285 131.530659 L 155.906285 74.836457 Z M 184.253386 74.836457 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 170.081791 -10.204846 L 170.081791 -4.535425 L 167.589438 -3.040796 L 172.570232 -0.0515361 L 167.589438 2.937723 L 172.570232 5.926983 L 167.589438 8.91233 L 172.570232 11.901589 L 167.589438 14.890849 L 172.570232 17.880108 L 167.589438 20.869368 L 172.570232 23.858627 L 167.589438 26.847887 L 172.570232 29.837146 L 167.589438 32.826406 L 172.570232 35.811753 L 167.589438 38.801012 L 172.570232 41.790272 L 167.589438 44.779531 L 172.570232 47.768791 L 167.589438 50.75805 L 172.570232 53.74731 L 167.589438 56.736569 L 172.570232 59.725829 L 167.589438 62.711176 L 172.570232 65.700435 L 170.081791 67.195065 L 170.081791 74.836457 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M 147.404111 -15.874266 L 192.759472 -15.874266 L 192.759472 137.20008 L 147.404111 137.20008 Z M 147.404111 -15.874266 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-19" x="362.541919" y="10.665544"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-12" x="368.209332" y="10.665544"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-20" x="373.451043" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-21" x="377.872183" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-13" x="383.398359" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-14" x="387.322183" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-16" x="390.085271" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-17" x="395.611446" y="10.665544"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-22" x="403.906678" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-4" x="411.642926" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-15" x="417.169102" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-14" x="421.037227" y="10.665544"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-20" x="423.790368" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-13" x="428.211508" y="10.665544"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(79.998779%, 79.998779%, 79.998779%)" 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 -184.255015 74.836457 L -184.255015 131.530659 L -155.907914 131.530659 L -155.907914 74.836457 Z M -184.255015 74.836457 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -170.079508 -10.204846 L -170.079508 -4.535425 L -172.571862 -3.040796 L -167.591067 -0.0515361 L -172.571862 2.937723 L -167.591067 5.926983 L -172.571862 8.91233 L -167.591067 11.901589 L -172.571862 14.890849 L -167.591067 17.880108 L -172.571862 20.869368 L -167.591067 23.858627 L -172.571862 26.847887 L -167.591067 29.837146 L -172.571862 32.826406 L -167.591067 35.811753 L -172.571862 38.801012 L -167.591067 41.790272 L -172.571862 44.779531 L -167.591067 47.768791 L -172.571862 50.75805 L -167.591067 53.74731 L -172.571862 56.736569 L -167.591067 59.725829 L -172.571862 62.711176 L -167.591067 65.700435 L -170.079508 67.195065 L -170.079508 74.836457 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<path fill="none" stroke-width="0.99628" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(50%, 50%, 50%)" stroke-opacity="1" stroke-dasharray="2.98883 2.98883" stroke-miterlimit="10" d="M -192.757189 -15.874266 L -147.401827 -15.874266 L -147.401827 137.20008 L -192.757189 137.20008 Z M -192.757189 -15.874266 " transform="matrix(0.998366, 0, 0, -0.998366, 227.539876, 153.882142)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-23" x="22.747059" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-3" x="26.338676" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-2" x="34.626945" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-17" x="39.600105" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-6" x="44.573266" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-9" x="48.994405" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-10" x="52.890379" y="10.665544"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="61.452172" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-10" x="66.978348" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-13" x="72.228016" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-15" x="76.15184" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-6" x="80.019964" y="10.665544"/>
|
||||
<use xlink:href="#glyph-0-3" x="84.441104" y="10.665544"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 45 KiB |
BIN
figs/id31_microstation_cad_view.pdf
Normal file
BIN
figs/id31_microstation_cad_view.png
Normal file
After Width: | Height: | Size: 329 KiB |
BIN
figs/id31_microstation_picture.pdf
Normal file
BIN
figs/id31_microstation_picture.png
Normal file
After Width: | Height: | Size: 218 KiB |
114
figs/id31_microstation_picture.svg
Normal file
After Width: | Height: | Size: 905 KiB |
BIN
figs/mass_spring_damper_nass.pdf
Normal file
BIN
figs/mass_spring_damper_nass.png
Normal file
After Width: | Height: | Size: 12 KiB |
218
figs/mass_spring_damper_nass.svg
Normal file
@ -0,0 +1,218 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="113.419" height="172.075" viewBox="0 0 113.419 172.075">
|
||||
<defs>
|
||||
<g>
|
||||
<g id="glyph-0-0">
|
||||
</g>
|
||||
<g id="glyph-0-1">
|
||||
<path d="M 6.84375 -3.6875 C 6.84375 -4.234375 6.578125 -4.375 6.40625 -4.375 C 6.15625 -4.375 5.90625 -4.125 5.90625 -3.90625 C 5.90625 -3.78125 5.96875 -3.71875 6.0625 -3.640625 C 6.171875 -3.53125 6.421875 -3.265625 6.421875 -2.796875 C 6.421875 -2.453125 6.125 -1.484375 5.875 -0.984375 C 5.609375 -0.453125 5.265625 -0.109375 4.78125 -0.109375 C 4.3125 -0.109375 4.046875 -0.40625 4.046875 -0.96875 C 4.046875 -1.25 4.125 -1.5625 4.15625 -1.6875 L 4.578125 -3.359375 C 4.625 -3.578125 4.71875 -3.9375 4.71875 -4 C 4.71875 -4.1875 4.59375 -4.265625 4.4375 -4.265625 C 4.3125 -4.265625 4.140625 -4.1875 4.078125 -4 C 4.046875 -3.921875 3.578125 -2.03125 3.5 -1.765625 C 3.4375 -1.46875 3.421875 -1.296875 3.421875 -1.125 C 3.421875 -1.015625 3.421875 -0.984375 3.421875 -0.9375 C 3.203125 -0.421875 2.90625 -0.109375 2.515625 -0.109375 C 1.71875 -0.109375 1.71875 -0.84375 1.71875 -1.015625 C 1.71875 -1.328125 1.765625 -1.71875 2.234375 -2.9375 C 2.34375 -3.234375 2.40625 -3.375 2.40625 -3.5625 C 2.40625 -4.015625 2.078125 -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.21875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.140625 C 1.203125 -1.96875 1.078125 -1.515625 1.078125 -1.140625 C 1.078125 -0.234375 1.75 0.109375 2.484375 0.109375 C 2.65625 0.109375 3.125 0.109375 3.515625 -0.578125 C 3.78125 0.046875 4.453125 0.109375 4.75 0.109375 C 5.5 0.109375 5.9375 -0.515625 6.1875 -1.109375 C 6.53125 -1.875 6.84375 -3.203125 6.84375 -3.6875 Z M 6.84375 -3.6875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-2">
|
||||
<path d="M 5.46875 -6.296875 C 5.46875 -6.75 5.015625 -6.984375 4.609375 -6.984375 C 4.265625 -6.984375 3.640625 -6.8125 3.34375 -5.828125 C 3.28125 -5.609375 3.265625 -5.515625 3.015625 -4.265625 L 2.34375 -4.265625 C 2.15625 -4.265625 2.046875 -4.265625 2.046875 -4.078125 C 2.046875 -3.96875 2.125 -3.96875 2.3125 -3.96875 L 2.96875 -3.96875 L 2.234375 -0.046875 C 2.046875 0.90625 1.875 1.8125 1.359375 1.8125 C 1.328125 1.8125 1.078125 1.8125 0.890625 1.640625 C 1.34375 1.609375 1.4375 1.25 1.4375 1.09375 C 1.4375 0.875 1.265625 0.75 1.0625 0.75 C 0.8125 0.75 0.53125 0.96875 0.53125 1.34375 C 0.53125 1.796875 0.953125 2.03125 1.359375 2.03125 C 1.90625 2.03125 2.3125 1.453125 2.484375 1.0625 C 2.796875 0.453125 3.03125 -0.75 3.046875 -0.828125 L 3.640625 -3.96875 L 4.484375 -3.96875 C 4.6875 -3.96875 4.78125 -3.96875 4.78125 -4.15625 C 4.78125 -4.265625 4.6875 -4.265625 4.515625 -4.265625 L 3.6875 -4.265625 C 3.796875 -4.84375 3.796875 -4.828125 3.90625 -5.40625 C 3.9375 -5.609375 4.078125 -6.3125 4.140625 -6.421875 C 4.234375 -6.625 4.390625 -6.765625 4.609375 -6.765625 C 4.640625 -6.765625 4.90625 -6.765625 5.09375 -6.59375 C 4.65625 -6.546875 4.5625 -6.203125 4.5625 -6.046875 C 4.5625 -5.828125 4.734375 -5.703125 4.921875 -5.703125 C 5.1875 -5.703125 5.46875 -5.921875 5.46875 -6.296875 Z M 5.46875 -6.296875 "/>
|
||||
</g>
|
||||
<g id="glyph-0-3">
|
||||
<path d="M 4.9375 -1.421875 C 4.9375 -1.515625 4.84375 -1.515625 4.8125 -1.515625 C 4.71875 -1.515625 4.703125 -1.46875 4.671875 -1.34375 C 4.5 -0.6875 4.328125 -0.109375 3.921875 -0.109375 C 3.65625 -0.109375 3.625 -0.359375 3.625 -0.5625 C 3.625 -0.796875 3.640625 -0.875 3.6875 -1.046875 L 5.109375 -6.765625 C 5.109375 -6.765625 5.109375 -6.875 4.984375 -6.875 C 4.828125 -6.875 3.890625 -6.78125 3.71875 -6.765625 C 3.640625 -6.75 3.59375 -6.703125 3.59375 -6.578125 C 3.59375 -6.453125 3.671875 -6.453125 3.828125 -6.453125 C 4.296875 -6.453125 4.3125 -6.390625 4.3125 -6.296875 L 4.296875 -6.09375 L 3.6875 -3.75 C 3.515625 -4.109375 3.234375 -4.375 2.78125 -4.375 C 1.625 -4.375 0.390625 -2.921875 0.390625 -1.46875 C 0.390625 -0.546875 0.9375 0.109375 1.71875 0.109375 C 1.90625 0.109375 2.40625 0.0625 3 -0.640625 C 3.078125 -0.21875 3.421875 0.109375 3.90625 0.109375 C 4.25 0.109375 4.484375 -0.125 4.640625 -0.4375 C 4.796875 -0.796875 4.9375 -1.421875 4.9375 -1.421875 Z M 3.546875 -3.125 L 3.046875 -1.171875 C 3 -1 3 -0.984375 2.859375 -0.8125 C 2.421875 -0.265625 2.015625 -0.109375 1.734375 -0.109375 C 1.234375 -0.109375 1.09375 -0.65625 1.09375 -1.046875 C 1.09375 -1.53125 1.421875 -2.75 1.640625 -3.203125 C 1.953125 -3.796875 2.390625 -4.15625 2.796875 -4.15625 C 3.4375 -4.15625 3.578125 -3.34375 3.578125 -3.28125 C 3.578125 -3.234375 3.5625 -3.171875 3.546875 -3.125 Z M 3.546875 -3.125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-4">
|
||||
<path d="M 7.328125 -0.203125 C 7.328125 -0.3125 7.21875 -0.3125 7.125 -0.3125 C 6.71875 -0.3125 6.59375 -0.40625 6.453125 -0.75 L 5.046875 -4 C 5.03125 -4.03125 5 -4.109375 5 -4.140625 C 5 -4.140625 5.171875 -4.296875 5.28125 -4.375 L 7.015625 -5.703125 C 7.9375 -6.390625 8.328125 -6.421875 8.625 -6.453125 C 8.703125 -6.46875 8.8125 -6.484375 8.8125 -6.65625 C 8.8125 -6.703125 8.78125 -6.765625 8.703125 -6.765625 C 8.484375 -6.765625 8.234375 -6.734375 8 -6.734375 C 7.640625 -6.734375 7.25 -6.765625 6.890625 -6.765625 C 6.828125 -6.765625 6.703125 -6.765625 6.703125 -6.5625 C 6.703125 -6.5 6.75 -6.46875 6.828125 -6.453125 C 7.046875 -6.4375 7.125 -6.390625 7.125 -6.25 C 7.125 -6.078125 6.828125 -5.84375 6.78125 -5.796875 L 2.90625 -2.828125 L 3.703125 -6 C 3.796875 -6.359375 3.8125 -6.453125 4.53125 -6.453125 C 4.78125 -6.453125 4.875 -6.453125 4.875 -6.65625 C 4.875 -6.75 4.796875 -6.765625 4.734375 -6.765625 L 3.46875 -6.734375 L 2.1875 -6.765625 C 2.125 -6.765625 1.984375 -6.765625 1.984375 -6.578125 C 1.984375 -6.453125 2.078125 -6.453125 2.28125 -6.453125 C 2.40625 -6.453125 2.578125 -6.453125 2.703125 -6.4375 C 2.859375 -6.421875 2.921875 -6.390625 2.921875 -6.28125 C 2.921875 -6.234375 2.90625 -6.21875 2.875 -6.09375 L 1.5625 -0.765625 C 1.453125 -0.390625 1.4375 -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 L 1.78125 -0.03125 L 2.421875 -0.015625 C 2.640625 -0.015625 2.859375 0 3.0625 0 C 3.125 0 3.265625 0 3.265625 -0.203125 C 3.265625 -0.3125 3.171875 -0.3125 2.984375 -0.3125 C 2.609375 -0.3125 2.34375 -0.3125 2.34375 -0.484375 C 2.34375 -0.5625 2.390625 -0.765625 2.421875 -0.921875 L 2.828125 -2.484375 L 4.296875 -3.625 L 5.453125 -0.953125 C 5.5625 -0.6875 5.5625 -0.671875 5.5625 -0.609375 C 5.5625 -0.3125 5.140625 -0.3125 5.046875 -0.3125 C 4.9375 -0.3125 4.828125 -0.3125 4.828125 -0.109375 C 4.828125 0 4.96875 0 4.96875 0 C 5.375 0 5.78125 -0.03125 6.1875 -0.03125 C 6.40625 -0.03125 6.9375 0 7.15625 0 C 7.203125 0 7.328125 0 7.328125 -0.203125 Z M 7.328125 -0.203125 "/>
|
||||
</g>
|
||||
<g id="glyph-0-5">
|
||||
<path d="M 5.375 -1.421875 C 5.375 -1.515625 5.296875 -1.515625 5.265625 -1.515625 C 5.15625 -1.515625 5.15625 -1.46875 5.125 -1.34375 C 4.984375 -0.78125 4.796875 -0.109375 4.375 -0.109375 C 4.171875 -0.109375 4.078125 -0.234375 4.078125 -0.5625 C 4.078125 -0.78125 4.1875 -1.25 4.265625 -1.59375 L 4.546875 -2.671875 C 4.578125 -2.8125 4.671875 -3.1875 4.71875 -3.34375 C 4.765625 -3.5625 4.859375 -3.9375 4.859375 -4 C 4.859375 -4.1875 4.71875 -4.265625 4.578125 -4.265625 C 4.53125 -4.265625 4.265625 -4.265625 4.1875 -3.921875 L 3.453125 -0.9375 C 3.4375 -0.90625 3.046875 -0.109375 2.3125 -0.109375 C 1.796875 -0.109375 1.703125 -0.5625 1.703125 -0.921875 C 1.703125 -1.46875 1.984375 -2.265625 2.234375 -2.9375 C 2.359375 -3.234375 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.8125 -3.796875 1.1875 -4.15625 1.5625 -4.15625 C 1.65625 -4.15625 1.8125 -4.15625 1.8125 -3.828125 C 1.8125 -3.59375 1.703125 -3.3125 1.640625 -3.15625 C 1.28125 -2.171875 1.0625 -1.5625 1.0625 -1.078125 C 1.0625 -0.140625 1.75 0.109375 2.28125 0.109375 C 2.9375 0.109375 3.296875 -0.34375 3.46875 -0.5625 C 3.578125 -0.15625 3.921875 0.109375 4.34375 0.109375 C 4.703125 0.109375 4.921875 -0.125 5.078125 -0.4375 C 5.25 -0.796875 5.375 -1.421875 5.375 -1.421875 Z M 5.375 -1.421875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-0">
|
||||
</g>
|
||||
<g id="glyph-1-1">
|
||||
<path d="M 3.78125 -2.78125 C 3.78125 -2.9375 3.65625 -3.125 3.375 -3.125 C 3.265625 -3.125 2.890625 -3.109375 2.5625 -2.8125 C 2.359375 -2.96875 2.0625 -3.0625 1.765625 -3.0625 C 1.046875 -3.0625 0.53125 -2.578125 0.53125 -2.046875 C 0.53125 -1.765625 0.671875 -1.515625 0.859375 -1.34375 C 0.8125 -1.28125 0.65625 -1.046875 0.65625 -0.78125 C 0.65625 -0.6875 0.671875 -0.359375 0.9375 -0.15625 C 0.625 -0.0625 0.265625 0.171875 0.265625 0.53125 C 0.265625 1.046875 1.03125 1.421875 1.96875 1.421875 C 2.84375 1.421875 3.671875 1.078125 3.671875 0.515625 C 3.671875 0.3125 3.59375 -0.0625 3.203125 -0.265625 C 2.796875 -0.484375 2.390625 -0.484375 1.71875 -0.484375 C 1.5625 -0.484375 1.3125 -0.484375 1.25 -0.5 C 1.03125 -0.546875 0.90625 -0.75 0.90625 -0.953125 C 0.90625 -1.125 0.953125 -1.171875 1 -1.234375 C 1.109375 -1.171875 1.359375 -1.015625 1.75 -1.015625 C 2.46875 -1.015625 2.984375 -1.5 2.984375 -2.046875 C 2.984375 -2.3125 2.859375 -2.53125 2.703125 -2.703125 C 3.015625 -2.921875 3.28125 -2.9375 3.40625 -2.9375 C 3.375 -2.90625 3.34375 -2.875 3.34375 -2.765625 C 3.34375 -2.625 3.4375 -2.546875 3.5625 -2.546875 C 3.65625 -2.546875 3.78125 -2.609375 3.78125 -2.78125 Z M 2.4375 -2.046875 C 2.4375 -1.921875 2.4375 -1.65625 2.296875 -1.46875 C 2.203125 -1.359375 2.015625 -1.234375 1.765625 -1.234375 C 1.078125 -1.234375 1.078125 -1.890625 1.078125 -2.046875 C 1.078125 -2.15625 1.078125 -2.421875 1.21875 -2.609375 C 1.3125 -2.71875 1.5 -2.84375 1.75 -2.84375 C 2.4375 -2.84375 2.4375 -2.1875 2.4375 -2.046875 Z M 3.25 0.53125 C 3.25 0.890625 2.703125 1.21875 1.96875 1.21875 C 1.234375 1.21875 0.6875 0.890625 0.6875 0.53125 C 0.6875 0.28125 0.921875 -0.015625 1.359375 -0.015625 L 1.765625 -0.015625 C 2.375 -0.015625 3.25 -0.015625 3.25 0.53125 Z M 3.25 0.53125 "/>
|
||||
</g>
|
||||
<g id="glyph-1-2">
|
||||
<path d="M 2.828125 -2.609375 C 2.828125 -2.84375 2.609375 -3.0625 2.28125 -3.0625 C 1.921875 -3.0625 1.546875 -2.84375 1.34375 -2.3125 L 1.328125 -2.3125 L 1.328125 -3.0625 L 0.34375 -2.984375 L 0.34375 -2.734375 C 0.8125 -2.734375 0.859375 -2.6875 0.859375 -2.34375 L 0.859375 -0.546875 C 0.859375 -0.25 0.796875 -0.25 0.34375 -0.25 L 0.34375 0 C 0.375 0 0.84375 -0.03125 1.125 -0.03125 L 2.03125 0 L 2.03125 -0.25 L 1.890625 -0.25 C 1.375 -0.25 1.375 -0.328125 1.375 -0.5625 L 1.375 -1.578125 C 1.375 -2.171875 1.65625 -2.859375 2.3125 -2.859375 C 2.25 -2.8125 2.1875 -2.71875 2.1875 -2.609375 C 2.1875 -2.390625 2.375 -2.296875 2.5 -2.296875 C 2.671875 -2.296875 2.828125 -2.40625 2.828125 -2.609375 Z M 2.828125 -2.609375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-3">
|
||||
<path d="M 3.78125 -0.625 L 3.78125 -1 L 3.53125 -1 L 3.53125 -0.625 C 3.53125 -0.5625 3.53125 -0.234375 3.28125 -0.234375 C 3.03125 -0.234375 3.03125 -0.5625 3.03125 -0.640625 L 3.03125 -1.859375 C 3.03125 -2.234375 3.03125 -2.484375 2.703125 -2.75 C 2.421875 -2.984375 2.09375 -3.09375 1.671875 -3.09375 C 1.015625 -3.09375 0.5625 -2.84375 0.5625 -2.421875 C 0.5625 -2.203125 0.703125 -2.078125 0.890625 -2.078125 C 1.078125 -2.078125 1.21875 -2.21875 1.21875 -2.40625 C 1.21875 -2.53125 1.15625 -2.671875 0.96875 -2.71875 C 1.21875 -2.90625 1.625 -2.90625 1.671875 -2.90625 C 2.046875 -2.90625 2.484375 -2.640625 2.484375 -2.0625 L 2.484375 -1.84375 C 2.09375 -1.828125 1.640625 -1.8125 1.125 -1.625 C 0.5 -1.390625 0.3125 -1.015625 0.3125 -0.703125 C 0.3125 -0.109375 1.03125 0.0625 1.53125 0.0625 C 2.078125 0.0625 2.40625 -0.25 2.546875 -0.515625 C 2.578125 -0.234375 2.765625 0.03125 3.09375 0.03125 C 3.09375 0.03125 3.78125 0.03125 3.78125 -0.625 Z M 2.484375 -0.984375 C 2.484375 -0.3125 1.890625 -0.125 1.578125 -0.125 C 1.234375 -0.125 0.890625 -0.359375 0.890625 -0.703125 C 0.890625 -1.078125 1.234375 -1.609375 2.484375 -1.671875 Z M 2.484375 -0.984375 "/>
|
||||
</g>
|
||||
<g id="glyph-1-4">
|
||||
<path d="M 4.09375 0 L 4.09375 -0.25 C 3.640625 -0.25 3.578125 -0.25 3.578125 -0.546875 L 3.578125 -2.109375 C 3.578125 -2.703125 3.28125 -3.0625 2.53125 -3.0625 C 1.96875 -3.0625 1.59375 -2.75 1.40625 -2.390625 L 1.390625 -2.390625 L 1.390625 -3.0625 L 0.375 -2.984375 L 0.375 -2.734375 C 0.84375 -2.734375 0.890625 -2.6875 0.890625 -2.34375 L 0.890625 -0.546875 C 0.890625 -0.25 0.828125 -0.25 0.375 -0.25 L 0.375 0 C 0.375 0 0.875 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.90625 0 1.96875 0 L 1.96875 -0.25 C 1.515625 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -1.796875 C 1.4375 -2.53125 2.015625 -2.859375 2.484375 -2.859375 C 2.96875 -2.859375 3.03125 -2.484375 3.03125 -2.125 L 3.03125 -0.546875 C 3.03125 -0.25 2.953125 -0.25 2.5 -0.25 L 2.5 0 C 2.5 0 3 -0.03125 3.296875 -0.03125 C 3.546875 -0.03125 4.03125 0 4.09375 0 Z M 4.09375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-5">
|
||||
<path d="M 1.90625 0 L 1.90625 -0.25 C 1.5 -0.25 1.421875 -0.25 1.421875 -0.546875 L 1.421875 -3.0625 L 0.40625 -2.984375 L 0.40625 -2.734375 C 0.84375 -2.734375 0.90625 -2.6875 0.90625 -2.359375 L 0.90625 -0.546875 C 0.90625 -0.25 0.84375 -0.25 0.390625 -0.25 L 0.390625 0 C 0.390625 0 0.890625 -0.03125 1.171875 -0.03125 C 1.40625 -0.03125 1.65625 -0.015625 1.90625 0 Z M 1.515625 -4.171875 C 1.515625 -4.390625 1.34375 -4.578125 1.125 -4.578125 C 0.890625 -4.578125 0.734375 -4.390625 0.734375 -4.1875 C 0.734375 -3.96875 0.90625 -3.78125 1.125 -3.78125 C 1.359375 -3.78125 1.515625 -3.96875 1.515625 -4.171875 Z M 1.515625 -4.171875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-6">
|
||||
<path d="M 2.609375 -0.875 L 2.609375 -1.25 L 2.359375 -1.25 L 2.359375 -0.875 C 2.359375 -0.40625 2.140625 -0.15625 1.875 -0.15625 C 1.390625 -0.15625 1.390625 -0.734375 1.390625 -0.859375 L 1.390625 -2.734375 L 2.484375 -2.734375 L 2.484375 -2.984375 L 1.390625 -2.984375 L 1.390625 -4.265625 L 1.15625 -4.265625 C 1.15625 -3.640625 0.875 -2.953125 0.203125 -2.9375 L 0.203125 -2.734375 L 0.84375 -2.734375 L 0.84375 -0.875 C 0.84375 -0.09375 1.421875 0.0625 1.8125 0.0625 C 2.28125 0.0625 2.609375 -0.328125 2.609375 -0.875 Z M 2.609375 -0.875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-7">
|
||||
<path d="M 3.25 -0.828125 C 3.25 -0.859375 3.234375 -0.921875 3.125 -0.921875 C 3.03125 -0.921875 3.03125 -0.890625 3 -0.8125 C 2.78125 -0.25 2.265625 -0.15625 2.015625 -0.15625 C 1.6875 -0.15625 1.375 -0.296875 1.171875 -0.5625 C 0.90625 -0.890625 0.90625 -1.3125 0.90625 -1.578125 L 3.046875 -1.578125 C 3.203125 -1.578125 3.25 -1.578125 3.25 -1.734375 C 3.25 -2.34375 2.90625 -3.09375 1.875 -3.09375 C 0.96875 -3.09375 0.265625 -2.375 0.265625 -1.515625 C 0.265625 -0.640625 1.046875 0.0625 1.96875 0.0625 C 2.90625 0.0625 3.25 -0.6875 3.25 -0.828125 Z M 2.765625 -1.765625 L 0.90625 -1.765625 C 0.984375 -2.734375 1.609375 -2.90625 1.875 -2.90625 C 2.71875 -2.90625 2.75 -1.9375 2.765625 -1.765625 Z M 2.765625 -1.765625 "/>
|
||||
</g>
|
||||
<g id="glyph-1-8">
|
||||
<path d="M 2.171875 -1.25 L 2.171875 -1.734375 L 0.140625 -1.734375 L 0.140625 -1.25 Z M 2.171875 -1.25 "/>
|
||||
</g>
|
||||
<g id="glyph-1-9">
|
||||
<path d="M 2.828125 -0.90625 C 2.828125 -1.171875 2.703125 -1.375 2.53125 -1.546875 C 2.265625 -1.796875 1.9375 -1.84375 1.703125 -1.890625 C 1.140625 -1.984375 0.6875 -2.0625 0.6875 -2.4375 C 0.6875 -2.65625 0.875 -2.921875 1.546875 -2.921875 C 2.34375 -2.921875 2.375 -2.359375 2.390625 -2.171875 C 2.40625 -2.09375 2.484375 -2.09375 2.515625 -2.09375 C 2.625 -2.09375 2.625 -2.140625 2.625 -2.265625 L 2.625 -2.90625 C 2.625 -3.03125 2.625 -3.09375 2.53125 -3.09375 C 2.5 -3.09375 2.484375 -3.09375 2.390625 -3.015625 C 2.375 -3 2.3125 -2.9375 2.265625 -2.90625 C 2.0625 -3.046875 1.796875 -3.09375 1.546875 -3.09375 C 0.546875 -3.09375 0.3125 -2.578125 0.3125 -2.234375 C 0.3125 -2 0.40625 -1.828125 0.578125 -1.6875 C 0.84375 -1.453125 1.109375 -1.40625 1.53125 -1.34375 C 1.875 -1.28125 2.4375 -1.171875 2.4375 -0.71875 C 2.4375 -0.4375 2.25 -0.125 1.59375 -0.125 C 0.921875 -0.125 0.6875 -0.5625 0.5625 -1.03125 C 0.53125 -1.125 0.53125 -1.15625 0.4375 -1.15625 C 0.3125 -1.15625 0.3125 -1.109375 0.3125 -0.96875 L 0.3125 -0.109375 C 0.3125 0 0.3125 0.0625 0.40625 0.0625 C 0.46875 0.0625 0.609375 -0.078125 0.75 -0.234375 C 1.046875 0.0625 1.421875 0.0625 1.59375 0.0625 C 2.484375 0.0625 2.828125 -0.421875 2.828125 -0.90625 Z M 2.828125 -0.90625 "/>
|
||||
</g>
|
||||
<g id="glyph-1-10">
|
||||
<path d="M 3.671875 -1.484375 C 3.671875 -2.34375 2.921875 -3.09375 1.96875 -3.09375 C 1.015625 -3.09375 0.265625 -2.34375 0.265625 -1.484375 C 0.265625 -0.625 1.03125 0.0625 1.96875 0.0625 C 2.90625 0.0625 3.671875 -0.625 3.671875 -1.484375 Z M 3.03125 -1.546875 C 3.03125 -1.203125 3.015625 -0.84375 2.8125 -0.5625 C 2.625 -0.296875 2.3125 -0.15625 1.96875 -0.15625 C 1.71875 -0.15625 1.34375 -0.234375 1.109375 -0.578125 C 0.921875 -0.859375 0.90625 -1.21875 0.90625 -1.546875 C 0.90625 -1.84375 0.90625 -2.25 1.15625 -2.546875 C 1.328125 -2.75 1.609375 -2.90625 1.96875 -2.90625 C 2.375 -2.90625 2.671875 -2.703125 2.828125 -2.484375 C 3.015625 -2.21875 3.03125 -1.875 3.03125 -1.546875 Z M 3.03125 -1.546875 "/>
|
||||
</g>
|
||||
<g id="glyph-1-11">
|
||||
<path d="M 4.09375 0 L 4.09375 -0.25 C 3.640625 -0.25 3.578125 -0.25 3.578125 -0.546875 L 3.578125 -2.109375 C 3.578125 -2.703125 3.28125 -3.0625 2.53125 -3.0625 C 1.921875 -3.0625 1.578125 -2.6875 1.421875 -2.421875 L 1.421875 -4.8125 L 0.375 -4.734375 L 0.375 -4.484375 C 0.84375 -4.484375 0.890625 -4.4375 0.890625 -4.09375 L 0.890625 -0.546875 C 0.890625 -0.25 0.828125 -0.25 0.375 -0.25 L 0.375 0 C 0.375 0 0.875 -0.03125 1.171875 -0.03125 C 1.421875 -0.03125 1.90625 0 1.96875 0 L 1.96875 -0.25 C 1.515625 -0.25 1.4375 -0.25 1.4375 -0.546875 L 1.4375 -1.796875 C 1.4375 -2.53125 2.015625 -2.859375 2.484375 -2.859375 C 2.96875 -2.859375 3.03125 -2.484375 3.03125 -2.125 L 3.03125 -0.546875 C 3.03125 -0.25 2.953125 -0.25 2.5 -0.25 L 2.5 0 C 2.5 0 3 -0.03125 3.296875 -0.03125 C 3.546875 -0.03125 4.03125 0 4.09375 0 Z M 4.09375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-12">
|
||||
<path d="M 3.984375 0 L 3.984375 -0.25 C 3.515625 -0.25 3.46875 -0.296875 3.296875 -0.46875 L 2.359375 -1.546875 L 2.296875 -1.625 C 2.296875 -1.640625 2.75 -2.140625 2.8125 -2.203125 C 3.0625 -2.46875 3.296875 -2.734375 3.84375 -2.734375 L 3.84375 -2.984375 C 3.65625 -2.96875 3.453125 -2.96875 3.265625 -2.96875 C 3.0625 -2.96875 2.78125 -2.96875 2.578125 -2.984375 L 2.578125 -2.734375 C 2.703125 -2.71875 2.71875 -2.640625 2.71875 -2.578125 C 2.71875 -2.578125 2.71875 -2.46875 2.609375 -2.34375 L 2.125 -1.796875 L 1.546875 -2.453125 C 1.484375 -2.53125 1.484375 -2.5625 1.484375 -2.59375 C 1.484375 -2.703125 1.578125 -2.734375 1.671875 -2.734375 L 1.671875 -2.984375 C 1.40625 -2.96875 1.140625 -2.96875 0.890625 -2.96875 C 0.6875 -2.96875 0.421875 -2.96875 0.21875 -2.984375 L 0.21875 -2.734375 C 0.53125 -2.734375 0.71875 -2.734375 0.890625 -2.53125 L 1.765625 -1.53125 L 1.8125 -1.46875 C 1.8125 -1.4375 1.296875 -0.875 1.234375 -0.796875 C 0.96875 -0.515625 0.734375 -0.265625 0.1875 -0.25 L 0.1875 0 C 0.390625 -0.015625 0.546875 -0.03125 0.75 -0.03125 C 0.96875 -0.03125 1.234375 -0.015625 1.453125 0 L 1.453125 -0.25 C 1.359375 -0.265625 1.3125 -0.3125 1.3125 -0.40625 C 1.3125 -0.546875 1.390625 -0.625 1.5 -0.75 L 1.984375 -1.28125 L 2.59375 -0.59375 C 2.71875 -0.453125 2.71875 -0.4375 2.71875 -0.390625 C 2.71875 -0.25 2.5625 -0.25 2.53125 -0.25 L 2.53125 0 C 2.59375 0 3.09375 -0.03125 3.3125 -0.03125 C 3.53125 -0.03125 3.765625 -0.015625 3.984375 0 Z M 3.984375 0 "/>
|
||||
</g>
|
||||
<g id="glyph-1-13">
|
||||
<path d="M 4.046875 -1.5 C 4.046875 -2.359375 3.34375 -3.0625 2.46875 -3.0625 C 2.0625 -3.0625 1.671875 -2.90625 1.375 -2.640625 L 1.375 -3.0625 L 0.34375 -2.984375 L 0.34375 -2.734375 C 0.828125 -2.734375 0.859375 -2.703125 0.859375 -2.40625 L 0.859375 0.796875 C 0.859375 1.09375 0.796875 1.09375 0.34375 1.09375 L 0.34375 1.34375 C 0.34375 1.34375 0.84375 1.3125 1.125 1.3125 C 1.390625 1.3125 1.859375 1.34375 1.921875 1.34375 L 1.921875 1.09375 C 1.484375 1.09375 1.40625 1.09375 1.40625 0.796875 L 1.40625 -0.328125 C 1.4375 -0.296875 1.765625 0.0625 2.359375 0.0625 C 3.265625 0.0625 4.046875 -0.625 4.046875 -1.5 Z M 3.421875 -1.5 C 3.421875 -0.703125 2.90625 -0.125 2.3125 -0.125 C 1.703125 -0.125 1.421875 -0.65625 1.40625 -0.703125 L 1.40625 -2.3125 C 1.609375 -2.65625 2.015625 -2.84375 2.390625 -2.84375 C 2.96875 -2.84375 3.421875 -2.234375 3.421875 -1.5 Z M 3.421875 -1.5 "/>
|
||||
</g>
|
||||
<g id="glyph-1-14">
|
||||
<path d="M 4.03125 0 L 4.03125 -0.25 C 3.5625 -0.25 3.515625 -0.296875 3.515625 -0.640625 L 3.515625 -4.8125 L 2.46875 -4.734375 L 2.46875 -4.484375 C 2.9375 -4.484375 2.984375 -4.4375 2.984375 -4.09375 L 2.984375 -2.65625 C 2.734375 -2.90625 2.40625 -3.0625 2.015625 -3.0625 C 1.09375 -3.0625 0.3125 -2.359375 0.3125 -1.484375 C 0.3125 -0.625 1.046875 0.0625 1.9375 0.0625 C 2.5 0.0625 2.84375 -0.234375 2.96875 -0.359375 L 2.96875 0.0625 Z M 2.96875 -0.734375 C 2.78125 -0.40625 2.421875 -0.125 1.984375 -0.125 C 1.59375 -0.125 1.3125 -0.359375 1.171875 -0.5625 C 1.03125 -0.765625 0.953125 -1.046875 0.953125 -1.484375 C 0.953125 -1.640625 0.953125 -2.171875 1.234375 -2.484375 C 1.515625 -2.796875 1.859375 -2.859375 2.046875 -2.859375 C 2.390625 -2.859375 2.6875 -2.71875 2.875 -2.46875 C 2.96875 -2.359375 2.96875 -2.34375 2.96875 -2.21875 Z M 2.96875 -0.734375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-0">
|
||||
</g>
|
||||
<g id="glyph-2-1">
|
||||
<path d="M 4.484375 -0.984375 C 4.484375 -1.078125 4.390625 -1.078125 4.375 -1.078125 C 4.28125 -1.078125 4.265625 -1.046875 4.21875 -0.875 C 4.140625 -0.53125 4 -0.125 3.71875 -0.125 C 3.53125 -0.125 3.484375 -0.28125 3.484375 -0.46875 C 3.484375 -0.578125 3.53125 -0.828125 3.59375 -1.015625 L 3.734375 -1.640625 L 3.90625 -2.25 C 3.9375 -2.421875 4.015625 -2.734375 4.015625 -2.765625 C 4.015625 -2.90625 3.90625 -2.984375 3.78125 -2.984375 C 3.71875 -2.984375 3.578125 -2.953125 3.5 -2.828125 C 3.484375 -2.78125 3.421875 -2.5625 3.390625 -2.421875 L 3.25 -1.84375 L 3.03125 -0.984375 C 2.984375 -0.8125 2.984375 -0.796875 2.921875 -0.703125 C 2.703125 -0.390625 2.40625 -0.125 2 -0.125 C 1.4375 -0.125 1.4375 -0.625 1.4375 -0.75 C 1.4375 -0.921875 1.453125 -1.015625 1.546875 -1.390625 L 1.703125 -2.015625 L 1.796875 -2.40625 C 1.84375 -2.546875 1.90625 -2.8125 1.90625 -2.84375 C 1.90625 -2.96875 1.8125 -3.0625 1.671875 -3.0625 C 1.421875 -3.0625 1.359375 -2.8125 1.34375 -2.734375 L 0.375 1.109375 C 0.34375 1.21875 0.34375 1.265625 0.34375 1.265625 C 0.34375 1.421875 0.46875 1.484375 0.578125 1.484375 C 0.828125 1.484375 0.890625 1.25 0.921875 1.140625 C 0.921875 1.109375 1.0625 0.546875 1.234375 -0.125 C 1.453125 0.015625 1.734375 0.0625 1.984375 0.0625 C 2.578125 0.0625 2.96875 -0.421875 2.96875 -0.4375 C 3.109375 0.046875 3.59375 0.0625 3.6875 0.0625 C 3.9375 0.0625 4.109375 -0.078125 4.234375 -0.296875 C 4.390625 -0.5625 4.484375 -0.96875 4.484375 -0.984375 Z M 4.484375 -0.984375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-2">
|
||||
<path d="M 2.59375 -0.984375 C 2.59375 -1.078125 2.5 -1.078125 2.484375 -1.078125 C 2.40625 -1.078125 2.390625 -1.0625 2.34375 -0.953125 C 2.140625 -0.515625 1.796875 -0.125 1.40625 -0.125 C 1.265625 -0.125 1.171875 -0.21875 1.171875 -0.46875 C 1.171875 -0.53125 1.1875 -0.6875 1.203125 -0.75 L 1.703125 -2.734375 L 2.421875 -2.734375 C 2.546875 -2.734375 2.640625 -2.734375 2.640625 -2.890625 C 2.640625 -2.984375 2.546875 -2.984375 2.421875 -2.984375 L 1.765625 -2.984375 L 2.03125 -4.015625 C 2.03125 -4.046875 2.046875 -4.09375 2.046875 -4.109375 C 2.046875 -4.234375 1.953125 -4.34375 1.8125 -4.34375 C 1.640625 -4.34375 1.53125 -4.21875 1.484375 -4.03125 C 1.4375 -3.859375 1.53125 -4.203125 1.21875 -2.984375 L 0.515625 -2.984375 C 0.375 -2.984375 0.296875 -2.984375 0.296875 -2.84375 C 0.296875 -2.734375 0.375 -2.734375 0.5 -2.734375 L 1.15625 -2.734375 L 0.75 -1.109375 C 0.703125 -0.921875 0.640625 -0.6875 0.640625 -0.59375 C 0.640625 -0.1875 0.984375 0.0625 1.390625 0.0625 C 2.15625 0.0625 2.59375 -0.90625 2.59375 -0.984375 Z M 2.59375 -0.984375 "/>
|
||||
</g>
|
||||
<g id="glyph-2-3">
|
||||
<path d="M 4.078125 -2.84375 C 4.078125 -2.96875 3.96875 -3.0625 3.84375 -3.0625 C 3.59375 -3.0625 3.546875 -2.859375 3.484375 -2.671875 C 3.203125 -1.6875 2.28125 -0.625 1.09375 -0.28125 L 1.734375 -2.859375 C 1.75 -2.890625 1.75 -2.921875 1.75 -2.96875 C 1.75 -2.96875 1.75 -3.0625 1.640625 -3.0625 C 1.640625 -3.0625 1.234375 -3.03125 1.1875 -3.03125 C 1.0625 -3.015625 0.9375 -3 0.8125 -2.984375 C 0.6875 -2.984375 0.609375 -2.96875 0.609375 -2.828125 C 0.609375 -2.734375 0.703125 -2.734375 0.796875 -2.734375 C 1.125 -2.734375 1.125 -2.6875 1.125 -2.625 C 1.125 -2.59375 1.09375 -2.453125 1.0625 -2.359375 L 0.71875 -0.953125 C 0.546875 -0.265625 0.5 -0.125 0.5 -0.09375 C 0.5 0 0.609375 0 0.640625 0 L 0.75 0 C 1.359375 -0.09375 2.25 -0.421875 2.984375 -1.078125 C 3.9375 -1.921875 4.078125 -2.84375 4.078125 -2.84375 Z M 4.078125 -2.84375 "/>
|
||||
</g>
|
||||
</g>
|
||||
<clipPath id="clip-0">
|
||||
<path clip-rule="nonzero" d="M 51 146 L 83 146 L 83 171.15625 L 51 171.15625 Z M 51 146 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-1">
|
||||
<path clip-rule="nonzero" d="M 0.015625 125 L 25 125 L 25 171.15625 L 0.015625 171.15625 Z M 0.015625 125 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-2">
|
||||
<path clip-rule="nonzero" d="M 54 113 L 112.828125 113 L 112.828125 115 L 54 115 Z M 54 113 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-3">
|
||||
<path clip-rule="nonzero" d="M 0.015625 68 L 25 68 L 25 125 L 0.015625 125 Z M 0.015625 68 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-4">
|
||||
<path clip-rule="nonzero" d="M 54 0 L 112.828125 0 L 112.828125 2 L 54 2 Z M 54 0 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-5">
|
||||
<path clip-rule="nonzero" d="M 0.015625 12 L 25 12 L 25 69 L 0.015625 69 Z M 0.015625 12 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-6">
|
||||
<path clip-rule="nonzero" d="M 93 93 L 112.828125 93 L 112.828125 127 L 93 127 Z M 93 93 "/>
|
||||
</clipPath>
|
||||
<clipPath id="clip-7">
|
||||
<path clip-rule="nonzero" d="M 93 0 L 112.828125 0 L 112.828125 21 L 93 21 Z M 93 0 "/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
<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 -25.510793 -0.00179014 L 25.512017 -0.00179014 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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 25.512017 -0.00179014 L 39.685456 -0.00179014 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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 36.849983 -0.00179014 L 36.849983 6.70595 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 66.722656 160.296875 L 65.050781 164.714844 L 66.722656 163.246094 L 68.398438 164.714844 Z M 66.722656 160.296875 "/>
|
||||
<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 6.051969 0.000937398 L 1.610251 1.6818 L 3.086897 0.000937398 L 1.610251 -1.683852 Z M 6.051969 0.000937398 " transform="matrix(0, -0.994653, -0.994653, 0, 66.723589, 166.316485)"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-1" x="70.521254" y="161.017441"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -25.510793 34.016035 L -25.510793 56.691966 L 25.512017 56.691966 L 25.512017 34.016035 Z M -25.510793 34.016035 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-1" x="17.95085" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-2" x="21.9005" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-3" x="24.996959" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-4" x="28.946609" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-5" x="33.323548" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-6" x="35.566816" y="126.559671"/>
|
||||
<use xlink:href="#glyph-1-7" x="38.663275" y="126.559671"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-1)">
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -19.843774 -0.00179014 L -19.843774 5.669156 L -22.333649 7.165438 L -17.353898 10.154074 L -22.333649 13.14271 L -17.353898 16.131346 L -22.333649 19.119982 L -17.353898 22.108618 L -22.333649 25.097254 L -19.843774 26.589608 L -19.843774 34.016035 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.374536 20.694808 L 6.374536 15.114189 L -6.377239 15.114189 L -6.377239 20.694808 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.58619 18.900056 L -3.584966 18.900056 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00061187 -0.00179014 L 0.00061187 15.114189 M 0.00061187 18.900056 L 0.00061187 34.016035 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<g clip-path="url(#clip-2)">
|
||||
<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 25.512017 56.691966 L 82.205773 56.691966 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -25.510793 90.709791 L -25.510793 113.385723 L 25.512017 113.385723 L 25.512017 90.709791 Z M -25.510793 90.709791 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-1" x="14.398943" y="70.169798"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-8" x="19.217043" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-9" x="21.886907" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-6" x="25.026372" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-3" x="28.122831" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-6" x="32.072481" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-5" x="35.16894" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-10" x="37.412209" y="70.169798"/>
|
||||
<use xlink:href="#glyph-1-4" x="41.361859" y="70.169798"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-3)">
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -19.843774 56.691966 L -19.843774 62.362913 L -22.333649 63.859194 L -17.353898 66.84783 L -22.333649 69.836466 L -17.353898 72.825102 L -22.333649 75.813738 L -17.353898 78.802374 L -22.333649 81.79101 L -19.843774 83.283364 L -19.843774 90.709791 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.374536 77.388565 L 6.374536 71.807945 L -6.377239 71.807945 L -6.377239 77.388565 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.58619 75.593812 L -3.584966 75.593812 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00061187 56.691966 L 0.00061187 71.807945 M 0.00061187 75.593812 L 0.00061187 90.709791 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 17.009524 80.789562 L 17.009524 66.616123 L 22.676544 66.616123 L 22.676544 80.789562 Z M 17.009524 80.789562 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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 19.84107 61.326119 L 19.84107 66.117362 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.05205 -0.00159975 L 1.610332 1.68319 L 3.086977 -0.00159975 L 1.610332 -1.682462 Z M 6.05205 -0.00159975 " transform="matrix(0, 0.994653, 0.994653, 0, 49.806279, 106.339684)"/>
|
||||
<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 19.84107 86.075638 L 19.84107 81.288322 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.054444 0.00159975 L 1.608799 1.682462 L 3.089372 0.00159975 L 1.608799 -1.68319 Z M 6.054444 0.00159975 " transform="matrix(0, -0.994653, -0.994653, 0, 49.806279, 87.369729)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-2" x="56.324569" y="99.333029"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-2" x="61.176487" y="100.819041"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 -25.510793 147.403547 L -25.510793 170.079479 L 25.512017 170.079479 L 25.512017 147.403547 Z M -25.510793 147.403547 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-2-3" x="11.945134" y="13.985818"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-8" x="16.380292" y="13.985818"/>
|
||||
<use xlink:href="#glyph-1-11" x="19.050156" y="13.985818"/>
|
||||
<use xlink:href="#glyph-1-7" x="23.427095" y="13.985818"/>
|
||||
<use xlink:href="#glyph-1-12" x="26.95015" y="13.985818"/>
|
||||
<use xlink:href="#glyph-1-3" x="31.113444" y="13.985818"/>
|
||||
<use xlink:href="#glyph-1-13" x="35.063095" y="13.985818"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-10" x="39.655066" y="13.985818"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-1-14" x="43.819748" y="13.985818"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-4)">
|
||||
<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 25.512017 170.079479 L 82.205773 170.079479 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
</g>
|
||||
<g clip-path="url(#clip-5)">
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M -19.843774 113.385723 L -19.843774 119.056669 L -22.333649 120.549023 L -17.353898 123.541587 L -22.333649 126.530223 L -17.353898 129.518859 L -22.333649 132.507495 L -17.353898 135.49613 L -22.333649 138.484766 L -19.843774 139.977121 L -19.843774 147.403547 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
</g>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 6.374536 134.082321 L 6.374536 128.501701 L -6.377239 128.501701 L -6.377239 134.082321 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 3.58619 132.287569 L -3.584966 132.287569 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill="none" stroke-width="0.79701" stroke-linecap="butt" stroke-linejoin="miter" stroke="rgb(0%, 0%, 0%)" stroke-opacity="1" stroke-miterlimit="10" d="M 0.00061187 113.385723 L 0.00061187 128.501701 M 0.00061187 132.287569 L 0.00061187 147.403547 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 17.009524 137.483318 L 17.009524 123.309879 L 22.676544 123.309879 L 22.676544 137.483318 Z M 17.009524 137.483318 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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 19.84107 118.019876 L 19.84107 122.811118 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.051914 -0.00159975 L 1.610196 1.68319 L 3.086841 -0.00159975 L 1.610196 -1.682462 Z M 6.051914 -0.00159975 " transform="matrix(0, 0.994653, 0.994653, 0, 49.806279, 49.949195)"/>
|
||||
<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 19.84107 142.769394 L 19.84107 137.978151 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.054581 0.00159975 L 1.608936 1.682462 L 3.085581 0.00159975 L 1.608936 -1.68319 Z M 6.054581 0.00159975 " transform="matrix(0, -0.994653, -0.994653, 0, 49.806279, 30.979239)"/>
|
||||
<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 79.3703 61.326119 L 79.3703 165.445326 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 109.015625 112.359375 L 110.691406 107.941406 L 109.015625 109.410156 L 107.34375 107.941406 Z M 109.015625 112.359375 "/>
|
||||
<g clip-path="url(#clip-6)">
|
||||
<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.05207 -0.000410131 L 1.610352 1.684379 L 3.086997 -0.000410131 L 1.610352 -1.681272 Z M 6.05207 -0.000410131 " transform="matrix(0, 0.994653, 0.994653, 0, 109.016033, 106.339664)"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(0%, 0%, 0%)" fill-opacity="1" d="M 109.015625 2.402344 L 107.34375 6.824219 L 109.015625 5.351562 L 110.691406 6.824219 Z M 109.015625 2.402344 "/>
|
||||
<g clip-path="url(#clip-7)">
|
||||
<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.052962 0.000410131 L 1.607317 1.681272 L 3.08789 0.000410131 L 1.607317 -1.684379 Z M 6.052962 0.000410131 " transform="matrix(0, -0.994653, -0.994653, 0, 109.016033, 8.422942)"/>
|
||||
</g>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-3" x="100.058475" y="109.973829"/>
|
||||
</g>
|
||||
<path fill-rule="nonzero" fill="rgb(100%, 100%, 100%)" 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 43.01969 94.578131 L 62.94262 94.578131 L 62.94262 109.52131 L 43.01969 109.52131 Z M 43.01969 94.578131 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-4" x="78.203955" y="72.045714"/>
|
||||
</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 66.547834 63.973085 L 52.979191 63.973085 L 52.979191 89.445217 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.055253 0.00190866 L 1.609608 1.682771 L 3.086254 0.00190866 L 1.609608 -1.682881 Z M 6.055253 0.00190866 " transform="matrix(0, -0.994653, -0.994653, 0, 82.767523, 84.018971)"/>
|
||||
<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 52.979191 110.020071 L 52.979191 130.394635 L 27.310696 130.394635 " transform="matrix(0.994653, 0, 0, -0.994653, 30.069704, 170.162282)"/>
|
||||
<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.05532 0.000625066 L 1.609675 1.681487 L 3.08632 0.000625066 L 1.609675 -1.684164 Z M 6.05532 0.000625066 " transform="matrix(-0.994653, 0, 0, 0.994653, 60.058099, 40.464222)"/>
|
||||
<g fill="rgb(0%, 0%, 0%)" fill-opacity="1">
|
||||
<use xlink:href="#glyph-0-5" x="56.424035" y="36.667889"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 42 KiB |
BIN
figs/measurement_microstation_vibration_picture.jpg
Normal file
After Width: | Height: | Size: 360 KiB |
BIN
figs/nass_concept_schematic.pdf
Normal file
BIN
figs/nass_concept_schematic.png
Normal file
After Width: | Height: | Size: 29 KiB |
1440
figs/nass_concept_schematic.svg
Normal file
After Width: | Height: | Size: 104 KiB |
BIN
figs/nass_mechatronics_approach.pdf
Normal file
BIN
figs/nass_mechatronics_approach.png
Normal file
After Width: | Height: | Size: 175 KiB |
2097
figs/nass_mechatronics_approach.svg
Normal file
After Width: | Height: | Size: 249 KiB |
BIN
figs/root_locus_iff_rot_stiffness.pdf
Normal file
BIN
figs/root_locus_iff_rot_stiffness.png
Normal file
After Width: | Height: | Size: 88 KiB |
BIN
figs/simscape_first_model_screenshot.jpg
Normal file
After Width: | Height: | Size: 82 KiB |
BIN
figs/simscape_nano_hexapod.pdf
Normal file
BIN
figs/simscape_nano_hexapod.png
Normal file
After Width: | Height: | Size: 158 KiB |
BIN
figs/simscape_nass_final.pdf
Normal file
BIN
figs/simscape_nass_final.png
Normal file
After Width: | Height: | Size: 155 KiB |
BIN
figs/stewart_architecture_example.pdf
Normal file
BIN
figs/stewart_architecture_example.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
figs/stewart_architecture_example_pose.pdf
Normal file
BIN
figs/stewart_architecture_example_pose.png
Normal file
After Width: | Height: | Size: 28 KiB |
1191
phd-thesis.org
BIN
phd-thesis.pdf
856
phd-thesis.tex
@ -1,4 +1,4 @@
|
||||
% Created 2023-01-26 Thu 09:33
|
||||
% Created 2023-01-31 Tue 23:33
|
||||
% Intended LaTeX compiler: pdflatex
|
||||
\documentclass[a4paper, twoside, 11pt, onecolumn, bibliography=totoc, openright, appendixprefix=true]{scrreprt}
|
||||
|
||||
@ -12,18 +12,18 @@
|
||||
\input{config_extra.tex}
|
||||
\addbibresource{ref.bib}
|
||||
\author{Dehaeze Thomas}
|
||||
\date{2023-01-26}
|
||||
\title{PhD Thesis}
|
||||
\subtitle{My subtitle}
|
||||
\date{2023-01-31}
|
||||
\title{Mechatronic approach for the design of a Nano Active Stabilization System}
|
||||
\subtitle{PhD Thesis}
|
||||
\hypersetup{
|
||||
pdfauthor={Dehaeze Thomas},
|
||||
pdftitle={PhD Thesis},
|
||||
pdftitle={Mechatronic approach for the design of a Nano Active Stabilization System},
|
||||
pdfkeywords={},
|
||||
pdfsubject={},
|
||||
pdfcreator={Emacs 28.2 (Org mode 9.5.2)},
|
||||
pdflang={English}}
|
||||
\usepackage{biblatex}
|
||||
\addbibresource{~/Cloud/brain/biblio/references.bib}
|
||||
|
||||
\begin{document}
|
||||
|
||||
|
||||
@ -43,11 +43,9 @@
|
||||
\@author
|
||||
%
|
||||
\vfill
|
||||
A document submitted in partial fulfillment
|
||||
of the requirements for the degree of\\
|
||||
\emph{Technical Report}\\
|
||||
A thesis submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy (PhD) in Engineering Science\\
|
||||
at\\
|
||||
\textsc{Miskatonic University}
|
||||
\textsc{Liège Université}
|
||||
\end{center}
|
||||
\makeatother
|
||||
\end{titlepage}
|
||||
@ -70,310 +68,644 @@
|
||||
\listoffigures
|
||||
|
||||
\chapter{Introduction}
|
||||
\chapter{Test}
|
||||
\section{Context of this thesis / Background and Motivation}
|
||||
|
||||
\begin{itemize}
|
||||
\item ESRF (Figure \ref{fig:esrf_picture})
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.7\linewidth]{figs/esrf_picture.jpg}
|
||||
\caption{\label{fig:esrf_picture}European Synchrotron Radiation Facility}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
||||
\item ID31 and Micro Station (Figure \ref{fig:id31_microstation_picture})
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{figs/id31_microstation_picture.png}
|
||||
\caption{\label{fig:id31_microstation_picture}Picture of the ID31 Micro-Station with annotations}
|
||||
\end{figure}
|
||||
|
||||
Alternative: \texttt{id31\_microstation\_cad\_view.png} (CAD view)
|
||||
|
||||
\begin{itemize}
|
||||
\item X-ray beam + detectors + sample stage (Figure \ref{fig:id31_beamline_schematic})
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{figs/id31_beamline_schematic.png}
|
||||
\caption{\label{fig:id31_beamline_schematic}ID31 Beamline Schematic. With light source, nano-focusing optics, sample stage and detector.}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
||||
\item Few words about science made on ID31 and why nano-meter accuracy is required
|
||||
\item Typical experiments (tomography, \ldots{}), various samples (up to 50kg)
|
||||
\item Example of picture obtained (Figure \ref{fig:id31_tomography_result})
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-c.png}
|
||||
\caption{\label{fig:id31_tomography_result}Image obtained on the ID31 beamline}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
||||
\item Explain wanted positioning accuracy and why micro-station cannot have this accuracy (backlash, play, thermal expansion, \ldots{})
|
||||
\end{itemize}
|
||||
|
||||
\section{Challenge definition}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/nass_concept_schematic.png}
|
||||
\caption{\label{fig:nass_concept_schematic}Nass Concept. 1: micro-station, 2: nano-hexapod, 3: sample, 4: 5DoF metrology}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
||||
\item 6DoF vibration control platform on top of a complex positioning platform
|
||||
\item \textbf{Goal}: Improve accuracy of 6DoF long stroke position platform
|
||||
\item \textbf{Approach}: Mechatronic approach / model based / predictive
|
||||
\item \textbf{Control}: Robust control approach / various payloads.
|
||||
First hexapod with control bandwidth higher than the suspension modes that accepts various payloads?
|
||||
\item Rotation aspect
|
||||
\item Compactness? (more related to mechanical design)
|
||||
\end{itemize}
|
||||
|
||||
\section{Literature Review}
|
||||
|
||||
\begin{figure}
|
||||
\begin{subfigure}{0.49\textwidth}
|
||||
\begin{center}
|
||||
\includegraphics[scale=1,width=0.8\linewidth]{example-image-a.png}
|
||||
\end{center}
|
||||
\subcaption{Stewart platform based on voice coil actuators}
|
||||
\end{subfigure}
|
||||
\begin{subfigure}{0.49\textwidth}
|
||||
\begin{center}
|
||||
\includegraphics[scale=1,width=0.8\linewidth]{example-image-b.png}
|
||||
\end{center}
|
||||
\subcaption{Stewart platform based on piezoelectric actuators}
|
||||
\end{subfigure}
|
||||
\caption{\label{fig:stewart_platform_examples}Examples of Stewart Platforms}
|
||||
\end{figure}
|
||||
|
||||
\begin{itemize}
|
||||
\item Hexapods
|
||||
\cite{li01_simul_fault_vibrat_isolat_point}
|
||||
\cite{bishop02_devel_precis_point_contr_vibrat}
|
||||
\cite{hanieh03_activ_stewar}
|
||||
\cite{afzali-far16_vibrat_dynam_isotr_hexap_analy_studies}
|
||||
\cite{naves20_desig}
|
||||
\item Positioning stations
|
||||
\item Mechatronic approach?
|
||||
\cite{rankers98_machin}
|
||||
\cite{monkhorst04_dynam_error_budget}
|
||||
\cite{jabben07_mechat}
|
||||
\end{itemize}
|
||||
|
||||
\section{Outline of thesis / Thesis Summary / Thesis Contributions}
|
||||
|
||||
\textbf{Mechatronic Design Approach} / \textbf{Model Based Design}:
|
||||
\begin{itemize}
|
||||
\item \cite{monkhorst04_dynam_error_budget} high costs of the design process: the designed system must be \textbf{first time right}.
|
||||
When the system is finally build, its performance level should satisfy the specifications.
|
||||
No significant changes are allowed in the post design phase.
|
||||
Because of this, the designer wants to be able to predict the performance of the system a-priori and gain insight in the performance limiting factors of the system.
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=\linewidth]{figs/nass_mechatronics_approach.png}
|
||||
\caption{\label{fig:nass_mechatronics_approach}Overview of the mechatronic approach used for the Nano-Active-Stabilization-System}
|
||||
\end{figure}
|
||||
|
||||
|
||||
\chapter{Conceptual Design Development}
|
||||
\minitoc
|
||||
\paragraph{Abstract}
|
||||
|
||||
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
|
||||
Schematic that summarizes this phase.
|
||||
Uniaxial => Rotation => Multi body => Simulations
|
||||
|
||||
\section{Constrains on the system}
|
||||
|
||||
\section{Test}
|
||||
A list:
|
||||
\begin{itemize}
|
||||
\item acronyms \acrshort{nass} \acrshort{mimo} \acrshort{lti} \acrfull{siso}
|
||||
\item glossary terms \gls{ka}, \gls{phi}.
|
||||
\item Bibliography citations: \cite{dehaeze21_activ_dampin_rotat_platf_using,dehaeze21_mechat_approac_devel_nano_activ_stabil_system}.
|
||||
\item Size
|
||||
\item Payload
|
||||
\item Connections to samples
|
||||
\item \ldots{} should justify the nano-hexapod design
|
||||
\begin{itemize}
|
||||
\item choice of parallel architecture
|
||||
\end{itemize}
|
||||
|
||||
A definition list:
|
||||
\begin{description}
|
||||
\item[{this}] means that
|
||||
\item[{that}] means this
|
||||
\end{description}
|
||||
\item[{$\square$}] Picture/schematic of the micro-station with indicated location of Nano-Hexapod
|
||||
\end{itemize}
|
||||
|
||||
Some Footnote\footnote{this is a footnote with citation \cite{dehaeze21_mechat_approac_devel_nano_activ_stabil_system}.}
|
||||
\section{Uni-axial Model}
|
||||
\begin{itemize}
|
||||
\item Explain what we want to capture with this model
|
||||
\item Schematic of the uniaxial model (with X-ray)
|
||||
\item Identification of disturbances (ground motion, stage vibrations)
|
||||
\item Optimal nano-hexapod stiffness/actuator: Voice coil VS Piezo (conclusion?)
|
||||
\item Control architecture (IFF, DVF, \ldots{})?
|
||||
\item Conclusion
|
||||
\end{itemize}
|
||||
|
||||
\section{Section}
|
||||
\subsection{Sub section}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/mass_spring_damper_nass.png}
|
||||
\caption{\label{fig:mass_spring_damper_nass}3-DoF uniaxial mass-spring-damper model of the NASS}
|
||||
\end{figure}
|
||||
|
||||
This is a sub section.
|
||||
\subsection{Noise Budgeting}
|
||||
|
||||
\subsection{Sub section}
|
||||
Start of the sub section
|
||||
\paragraph{Paragraph}
|
||||
This is a paragraph
|
||||
\paragraph{lksdfjasd}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.4\linewidth]{measurement_microstation_vibration_picture.jpg}
|
||||
\caption{\label{fig:measurement_microstation_vibration_picture}Setup used to measure the micro-station vibrations during operation}
|
||||
\end{figure}
|
||||
|
||||
\paragraph{lksdfjasd}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-b.png}
|
||||
\caption{\label{fig:asd_ground_motion_ustation_dist}Amplitude Spectral density of the measured disturbance sources}
|
||||
\end{figure}
|
||||
|
||||
\section{blabla}
|
||||
\chapter{Source Blocks}
|
||||
\subsection{Effect of support compliance}
|
||||
\href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/nass-simscape/org/uncertainty\_support.org}{study}
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{goal}: make the nano-hexapod independent of the support compliance
|
||||
\item Simple 2DoF model
|
||||
\item Generalized to any support compliance
|
||||
\item \textbf{conclusion}: frequency of nano-hexapod resonances should be lower than first suspension mode of the support
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Effect of payload dynamics}
|
||||
\href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/nass-simscape/org/uncertainty\_payload.org}{study}
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{goal}: be robust to a change of payload
|
||||
\item Simple 2DoF model
|
||||
\item Generalized to any payload dynamics
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Active Damping}
|
||||
|
||||
Conclusion: IFF is better for this application
|
||||
|
||||
\paragraph{Integral Force Feedback}
|
||||
|
||||
\begin{itemize}
|
||||
\item Mass spring damper model
|
||||
\item Root Locus
|
||||
\item Sensitivity to disturbances
|
||||
\end{itemize}
|
||||
|
||||
\paragraph{Direct Velocity Feedback}
|
||||
|
||||
\begin{itemize}
|
||||
\item Mass spring damper model
|
||||
\item Root Locus
|
||||
\item Sensitivity to disturbances
|
||||
\end{itemize}
|
||||
|
||||
|
||||
\section{Effect of rotation}
|
||||
\cite{dehaeze20_activ_dampin_rotat_platf_integ_force_feedb,dehaeze21_activ_dampin_rotat_platf_using}
|
||||
|
||||
\subsection{X-Y rotating platform model}
|
||||
|
||||
\begin{itemize}
|
||||
\item x-y-Rz model
|
||||
\item explain why this is representing the NASS
|
||||
\item Equation of motion
|
||||
\item Centrifugal forces, Coriolis
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/2dof_rotating_system.png}
|
||||
\caption{\label{fig:2dof_rotating_system}Mass spring damper model of an X-Y stage on top of a rotating stage}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Effect of rotational velocity on the system dynamics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Campbell diagram
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Decentralized Integral Force Feedback}
|
||||
|
||||
\begin{itemize}
|
||||
\item Control diagram
|
||||
\item Root Locus: unstable with pure IFF
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Two proposed modification of IFF}
|
||||
|
||||
\begin{itemize}
|
||||
\item Comparison of parallel stiffness and change of controller
|
||||
\item Transmissibility
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Conclusion}
|
||||
|
||||
\begin{itemize}
|
||||
\item problem with voice coil actuator
|
||||
\item Two solutions: add parallel stiffness, or change controller
|
||||
\item Conclusion: minimum stiffness is required
|
||||
\item APA is a nice architecture for parallel stiffness + integrated force sensor (have to speak about IFF before that)
|
||||
\end{itemize}
|
||||
|
||||
\section{Multi Body Model - Nano Hexapod}
|
||||
\begin{itemize}
|
||||
\item What we want to capture with this model
|
||||
\item Explain what is a multi body model (rigid body, springs, etc\ldots{})
|
||||
\item Key elements (plates, joints, struts): for now simplistic model (rigid body elements, perfect joints, \ldots{}), but in next section, FEM will be used
|
||||
\item Matlab/Simulink developed toolbox for the study of Stewart platforms
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Stewart Platform Architecture}
|
||||
|
||||
\begin{itemize}
|
||||
\item Little review
|
||||
\item explain key elements:
|
||||
\begin{itemize}
|
||||
\item two plates
|
||||
\item joints
|
||||
\item actuators
|
||||
\end{itemize}
|
||||
\item explain advantages compared to serial architecture
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Kinematics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Well define elements, frames, \ldots{}
|
||||
\item Derivation of jacobian matrices: for forces and for displacement
|
||||
\item Explain this is true for small displacements (show how small)
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Model of an Amplified Piezoelectric Actuator}
|
||||
|
||||
\begin{itemize}
|
||||
\item APA test bench
|
||||
\item Piezoelectric effects
|
||||
\item mass spring damper representation (2dof)
|
||||
\item Compare the model and the experiment
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Dynamics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Effect of joints stiffnesses
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=\linewidth]{figs/simscape_nano_hexapod.png}
|
||||
\caption{\label{fig:simscape_nano_hexapod}3D view of the multi-body model of the Nano-Hexapod (simplified)}
|
||||
\end{figure}
|
||||
|
||||
\section{Multi Body Model - Micro Station}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.7\linewidth]{figs/simscape_first_model_screenshot.jpg}
|
||||
\caption{\label{fig:simscape_first_model_screenshot}3D view of the multi-body model of the micro-station}
|
||||
\end{figure}
|
||||
|
||||
\subsection{Kinematics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Small overview of each stage and associated stiffnesses / inertia
|
||||
\item schematic that shows to considered DoF
|
||||
\item import from CAD
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Modal Analysis}
|
||||
\href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/nass-measurements/modal-analysis/index.org}{study}
|
||||
|
||||
\begin{itemize}
|
||||
\item Picture of the experimental setup
|
||||
\item Location of accelerometers
|
||||
\item Show obtained modes
|
||||
\item Validation of rigid body assumption
|
||||
\item Explain how this helps tuning the multi-body model
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Validation of the Model}
|
||||
|
||||
\begin{itemize}
|
||||
\item Most important metric: support compliance
|
||||
\item Compare model and measurement
|
||||
\end{itemize}
|
||||
|
||||
\section{Control Architecture}
|
||||
Discussion of:
|
||||
\begin{itemize}
|
||||
\item Transformation matrices / control architecture
|
||||
\item Control in the frame of struts or cartesian?
|
||||
\item Effect of rotation on IFF? => APA
|
||||
\item HAC-LAC
|
||||
\end{itemize}
|
||||
|
||||
\subsection{High Authority Control - Low Authority Control (HAC-LAC)}
|
||||
|
||||
\begin{itemize}
|
||||
\item general idea
|
||||
\item case for parallel manipulator: decentralized LAC + centralized HAC
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Decoupling Strategies for parallel manipulators}
|
||||
\href{file:///home/thomas/Cloud/research/matlab/decoupling-strategies/svd-control.org}{study}
|
||||
|
||||
\begin{itemize}
|
||||
\item Jacobian matrices, CoK, CoM, \ldots{}
|
||||
\item Discussion of cubic architecture
|
||||
\item SVD, Modal, \ldots{}
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Decentralized Integral Force Feedback (LAC)}
|
||||
|
||||
\begin{itemize}
|
||||
\item Root Locus
|
||||
\item Damping optimization
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Control Kinematics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Explain how the position error can be expressed in the frame of the nano-hexapod
|
||||
\item block diagram
|
||||
\item Explain how to go from external metrology to the frame of the nano-hexapod
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Decoupled Dynamics}
|
||||
|
||||
\begin{itemize}
|
||||
\item Centralized HAC
|
||||
\item Control in the frame of the struts
|
||||
\item Effect of IFF
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Centralized Position Controller (HAC)}
|
||||
|
||||
\begin{itemize}
|
||||
\item Decoupled plant
|
||||
\item Controller design
|
||||
\end{itemize}
|
||||
|
||||
\section{Simulations - Concept Validation}
|
||||
\begin{itemize}
|
||||
\item Tomography experiment
|
||||
\item Open VS Closed loop results
|
||||
\item \textbf{Conclusion}: concept validation
|
||||
nano hexapod architecture with APA
|
||||
decentralized IFF + centralized HAC
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=\linewidth]{figs/simscape_nass_final.png}
|
||||
\caption{\label{fig:simscape_nass_final}3D view of the multi-body model including the micro-station, the nano-hexapod and the associated metrology}
|
||||
\end{figure}
|
||||
|
||||
\section{Conclusion}
|
||||
|
||||
|
||||
\chapter{Detailed Design}
|
||||
\minitoc
|
||||
\section{Figures}
|
||||
\begin{minted}[]{matlab}
|
||||
t = 0:0.01:5; % Time [s]
|
||||
x = sin(2*pi*t); % Output Voltage [V]
|
||||
\end{minted}
|
||||
\paragraph{Abstract}
|
||||
|
||||
\begin{minted}[]{matlab}
|
||||
figure;
|
||||
plot(t, x);
|
||||
xlabel('Time [s]'); ylabel('Voltage [V]');
|
||||
\end{minted}
|
||||
CAD view of the nano-hexapod with key components:
|
||||
\begin{itemize}
|
||||
\item plates
|
||||
\item flexible joints
|
||||
\item APA
|
||||
\item required instrumentation (ADC, DAC, Speedgoat, Amplifiers, Force Sensor instrumentation, \ldots{})
|
||||
\end{itemize}
|
||||
|
||||
\section{Optimal Nano-Hexapod geometry}
|
||||
\begin{itemize}
|
||||
\item[{$\square$}] Geometry?
|
||||
\begin{itemize}
|
||||
\item[{$\square$}] Cubic architecture?
|
||||
\item[{$\square$}] Kinematics
|
||||
\item[{$\square$}] Trade-off for the strut orientation
|
||||
\end{itemize}
|
||||
\item[{$\square$}] Sensors required
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Optimal strut orientation}
|
||||
|
||||
\subsection{Cubic Architecture: a Special Case?}
|
||||
|
||||
\section{Including Flexible elements in the Multi-body model}
|
||||
Reduced order flexible bodies \cite{brumund21_multib_simul_reduc_order_flexib_bodies_fea}
|
||||
\begin{itemize}
|
||||
\item Used with APA, Flexible joints, Plates
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Reduced order flexible bodies}
|
||||
|
||||
\begin{itemize}
|
||||
\item Quick explanation of the theory
|
||||
\item Implementation with Ansys (or Comsol) and Simscape
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Numerical Validation}
|
||||
|
||||
\begin{itemize}
|
||||
\item Numerical Validation Ansys VS Simscape (APA)
|
||||
\item Figure with 0 and 1kg mass
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Experimental Validation}
|
||||
|
||||
\begin{itemize}
|
||||
\item Test bench
|
||||
\item Obtained transfer functions and comparison with Simscape model with reduced order flexible body
|
||||
\end{itemize}
|
||||
|
||||
\section{Amplified Piezoelectric Actuator}
|
||||
\href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/test-bench-apa/index.org}{study 1}, \href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/test-bench-apa300ml/test-bench-apa300ml.org}{study 2}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/matlab_fig_example.png}
|
||||
\caption{\label{fig:matlab_fig_example}Matlab Figure}
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-a.png}
|
||||
\caption{\label{fig:apa_schmeatic}Schematical representation of an Amplified Piezoelectric Actuator}
|
||||
\end{figure}
|
||||
|
||||
\section{Table Result}
|
||||
\begin{itemize}
|
||||
\item First tests with the APA95ML
|
||||
\end{itemize}
|
||||
|
||||
\begin{minted}[]{matlab}
|
||||
x = 1:10;
|
||||
y = x.^2;
|
||||
\end{minted}
|
||||
\subsection{Model}
|
||||
|
||||
\begin{table}[htbp]
|
||||
\caption{\label{tab:table_name}Table caption}
|
||||
\centering
|
||||
\begin{tabular}{rr}
|
||||
\(x\) & \(y = x^2\)\\
|
||||
\hline
|
||||
1 & 1\\
|
||||
2 & 4\\
|
||||
3 & 9\\
|
||||
4 & 16\\
|
||||
5 & 25\\
|
||||
6 & 36\\
|
||||
7 & 49\\
|
||||
8 & 64\\
|
||||
9 & 81\\
|
||||
10 & 100\\
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
|
||||
\section{Inline Results}
|
||||
|
||||
Results can be automatically outputed as shown below.
|
||||
|
||||
\begin{minted}[]{matlab}
|
||||
sqrt(2)
|
||||
\end{minted}
|
||||
|
||||
\begin{verbatim}
|
||||
1.4142
|
||||
\end{verbatim}
|
||||
|
||||
|
||||
|
||||
\begin{minted}[]{matlab}
|
||||
y
|
||||
\end{minted}
|
||||
|
||||
\begin{verbatim}
|
||||
y =
|
||||
1 4 9 16 25 36 49 64 81 100
|
||||
\end{verbatim}
|
||||
|
||||
\section{Caption and Reference}
|
||||
|
||||
Captions can be added to code blocks.
|
||||
Moreover, we can link to specific bode blocks (Listing \ref{lst:matlab_figure} or \ref{lst:matlab_svd}).
|
||||
|
||||
\begin{listing}[htbp]
|
||||
\begin{minted}[]{matlab}
|
||||
figure;
|
||||
[X,Y,Z] = peaks;
|
||||
contour(X,Y,Z,20)
|
||||
\end{minted}
|
||||
\caption{\label{lst:matlab_figure}Code to produce a nice contour plot}
|
||||
\end{listing}
|
||||
Piezoelectric equations
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/matlab_logo.png}
|
||||
\caption{\label{fig:matlab_logo}Obtained Contour Plot}
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-a.png}
|
||||
\caption{\label{fig:apa_schmeatic_2dof}Schematical representation of a 2DoF model of an Amplified Piezoelectric Actuator}
|
||||
\end{figure}
|
||||
|
||||
\begin{listing}[htbp]
|
||||
\begin{minted}[]{matlab}
|
||||
A = [1 2; 3 4; 5 6; 7 8]
|
||||
[U,S,V] = svd(A)
|
||||
\end{minted}
|
||||
\caption{\label{lst:matlab_svd}Code to compute the Singular Value Decomposition}
|
||||
\end{listing}
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-b.png}
|
||||
\caption{\label{fig:apa_schmeatic_fem}Schematical representation of a FEM of an Amplified Piezoelectric Actuator}
|
||||
\end{figure}
|
||||
|
||||
\begin{verbatim}
|
||||
A = [1 2; 3 4; 5 6; 7 8]
|
||||
A =
|
||||
1 2
|
||||
3 4
|
||||
5 6
|
||||
7 8
|
||||
[U,S,V] = svd(A)
|
||||
U =
|
||||
-0.152483233310201 -0.82264747222566 -0.394501022283829 -0.379959133877596
|
||||
-0.349918371807964 -0.42137528768458 0.242796545704357 0.800655879510063
|
||||
-0.547353510305727 -0.0201031031435029 0.697909975442776 -0.461434357387336
|
||||
-0.74478864880349 0.381169081397575 -0.546205498863303 0.0407376117548695
|
||||
S =
|
||||
14.2690954992615 0
|
||||
0 0.626828232417541
|
||||
0 0
|
||||
0 0
|
||||
V =
|
||||
-0.641423027995072 0.767187395072177
|
||||
-0.767187395072177 -0.641423027995072
|
||||
\end{verbatim}
|
||||
\begin{itemize}
|
||||
\item FEM
|
||||
\item Simscape model
|
||||
\item (2 DoF, FEM, \ldots{})
|
||||
\end{itemize}
|
||||
|
||||
\section{Source Blocks with Line Numbers}
|
||||
\subsection{Experimental System Identification}
|
||||
|
||||
Citation \cite{taghirad13_paral,dehaeze21_activ_dampin_rotat_platf_using}
|
||||
\begin{itemize}
|
||||
\item Experimental validation (granite test bench)
|
||||
\item Electrical parameters
|
||||
\item Required instrumentation to read force sensor?
|
||||
\item Add resistor to include high pass filtering: no risk of saturating the ADC
|
||||
\item Estimation of piezoelectric parameters
|
||||
\end{itemize}
|
||||
|
||||
The Listing \ref{lst:matlab_line_numbers} has line numbers as the \texttt{-n} option was used.
|
||||
\subsection{Validation with Simscape model}
|
||||
|
||||
Specific lines of codes can be referenced.
|
||||
For instance, the code used to specify the wanted the vertical label is on line 4.
|
||||
\begin{itemize}
|
||||
\item Tuned Simscape model
|
||||
\item IFF results: OK
|
||||
\end{itemize}
|
||||
|
||||
\begin{listing}[htbp]
|
||||
\begin{minted}[linenos,firstnumber=1]{matlab}
|
||||
figure;
|
||||
plot(t, x)
|
||||
xlabel('Time [s]');
|
||||
ylabel('Output [V]');
|
||||
\end{minted}
|
||||
\caption{\label{lst:matlab_line_numbers}Specify Labels}
|
||||
\end{listing}
|
||||
\section{Flexible Joints}
|
||||
\subsection{Effect of flexible joint characteristics on obtained dynamics}
|
||||
|
||||
Numbering can be continued by using \texttt{+n} option as shown below.
|
||||
\begin{minted}[linenos,firstnumber=5]{matlab}
|
||||
figure;
|
||||
plot(t, u)
|
||||
xlabel('Time [s]');
|
||||
ylabel('Input [V]');
|
||||
\end{minted}
|
||||
\begin{itemize}
|
||||
\item Based on Simscape model
|
||||
\item Effect of axial stiffness, bending stiffness, \ldots{}
|
||||
\item Obtained specifications (trade-off)
|
||||
\end{itemize}
|
||||
|
||||
\chapter{Images}
|
||||
\subsection{Flexible joint geometry optimization}
|
||||
|
||||
\begin{itemize}
|
||||
\item Chosen geometry
|
||||
\item Optimisation with Ansys
|
||||
\item Validation with Simscape model
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Experimental identification}
|
||||
|
||||
\begin{itemize}
|
||||
\item Experimental validation, characterisation (\href{file:///home/thomas/Cloud/work-projects/ID31-NASS/matlab/test-bench-flexible-joints-adv/bending.org}{study})
|
||||
\item Visual inspection
|
||||
\item Test bench
|
||||
\item Obtained results
|
||||
\end{itemize}
|
||||
|
||||
\section{Instrumentation}
|
||||
\subsection{DAC}
|
||||
|
||||
|
||||
\subsection{ADC}
|
||||
|
||||
Force sensor
|
||||
|
||||
\subsection{Voltage amplifier (\href{https://research.tdehaeze.xyz/test-bench-pd200/}{link})}
|
||||
|
||||
\begin{itemize}
|
||||
\item Test Bench: capacitive load, ADC, DAC, Instrumentation amplifier
|
||||
\item Noise measurement
|
||||
\item Transfer function measurement
|
||||
\end{itemize}
|
||||
|
||||
\subsection{Encoder (\href{https://research.tdehaeze.xyz/test-bench-vionic/}{link})}
|
||||
\begin{itemize}
|
||||
\item Noise measurement
|
||||
\end{itemize}
|
||||
|
||||
\section{Obtained Mechanical Design}
|
||||
|
||||
\begin{itemize}
|
||||
\item CAD view of the nano-hexapod
|
||||
\item Chosen geometry, materials, ease of mounting, cabling, \ldots{}
|
||||
\end{itemize}
|
||||
|
||||
\chapter{Experimental Validation}
|
||||
\minitoc
|
||||
\section{Normal Image}
|
||||
\paragraph{Abstract}
|
||||
|
||||
Figure \ref{fig:general_control_names} shows the results of the Tikz code of listing \ref{lst:tikz_test}.
|
||||
Schematic representation of the experimental validation process.
|
||||
\begin{itemize}
|
||||
\item APA
|
||||
\item Strut
|
||||
\item Nano-hexapod on suspended table
|
||||
\item Nano-hexapod with Spindle
|
||||
\end{itemize}
|
||||
|
||||
\begin{listing}[htbp]
|
||||
\begin{minted}[]{latex}
|
||||
\begin{tikzpicture}
|
||||
\section{Amplified Piezoelectric Actuator (\href{https://research.tdehaeze.xyz/test-bench-apa300ml/}{link})}
|
||||
|
||||
% Blocs
|
||||
\node[block={2.0cm}{2.0cm}] (P) {$P$};
|
||||
\node[block={1.5cm}{1.5cm}, below=0.7 of P] (K) {$K$};
|
||||
APA alone:
|
||||
\begin{itemize}
|
||||
\item \textbf{Goal}: Tune model of APA
|
||||
\item[{$\square$}] FRF and fit with FEM model
|
||||
\item[{$\square$}] Show all six FRF and how close they are
|
||||
\item[{$\square$}] IFF
|
||||
\end{itemize}
|
||||
|
||||
% Input and outputs coordinates
|
||||
\coordinate[] (inputw) at ($(P.south west)!0.75!(P.north west)$);
|
||||
\coordinate[] (inputu) at ($(P.south west)!0.25!(P.north west)$);
|
||||
\coordinate[] (outputz) at ($(P.south east)!0.75!(P.north east)$);
|
||||
\coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);
|
||||
\section{Struts}
|
||||
|
||||
% Connections and labels
|
||||
\draw[<-] (inputw) -- ++(-1.5, 0);
|
||||
\draw[<-] (inputu) -- ++(-0.8, 0) |- (K.west);
|
||||
Strut (APA + joints):
|
||||
\begin{itemize}
|
||||
\item[{$\square$}] FRF, tune model
|
||||
\item[{$\square$}] Issue with encoder (comparison with axial motion)
|
||||
\item[{$\square$}] IFF
|
||||
\end{itemize}
|
||||
|
||||
\draw[->] (outputz) -- ++(1.5, 0);
|
||||
\draw[->] (outputv) -- ++(0.8, 0) |- (K.east);
|
||||
\end{tikzpicture}
|
||||
\end{minted}
|
||||
\caption{\label{lst:tikz_test}Tikz code that is used to generate Figure \ref{fig:general_control_names}}
|
||||
\end{listing}
|
||||
\section{Nano-Hexapod}
|
||||
|
||||
Mounting
|
||||
|
||||
Test bench on top of soft table:
|
||||
\begin{itemize}
|
||||
\item \textbf{Goal}: Tune model of nano-hexapod, validation of dynamics
|
||||
\item modal analysis soft table (first mode at xxx Hz => rigid body in Simscape)
|
||||
\item FRF + comp model (multiple masses)
|
||||
\item IFF and robustness to change of mass
|
||||
\end{itemize}
|
||||
|
||||
\section{Rotating Nano-Hexapod}
|
||||
|
||||
\begin{itemize}
|
||||
\item \textbf{Goal}: validation of control strategy with rotation
|
||||
\item Interferometers to have more stroke
|
||||
\end{itemize}
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||
\caption{\label{fig:general_control_names}General Control Configuration}
|
||||
\includegraphics[scale=1,width=0.49\linewidth]{example-image-a.png}
|
||||
\caption{\label{fig:rot_nano_hexapod_bench_schematic}Schematic of the rotating nano-hexapod test bench}
|
||||
\end{figure}
|
||||
|
||||
\section{Sub Images}
|
||||
\section{ID31 Micro Station}
|
||||
|
||||
Link to subfigure \ref{fig:general_control_names_1}.
|
||||
|
||||
\begin{figure}[htbp]
|
||||
\begin{subfigure}[c]{0.49\linewidth}
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||
\caption{\label{fig:general_control_names_1} sub figure caption}
|
||||
\end{subfigure}
|
||||
\hfill
|
||||
\begin{subfigure}[c]{0.49\linewidth}
|
||||
\centering
|
||||
\includegraphics[scale=1]{figs/general_control_names.png}
|
||||
\caption{\label{fig:general_control_names_2} sub figure caption}
|
||||
\end{subfigure}
|
||||
\hfill
|
||||
\caption{\label{fig:subfigure}Subfigure Caption}
|
||||
\centering
|
||||
\end{figure}
|
||||
|
||||
\chapter{Tables}
|
||||
\minitoc
|
||||
|
||||
Table \ref{tab:table_with_equations} shows a table with some mathematics inside.
|
||||
|
||||
\begin{table}[htbp]
|
||||
\caption{\label{tab:table_with_equations}A Simple table with included math}
|
||||
\centering
|
||||
\begin{tabular}{rrrrrr}
|
||||
\(N\) & \(N^2\) & \(N^3\) & \(N^4\) & \(\sqrt n\) & \(\sqrt[4]N\)\\
|
||||
\hline
|
||||
1 & 1 & 1 & 1 & 1 & 1\\
|
||||
2 & 4 & 8 & 16 & 1.4142136 & 1.1892071\\
|
||||
3 & 9 & 27 & 81 & 1.7320508 & 1.3160740\\
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
|
||||
\begin{table}[htbp]
|
||||
\caption{\label{tab:table_without_head}Table without Head}
|
||||
\centering
|
||||
\begin{tabular}{lrrrrr}
|
||||
& \textbf{1} & \textbf{2} & \textbf{3} & \textbf{4} & \textbf{5}\\
|
||||
\textbf{1} & 1 & 2 & 3 & 4 & 5\\
|
||||
\textbf{2} & 2 & 4 & 6 & 8 & 10\\
|
||||
\textbf{3} & 3 & 6 & 9 & 12 & 15\\
|
||||
\textbf{4} & 4 & 8 & 12 & 16 & 20\\
|
||||
\textbf{5} & 5 & 10 & 15 & 20 & 25\\
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
|
||||
\begin{table}[htbp]
|
||||
\caption{\label{tab:table_multiple_heads}Table with multiples groups}
|
||||
\centering
|
||||
\footnotesize
|
||||
\begin{tabular}{lcc}
|
||||
& \textbf{Classical Control} & \textbf{Modern Control}\\
|
||||
\hline
|
||||
\textbf{Date} & 1930- & 1960-\\
|
||||
\hline
|
||||
\textbf{Tools} & Transfer Functions & State Space formulation\\
|
||||
& Nyquist Plots & Riccati Equations\\
|
||||
& Bode Plots & \\
|
||||
& Phase and Gain margins & \\
|
||||
\hline
|
||||
\textbf{Control Architectures} & Proportional, Integral, Derivative & Full State Feedback\\
|
||||
& Leads, Lags & LQR, LQG\\
|
||||
& & Kalman Filters\\
|
||||
\hline
|
||||
\textbf{Advantages} & Study Stability & Automatic Synthesis\\
|
||||
& Simple & MIMO\\
|
||||
& Natural & Optimization Problem\\
|
||||
& & \\
|
||||
& & \\
|
||||
\hline
|
||||
\textbf{Disadvantages} & Manual Method & No Guaranteed Robustness\\
|
||||
& Only SISO & Difficult Rejection of Perturbations\\
|
||||
\end{tabular}
|
||||
\end{table}
|
||||
\begin{itemize}
|
||||
\item \textbf{Goal}: full validation without the full metrology
|
||||
\end{itemize}
|
||||
|
||||
\chapter{Conclusion and Future Work}
|
||||
|
||||
\appendix
|
||||
|
||||
\chapter{Mathematical formulas}
|
||||
\chapter{Stewart Platform - Kinematics}
|
||||
\chapter{Comments on something}
|
||||
\printbibliography[heading=bibintoc,title={Bibliography}]
|
||||
|
||||
|