pyrbd 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyrbd-0.2.5/.coverage +0 -0
- pyrbd-0.2.5/.github/workflows/deploy_docs.yml +26 -0
- pyrbd-0.2.5/.github/workflows/pylint_pytest.yml +32 -0
- pyrbd-0.2.5/.github/workflows/pylint_pytest_windows.yml +32 -0
- pyrbd-0.2.5/.github/workflows/pypi_publish.yml +76 -0
- pyrbd-0.2.5/.gitignore +4 -0
- pyrbd-0.2.5/LICENSE +21 -0
- pyrbd-0.2.5/PKG-INFO +45 -0
- pyrbd-0.2.5/README.md +29 -0
- pyrbd-0.2.5/docs/examples/example_RBD.png +0 -0
- pyrbd-0.2.5/docs/examples/example_RBD.svg +172 -0
- pyrbd-0.2.5/docs/examples/example_rbd.py +33 -0
- pyrbd-0.2.5/docs/examples/simple_RBD.pdf +0 -0
- pyrbd-0.2.5/docs/examples/simple_RBD.svg +71 -0
- pyrbd-0.2.5/docs/examples/simple_rbd.py +18 -0
- pyrbd-0.2.5/docs/images/logo.png +0 -0
- pyrbd-0.2.5/docs/images/logo.svg +69 -0
- pyrbd-0.2.5/docs/index.md +5 -0
- pyrbd-0.2.5/docs/reference/block.md +3 -0
- pyrbd-0.2.5/docs/reference/diagram.md +3 -0
- pyrbd-0.2.5/docs/reference/index.md +8 -0
- pyrbd-0.2.5/docs/stylesheets/extra.ccs +3 -0
- pyrbd-0.2.5/docs/tutorials.md +16 -0
- pyrbd-0.2.5/mkdocs.yml +71 -0
- pyrbd-0.2.5/pyproject.toml +73 -0
- pyrbd-0.2.5/pyrbd/__init__.py +11 -0
- pyrbd-0.2.5/pyrbd/block.py +456 -0
- pyrbd-0.2.5/pyrbd/diagram.py +186 -0
- pyrbd-0.2.5/tests/integration/__init__.py +0 -0
- pyrbd-0.2.5/tests/latex/__init__.py +0 -0
- pyrbd-0.2.5/tests/latex/test_diagram_latex.py +35 -0
- pyrbd-0.2.5/tests/unit/__init__.py +0 -0
- pyrbd-0.2.5/tests/unit/test_block.py +123 -0
- pyrbd-0.2.5/tests/unit/test_diagram.py +52 -0
- pyrbd-0.2.5/uv.lock +1021 -0
pyrbd-0.2.5/.coverage
ADDED
Binary file
|
@@ -0,0 +1,26 @@
|
|
1
|
+
name: Deploy docs
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- main
|
6
|
+
jobs:
|
7
|
+
deploy:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
steps:
|
10
|
+
- uses: actions/checkout@v2
|
11
|
+
- uses: actions/setup-python@v2
|
12
|
+
with:
|
13
|
+
python-version: 3.12
|
14
|
+
- run: |
|
15
|
+
python -m pip install --upgrade pip
|
16
|
+
pip install mkdocs
|
17
|
+
pip install mkdocs-material
|
18
|
+
pip install mkdocstrings[python]
|
19
|
+
pip install "markdown-exec[ansi]"
|
20
|
+
pip install pymupdf
|
21
|
+
- name: Build release distributions
|
22
|
+
run: |
|
23
|
+
python -m pip install build
|
24
|
+
python -m build
|
25
|
+
pip install -e .
|
26
|
+
- run: mkdocs gh-deploy --force
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Pylint and Pytest Ubuntu
|
2
|
+
|
3
|
+
on: [push]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v4
|
13
|
+
- name: Set up Python ${{ matrix.python-version }}
|
14
|
+
uses: actions/setup-python@v3
|
15
|
+
with:
|
16
|
+
python-version: ${{ matrix.python-version }}
|
17
|
+
- name: Install dependencies
|
18
|
+
run: |
|
19
|
+
python -m pip install --upgrade pip
|
20
|
+
pip install pylint
|
21
|
+
pip install pytest
|
22
|
+
- name: Build release distributions
|
23
|
+
run: |
|
24
|
+
python -m pip install build
|
25
|
+
python -m build
|
26
|
+
pip install -e .
|
27
|
+
- name: Analysing the code with pylint
|
28
|
+
run: |
|
29
|
+
pylint $(git ls-files '*.py')
|
30
|
+
- name: Testing the code with pytest
|
31
|
+
run: |
|
32
|
+
pytest --ignore=tests/latex
|
@@ -0,0 +1,32 @@
|
|
1
|
+
name: Pylint and Pytest Windows
|
2
|
+
|
3
|
+
on: [push]
|
4
|
+
|
5
|
+
jobs:
|
6
|
+
build:
|
7
|
+
runs-on: windows-latest
|
8
|
+
strategy:
|
9
|
+
matrix:
|
10
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v4
|
13
|
+
- name: Set up Python ${{ matrix.python-version }}
|
14
|
+
uses: actions/setup-python@v3
|
15
|
+
with:
|
16
|
+
python-version: ${{ matrix.python-version }}
|
17
|
+
- name: Install dependencies
|
18
|
+
run: |
|
19
|
+
python -m pip install --upgrade pip
|
20
|
+
pip install pylint
|
21
|
+
pip install pytest
|
22
|
+
- name: Build release distributions
|
23
|
+
run: |
|
24
|
+
python -m pip install build
|
25
|
+
python -m build
|
26
|
+
pip install -e .
|
27
|
+
- name: Analysing the code with pylint
|
28
|
+
run: |
|
29
|
+
pylint $(git ls-files '*.py')
|
30
|
+
- name: Testing the code with pytest
|
31
|
+
run: |
|
32
|
+
pytest --ignore=tests/latex
|
@@ -0,0 +1,76 @@
|
|
1
|
+
name: Publish package to PyPI and TestPyPI
|
2
|
+
|
3
|
+
# Based on example given here:
|
4
|
+
# https://packaging.python.org/en/latest/guides/publishing-package-distribution-releases-using-github-actions-ci-cd-workflows/
|
5
|
+
|
6
|
+
on: push
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
build:
|
10
|
+
name: Build distribution 📦
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
|
13
|
+
steps:
|
14
|
+
- uses: actions/checkout@v4
|
15
|
+
with:
|
16
|
+
persist-credentials: false
|
17
|
+
- name: Set up Python
|
18
|
+
uses: actions/setup-python@v5
|
19
|
+
with:
|
20
|
+
python-version: "3.x"
|
21
|
+
- name: Install pypa/build
|
22
|
+
run: >-
|
23
|
+
python3 -m
|
24
|
+
pip install
|
25
|
+
build
|
26
|
+
--user
|
27
|
+
- name: Build a binary wheel and a source tarball
|
28
|
+
run: python3 -m build
|
29
|
+
- name: Store the distribution packages
|
30
|
+
uses: actions/upload-artifact@v4
|
31
|
+
with:
|
32
|
+
name: python-package-distributions
|
33
|
+
path: dist/
|
34
|
+
publish-to-pypi:
|
35
|
+
name: >-
|
36
|
+
Publish Python 🐍 distribution 📦 to PyPI
|
37
|
+
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
|
38
|
+
needs:
|
39
|
+
- build
|
40
|
+
runs-on: ubuntu-latest
|
41
|
+
environment:
|
42
|
+
name: pypi
|
43
|
+
url: https://pypi.org/p/pyrbd
|
44
|
+
permissions:
|
45
|
+
id-token: write
|
46
|
+
steps:
|
47
|
+
- name: Download all the dists
|
48
|
+
uses: actions/download-artifact@v4
|
49
|
+
with:
|
50
|
+
name: python-package-distributions
|
51
|
+
path: dist/
|
52
|
+
- name: Publish distribution 📦 to PyPI
|
53
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
54
|
+
publish-to-testpypi:
|
55
|
+
name: Publish Python 🐍 distribution 📦 to TestPyPI
|
56
|
+
needs:
|
57
|
+
- build
|
58
|
+
runs-on: ubuntu-latest
|
59
|
+
|
60
|
+
environment:
|
61
|
+
name: testpypi
|
62
|
+
url: https://test.pypi.org/p/pyrbd
|
63
|
+
|
64
|
+
permissions:
|
65
|
+
id-token: write
|
66
|
+
|
67
|
+
steps:
|
68
|
+
- name: Download all the dists
|
69
|
+
uses: actions/download-artifact@v4
|
70
|
+
with:
|
71
|
+
name: python-package-distributions
|
72
|
+
path: dist/
|
73
|
+
- name: Publish distribution 📦 to TestPyPI
|
74
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
75
|
+
with:
|
76
|
+
repository-url: https://test.pypi.org/legacy/
|
pyrbd-0.2.5/.gitignore
ADDED
pyrbd-0.2.5/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2025 H. G. Hugdal
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
pyrbd-0.2.5/PKG-INFO
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: pyrbd
|
3
|
+
Version: 0.2.5
|
4
|
+
Summary: Package for creating simple reliability block diagrams (RBDs) using LaTeX and TikZ.
|
5
|
+
Project-URL: Repository, https://github.com/hghugdal/pyrbd
|
6
|
+
Project-URL: Issues, https://github.com/hghugdal/pyrbd/issues
|
7
|
+
Project-URL: Documentation, https://hghugdal.github.io/pyrbd
|
8
|
+
Author-email: hghugdal <hghugdal@gmail.com>
|
9
|
+
License-Expression: MIT
|
10
|
+
License-File: LICENSE
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
13
|
+
Requires-Python: >=3.10
|
14
|
+
Requires-Dist: pymupdf>=1.26.3
|
15
|
+
Description-Content-Type: text/markdown
|
16
|
+
|
17
|
+
# <img alt="pyRBDlogo" src=docs/images/logo.svg width=40 align=top> pyRBD
|
18
|
+
|
19
|
+
<img alt="Python" src="https://img.shields.io/badge/Python->= 3.10-blue?logo=python&link=None">  <img alt="Tests" src="https://img.shields.io/badge/Tests-Passing-darkgreen?logo=pytest&link=None"> <img alt="Coverage" src="https://img.shields.io/badge/Coverage-100%25-darkgreen?link=None"> <img alt="Pylint" src="https://img.shields.io/badge/Pylint-10%2F10-darkgreen?link=None">
|
20
|
+
|
21
|
+
A Python package for creating simple reliability block diagrams (RBDs) using `LaTeX` and [`TikZ`](https://en.wikipedia.org/wiki/PGF/TikZ).
|
22
|
+
|
23
|
+
## Dependencies
|
24
|
+
`pyRBD` requires a working installation of `LaTeX` including [`TikZ`](https://en.wikipedia.org/wiki/PGF/TikZ) and [`latexmk`](https://ctan.org/pkg/latexmk/).
|
25
|
+
|
26
|
+
## Simple example diagram
|
27
|
+
The blocks of the RBD are defined using `Block`, `Series` and `Group`, and the diagram itself is handled by the `Diagram` class. A simple example is given by the code
|
28
|
+
```python linenums="1"
|
29
|
+
from pyrbd import Block, Diagram
|
30
|
+
|
31
|
+
start_block = Block("Start", "blue!30", parent=None)
|
32
|
+
parallel = 2 * Block("Parallel blocks", "gray", parent=start_block)
|
33
|
+
end_block = Block("End", "green!50", parent=parallel)
|
34
|
+
|
35
|
+
diagram = Diagram(
|
36
|
+
"simple_RBD",
|
37
|
+
blocks=[start_block, parallel, end_block],
|
38
|
+
)
|
39
|
+
diagram.write()
|
40
|
+
diagram.compile()
|
41
|
+
```
|
42
|
+
producing the following diagram
|
43
|
+
<div><img src="docs/examples/simple_RBD.svg" width=500/></div>
|
44
|
+
|
45
|
+
For more examples, visit the [documentation](https://hghugdal.github.io/pyrbd/).
|
pyrbd-0.2.5/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# <img alt="pyRBDlogo" src=docs/images/logo.svg width=40 align=top> pyRBD
|
2
|
+
|
3
|
+
<img alt="Python" src="https://img.shields.io/badge/Python->= 3.10-blue?logo=python&link=None">  <img alt="Tests" src="https://img.shields.io/badge/Tests-Passing-darkgreen?logo=pytest&link=None"> <img alt="Coverage" src="https://img.shields.io/badge/Coverage-100%25-darkgreen?link=None"> <img alt="Pylint" src="https://img.shields.io/badge/Pylint-10%2F10-darkgreen?link=None">
|
4
|
+
|
5
|
+
A Python package for creating simple reliability block diagrams (RBDs) using `LaTeX` and [`TikZ`](https://en.wikipedia.org/wiki/PGF/TikZ).
|
6
|
+
|
7
|
+
## Dependencies
|
8
|
+
`pyRBD` requires a working installation of `LaTeX` including [`TikZ`](https://en.wikipedia.org/wiki/PGF/TikZ) and [`latexmk`](https://ctan.org/pkg/latexmk/).
|
9
|
+
|
10
|
+
## Simple example diagram
|
11
|
+
The blocks of the RBD are defined using `Block`, `Series` and `Group`, and the diagram itself is handled by the `Diagram` class. A simple example is given by the code
|
12
|
+
```python linenums="1"
|
13
|
+
from pyrbd import Block, Diagram
|
14
|
+
|
15
|
+
start_block = Block("Start", "blue!30", parent=None)
|
16
|
+
parallel = 2 * Block("Parallel blocks", "gray", parent=start_block)
|
17
|
+
end_block = Block("End", "green!50", parent=parallel)
|
18
|
+
|
19
|
+
diagram = Diagram(
|
20
|
+
"simple_RBD",
|
21
|
+
blocks=[start_block, parallel, end_block],
|
22
|
+
)
|
23
|
+
diagram.write()
|
24
|
+
diagram.compile()
|
25
|
+
```
|
26
|
+
producing the following diagram
|
27
|
+
<div><img src="docs/examples/simple_RBD.svg" width=500/></div>
|
28
|
+
|
29
|
+
For more examples, visit the [documentation](https://hghugdal.github.io/pyrbd/).
|
Binary file
|
@@ -0,0 +1,172 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" width="492.831" height="84.414" viewBox="0 0 492.831 84.414">
|
2
|
+
<defs>
|
3
|
+
<path id="font_1_9" d="M.61299136 .6046448C.61299136 .640625 .61499026 .6516113 .69200137 .6516113H.71598818V.6826172C.68099978 .6796112 .6069946 .6796112 .56900027 .6796112 .5309906 .6796112 .45599366 .6796112 .42099 .6826172V.6516113H.44499208C.5219879 .6516113 .5239868 .640625 .5239868 .6046448V.37083436H.22499085V.6046448C.22499085 .640625 .22698975 .6516113 .3039856 .6516113H.32798768V.6826172C.29299928 .6796112 .21899414 .6796112 .18099976 .6796112 .14299011 .6796112 .067993167 .6796112 .032989503 .6826172V.6516113H.056991579C.13398743 .6516113 .13598633 .640625 .13598633 .6046448V.07797241C.13598633 .041992189 .13398743 .0309906 .056991579 .0309906H.032989503V0C.067993167 .0029907227 .14199829 .0029907227 .17999268 .0029907227 .21798706 .0029907227 .29299928 .0029907227 .32798768 0V.0309906H.3039856C.22698975 .0309906 .22499085 .041992189 .22499085 .07797241V.33984376H.5239868V.07797241C.5239868 .041992189 .5219879 .0309906 .44499208 .0309906H.42099V0C.45599366 .0029907227 .5299988 .0029907227 .56799319 .0029907227 .60598757 .0029907227 .68099978 .0029907227 .71598818 0V.0309906H.69200137C.61499026 .0309906 .61299136 .041992189 .61299136 .07797241V.6046448Z"/>
|
4
|
+
<path id="font_1_12" d="M.33299256 .076156619C.33699037 .036132814 .3639984-.005859375 .41099549-.005859375 .43199159-.005859375 .49299623 .008132935 .49299623 .089157108V.14518738H.46798707V.089157108C.46798707 .031143189 .44299317 .025131226 .43199159 .025131226 .39898683 .025131226 .394989 .07015991 .394989 .075149539V.27514649C.394989 .31707765 .394989 .3560791 .35899354 .39312745 .31999208 .43223573 .269989 .4482422 .22200012 .4482422 .13999939 .4482422 .070999149 .40115357 .070999149 .335083 .070999149 .30508424 .09098816 .28808595 .116989139 .28808595 .14498902 .28808595 .16299439 .30807496 .16299439 .33407594 .16299439 .3460846 .1579895 .3790741 .11199951 .38008119 .13899231 .41519166 .18798828 .426239 .21998596 .426239 .2689972 .426239 .32598878 .38710023 .32598878 .29808045V.26123048C.2749939 .2582245 .20498657 .25523377 .14199829 .22523499 .066986087 .1912384 .041992189 .13923645 .041992189 .09524536 .041992189 .014251709 .13899231-.0107421879 .20199585-.0107421879 .2679901-.010864258 .31399537 .029129029 .33299256 .076156619M.32598878 .24023438V.1401825C.32598878 .045135499 .2539978 .011138916 .20899964 .011138916 .1599884 .011138916 .11898804 .046142579 .11898804 .09616089 .11898804 .15118408 .16099549 .23422241 .32598878 .24023438Z"/>
|
5
|
+
<path id="font_1_27" d="M.3899994 .40066529C.39898683 .4116516 .39898683 .4136505 .39898683 .41766358 .39898683 .43066407 .3909912 .43066407 .37298585 .43066407H.052993776L.041992189 .2697754H.066986087C.07299805 .37168885 .09199524 .4086609 .20199585 .4086609H.31599427L.036987306 .031982423C.027999878 .020996094 .027999878 .018997193 .027999878 .01399231 .027999878 0 .034988405 0 .053985597 0H.38398744L.40098573 .18684387H.37599183C.36698915 .06895447 .34599305 .024993897 .22999573 .024993897H.11199951L.3899994 .40066529Z"/>
|
6
|
+
<path id="font_1_23" d="M.16699219 .3323059V.4423828L.027999878 .43138124V.40037538C.09799194 .40037538 .10598755 .39337159 .10598755 .34431459V.076034549C.10598755 .0309906 .09498596 .0309906 .027999878 .0309906V0C.066986087 .0009918213 .11399841 .0029907227 .14199829 .0029907227 .18199158 .0029907227 .22898865 .0029907227 .2689972 0V.0309906H.24798584C.17399597 .0309906 .17199707 .042007448 .17199707 .07803345V.232193C.17199707 .33128358 .21398926 .42037965 .2899933 .42037965 .29699708 .42037965 .29899598 .42037965 .30099488 .41937257 .2979889 .41838075 .27799989 .4063568 .27799989 .38034059 .27799989 .35231019 .29899598 .33729554 .32099916 .33729554 .33898927 .33729554 .3639984 .3493042 .3639984 .3813324 .3639984 .41337586 .33299256 .4423828 .2899933 .4423828 .21699524 .4423828 .18099976 .37535096 .16699219 .3323059Z"/>
|
7
|
+
<path id="font_1_15" d="M.37998963 .055252077V-.0107421879L.5269928 .00024414063V.03125C.45700074 .03125 .44898988 .038253786 .44898988 .087265018V.69433596L.30499269 .68333438V.6523285C.375 .6523285 .3829956 .6453247 .3829956 .596344V.38035584C.35398866 .41636659 .31098939 .4423828 .25698854 .4423828 .13899231 .4423828 .033996583 .3443451 .033996583 .21531677 .033996583 .088272098 .13198853-.0107421879 .24598694-.0107421879 .30999757-.0107421879 .35499574 .023254395 .37998963 .055252077M.37998963 .323349V.118270877C.37998963 .1002655 .37998963 .0982666 .36898805 .08126831 .33898927 .0332489 .2939911 .011245728 .25099183 .011245728 .20599365 .011245728 .16999817 .037246705 .1459961 .07527161 .11999512 .11627197 .116989139 .17329407 .116989139 .21430969 .116989139 .25131227 .11898804 .31134034 .147995 .35635377 .16899109 .38735963 .20698548 .42037965 .26098634 .42037965 .29599 .42037965 .33799745 .405365 .36898805 .36035157 .37998963 .34335328 .37998963 .34135438 .37998963 .323349Z"/>
|
8
|
+
<path id="font_1_11" d="M.34899903 .38783265 .22099304 .41886903C.15899658 .4338684 .11999512 .48791505 .11999512 .5459595 .11999512 .61602786 .17399597 .677063 .2519989 .677063 .4189911 .677063 .44099427 .51293948 .44699098 .4678955 .44799806 .4618988 .44799806 .45588685 .45899964 .45588685 .47200013 .45588685 .47200013 .46089173 .47200013 .47990418V.68107607C.47200013 .69807437 .47200013 .7050781 .46099855 .7050781 .45399476 .7050781 .45298768 .70407107 .44599916 .69207766L.41099549 .6350403C.3809967 .6640625 .33999635 .7050781 .25099183 .7050781 .13999939 .7050781 .055999757 .61701968 .055999757 .51094058 .055999757 .4278717 .10899353 .35481263 .18699646 .3277893 .19799805 .3237915 .24899292 .31178285 .31900025 .2947693 .34599305 .28775025 .37599183 .28074647 .4039917 .24372864 .4249878 .21769715 .43499757 .18467713 .43499757 .15164185 .43499757 .080596927 .3849945 .008529663 .30099488 .008529663 .27198792 .008529663 .19599915 .013534546 .14299011 .062576297 .084991458 .116622928 .08198547 .18066406 .08099365 .21670532 .07998657 .22669983 .07199097 .22669983 .068984989 .22669983 .055999757 .22669983 .055999757 .21969605 .055999757 .20169068V.0015258789C.055999757-.015472412 .055999757-.022460938 .066986087-.022460938 .07398987-.022460938 .07499695-.020462037 .08198547-.009475708 .08198547-.008468628 .084991458-.0054626467 .117996219 .047561647 .14898682 .013534546 .21299744-.022460938 .3019867-.022460938 .4189911-.022460938 .49899293 .07559204 .49899293 .18566895 .49899293 .28575135 .43299867 .36782838 .34899903 .38783265Z"/>
|
9
|
+
<path id="font_1_25" d="M.17298889 .3996582H.31599427V.43066407H.17298889V.6147156H.147995C.14698792 .5326996 .116989139 .42565919 .018997193 .42166139V.3996582H.10398865V.12416077C.10398865 .0012512207 .19699097-.0107421879 .23298645-.0107421879 .3039856-.0107421879 .33198548 .06021118 .33198548 .12416077V.18112183H.30699159V.12615967C.30699159 .052215578 .2769928 .014251709 .23999024 .014251709 .17298889 .014251709 .17298889 .10517883 .17298889 .122161868V.3996582Z"/>
|
10
|
+
<path id="font_1_10" d="M.22698975 .3157959H.3959961C.5159912 .3157959 .6239929 .39675904 .6239929 .4967041 .6239929 .59465029 .5249939 .6826172 .3880005 .6826172H.034988405V.6516113H.05899048C.13598633 .6516113 .13798523 .64060977 .13798523 .6046295V.07795715C.13798523 .041992189 .13598633 .0309906 .05899048 .0309906H.034988405V0C.069992069 .0029907227 .14399719 .0029907227 .18199158 .0029907227 .21998596 .0029907227 .29499818 .0029907227 .32998658 0V.0309906H.30599977C.22898865 .0309906 .22698975 .041992189 .22698975 .07795715V.3157959M.22399903 .34179688V.6116333C.22399903 .64460757 .22599793 .6516113 .272995 .6516113H.3619995C.5209961 .6516113 .5209961 .54566958 .5209961 .4967041 .5209961 .4497223 .5209961 .34179688 .3619995 .34179688H.22399903Z"/>
|
11
|
+
<path id="font_1_19" d="M.1769867 .69433596 .032989503 .68333438V.6523285C.102996829 .6523285 .11099243 .6453247 .11099243 .5962982V.07601929C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0C.06599426 .0009918213 .11898804 .0029907227 .14399719 .0029907227 .16899109 .0029907227 .21798706 .0009918213 .25498963 0V.0309906C.18798828 .0309906 .1769867 .0309906 .1769867 .07601929V.69433596Z"/>
|
12
|
+
<path id="font_1_16" d="M.11199951 .2524414C.117996219 .40126039 .20199585 .426239 .23599243 .426239 .33898927 .426239 .34899903 .2913971 .34899903 .2524414H.11199951M.11099243 .23144531H.3899994C.4119873 .23144531 .4149933 .23144531 .4149933 .2524414 .4149933 .35131837 .36099244 .4482422 .23599243 .4482422 .11999512 .4482422 .027999878 .34532167 .027999878 .22042847 .027999878 .08631897 .1329956-.0107421879 .24798584-.0107421879 .36999513-.0107421879 .4149933 .10032654 .4149933 .11933899 .4149933 .12934876 .40699769 .13134766 .4019928 .13134766 .3929901 .13134766 .3909912 .12535095 .3889923 .11734009 .35398866 .014251709 .2639923 .014251709 .2539978 .014251709 .20399475 .014251709 .1639862 .044281007 .14099121 .08131409 .11099243 .12934876 .11099243 .19540406 .11099243 .23144531Z"/>
|
13
|
+
<path id="font_1_13" d="M.17199707 .3773346V.69433596L.027999878 .68333438V.6523285C.09799194 .6523285 .10598755 .6453247 .10598755 .596344V0H.1309967C.13198853 .0009918213 .13999939 .01499939 .16699219 .062026979 .18199158 .039260866 .22399903-.0107421879 .2979889-.0107421879 .4169922-.0107421879 .5209961 .08728027 .5209961 .2163086 .5209961 .34335328 .4229889 .4423828 .30899049 .4423828 .23098755 .4423828 .18798828 .39535523 .17199707 .3773346M.1749878 .11407471V.32028199C.1749878 .33929444 .1749878 .3403015 .18598938 .35630799 .22499085 .41236878 .27999879 .42037965 .3039856 .42037965 .34899903 .42037965 .3849945 .39434815 .40899659 .35630799 .43499757 .3152771 .43798829 .2582245 .43798829 .21717835 .43798829 .18014527 .43598939 .12008667 .40699769 .075042728 .38598634 .044021608 .34799195 .010986328 .2939911 .010986328 .24899292 .010986328 .21299744 .035003663 .18899536 .07203674 .1749878 .093063358 .1749878 .096069339 .1749878 .11407471Z"/>
|
14
|
+
<path id="font_1_21" d="M.47099305 .21424866C.47099305 .34223939 .37098695 .4482422 .25 .4482422 .125 .4482422 .027999878 .3392334 .027999878 .21424866 .027999878 .085250858 .13198853-.0107421879 .24899292-.0107421879 .36999513-.0107421879 .47099305 .087249759 .47099305 .21424866M.25 .014251709C.20698548 .014251709 .16299439 .035247804 .13598633 .08125305 .11099243 .12524414 .11099243 .18624878 .11099243 .22224427 .11099243 .26124574 .11099243 .31523133 .1349945 .35923768 .1619873 .40522767 .20899964 .426239 .24899292 .426239 .29299928 .426239 .33599855 .40423585 .3619995 .36123658 .3880005 .3182373 .3880005 .26023866 .3880005 .22224427 .3880005 .18624878 .3880005 .13224793 .3659973 .08824158 .34399415 .04324341 .2999878 .014251709 .25 .014251709Z"/>
|
15
|
+
<path id="font_1_14" d="M.116989139 .21801758C.116989139 .38093568 .19898987 .42323304 .2519989 .42323304 .26098634 .42323304 .32398988 .42222596 .35899354 .38594056 .31799317 .38293458 .31199647 .3529358 .31199647 .3399353 .31199647 .31393434 .32998658 .2939453 .35798646 .2939453 .38398744 .2939453 .4039917 .3109436 .4039917 .34094239 .4039917 .40911866 .32798768 .4482422 .25099183 .4482422 .12599182 .4482422 .033996583 .3399353 .033996583 .21601868 .033996583 .08816528 .1329956-.0107421879 .24899292-.0107421879 .3829956-.0107421879 .4149933 .10914612 .4149933 .119140628 .4149933 .12911988 .40499879 .12911988 .4019928 .12911988 .3929901 .12911988 .3909912 .12512207 .3889923 .119140628 .3600006 .026229859 .29499818 .014251709 .2579956 .014251709 .20498657 .014251709 .116989139 .0572052 .116989139 .21801758Z"/>
|
16
|
+
<path id="font_1_18" d="M.10598755 .07595825C.10598755 .0309906 .09498596 .0309906 .027999878 .0309906V0C.06098938 .0009918213 .10798645 .0029907227 .13699341 .0029907227 .16699219 .0029907227 .20698548 .0019989014 .24699402 0V.0309906C.17999268 .0309906 .16899109 .0309906 .16899109 .07595825V.17886353L.23298645 .23381043C.30999757 .12789917 .35198976 .07196045 .35198976 .053970338 .35198976 .034988405 .33499146 .0309906 .31599427 .0309906V0C.34399415 .0009918213 .40299989 .0029907227 .42399598 .0029907227 .45298768 .0029907227 .48199464 .0019989014 .5109863 0V.0309906C.47399903 .0309906 .45199586 .0309906 .4139862 .0839386L.2869873 .26278688C.28599549 .26478578 .2809906 .2707672 .2809906 .2737732 .2809906 .277771 .35198976 .33770753 .3619995 .34570313 .4249878 .39666749 .46699525 .39865113 .48799134 .3996582V.43066407C.45899964 .42765809 .44599916 .42765809 .41799928 .42765809 .38198854 .42765809 .31999208 .42965699 .30599977 .43066407V.3996582C.32499696 .39865113 .33499146 .3876648 .33499146 .37467958 .33499146 .3547058 .32099916 .3427124 .31298829 .33570863L.17199707 .21382141V.69433596L.027999878 .68333438V.6523285C.09799194 .6523285 .10598755 .64530947 .10598755 .5961609V.07595825Z"/>
|
17
|
+
<path id="font_1_24" d="M.20799256 .19424439C.22999573 .19024658 .31199647 .17424011 .31199647 .102249149 .31199647 .051254274 .2769928 .011245728 .19898987 .011245728 .114990238 .011245728 .07899475 .06825256 .05999756 .15324402 .056991579 .1662445 .055999757 .17024231 .04598999 .17024231 .032989503 .17024231 .032989503 .16323853 .032989503 .14524842V.013244629C.032989503-.003753662 .032989503-.0107421879 .04399109-.0107421879 .04899597-.0107421879 .049987794-.009750366 .068984989 .009246826 .070999149 .011245728 .070999149 .013244629 .08898926 .03224182 .1329956-.009750366 .17799378-.0107421879 .19898987-.0107421879 .31399537-.0107421879 .3600006 .056243898 .3600006 .12825012 .3600006 .1812439 .32998658 .21124268 .31799317 .22323609 .2849884 .25523377 .24598694 .26324464 .20399475 .27124024 .147995 .28224183 .08099365 .2952423 .08099365 .35324098 .08099365 .38822938 .10699463 .42922975 .19299317 .42922975 .30299378 .42922975 .30799867 .3392334 .30999757 .3082428 .31098939 .2992401 .31999208 .2992401 .32199098 .2992401 .33499146 .2992401 .33499146 .304245 .33499146 .3232422V.4242401C.33499146 .4412384 .33499146 .4482422 .32398988 .4482422 .31900025 .4482422 .31698609 .4482422 .3039856 .43623353 .30099488 .43223573 .29100038 .42323304 .2869873 .42022706 .24899292 .4482422 .20799256 .4482422 .19299317 .4482422 .070999149 .4482422 .032989503 .38124085 .032989503 .3252411 .032989503 .29023744 .04899597 .26223756 .07598877 .24023438 .10798645 .21424866 .13598633 .2082367 .20799256 .19424439Z"/>
|
18
|
+
<path id="font_1_6" d="M.22200012 .36573792V.6116333C.22200012 .64460757 .22399903 .6516113 .2709961 .6516113H.394989C.49198915 .6516113 .5269928 .5666504 .5269928 .5136719 .5269928 .44970704 .47799684 .36573792 .36698915 .36573792H.22200012M.45799256 .35673524C.5549927 .37573243 .6239929 .43971253 .6239929 .5136719 .6239929 .6006317 .5319977 .6826172 .4019928 .6826172H.035995485V.6516113H.05999756C.13699341 .6516113 .13899231 .64060977 .13899231 .6046295V.07795715C.13899231 .04197693 .13699341 .0309906 .05999756 .0309906H.035995485V0H.42799378C.5609894 0 .651001 .08894348 .651001 .18287659 .651001 .2698059 .56900027 .34474183 .45799256 .35673524M.3959961 .0309906H.2709961C.22399903 .0309906 .22200012 .037994386 .22200012 .07095337V.34375H.4099884C.5089874 .34375 .5509949 .25080873 .5509949 .18386841 .5509949 .1129303 .49899293 .0309906 .3959961 .0309906Z"/>
|
19
|
+
<path id="font_1_1" d="M.2939911 .64004519C.2939911 .66400149 .2939911 .6660156 .2709961 .6660156 .20899964 .60227969 .12098694 .60227969 .08898926 .60227969V.57128909C.10899353 .57128909 .16799927 .57128909 .21998596 .5972748V.07902527C.21998596 .042999269 .21699524 .0309906 .1269989 .0309906H.09498596V0C.12998963 .0029907227 .21699524 .0029907227 .25698854 .0029907227 .29699708 .0029907227 .38398744 .0029907227 .4189911 0V.0309906H.3869934C.29699708 .0309906 .2939911 .041992189 .2939911 .07902527V.64004519Z"/>
|
20
|
+
<path id="font_1_2" d="M.1269989 .07699585 .23298645 .18003845C.3889923 .31811524 .44898988 .3721466 .44898988 .47216798 .44898988 .5860901 .35899354 .6660156 .23699951 .6660156 .12399292 .6660156 .049987794 .57411196 .049987794 .48516847 .049987794 .4291687 .099990848 .4291687 .102996829 .4291687 .11999512 .4291687 .15499878 .44117738 .15499878 .48217774 .15499878 .5081787 .13699341 .5341797 .101989749 .5341797 .09399414 .5341797 .09199524 .5341797 .08898926 .5331726 .11199951 .59806826 .1659851 .63500979 .22399903 .63500979 .31498719 .63500979 .35798646 .5541382 .35798646 .47216798 .35798646 .39215089 .30799867 .31311036 .25299073 .25108338L.06098938 .036987306C.049987794 .025985718 .049987794 .023986817 .049987794 0H.42099L.44898988 .17404175H.42399598C.4189911 .14402771 .4119873 .1000061 .4019928 .084991458 .394989 .07699585 .32899476 .07699585 .30699159 .07699585H.1269989Z"/>
|
21
|
+
<path id="font_1_3" d="M.2899933 .35191346C.37199403 .37893678 .42999269 .4490509 .42999269 .52809146 .42999269 .6100464 .34199525 .6660156 .24598694 .6660156 .14498902 .6660156 .068984989 .60606387 .068984989 .53009036 .068984989 .49710084 .09098816 .47808839 .11999512 .47808839 .15098572 .47808839 .17098999 .50009158 .17098999 .5290985 .17098999 .57910159 .12399292 .57910159 .10899353 .57910159 .13999939 .62802127 .20599365 .64100649 .24198914 .64100649 .2829895 .64100649 .33799745 .6190338 .33799745 .5290985 .33799745 .51708987 .33599855 .45906068 .30999757 .4149933 .27999879 .36691285 .24598694 .36390687 .22099304 .36291505 .21299744 .36190797 .18899536 .35990907 .18199158 .35990907 .17399597 .35890199 .16699219 .35791017 .16699219 .3479004 .16699219 .33691407 .17399597 .33691407 .19099427 .33691407H.23498535C.31698609 .33691407 .35398866 .2686615 .35398866 .17037964 .35398866 .034469606 .2849884 .0055389406 .24099732 .0055389406 .19799805 .0055389406 .12298584 .022491456 .08799744 .08137512 .12298584 .07637024 .1539917 .09837341 .1539917 .1363678 .1539917 .17237854 .1269989 .19238281 .09799194 .19238281 .07398987 .19238281 .041992189 .17837525 .041992189 .1343689 .041992189 .043441774 .1349945-.022460938 .24398804-.022460938 .3659973-.022460938 .45700074 .06838989 .45700074 .17037964 .45700074 .252594 .3939972 .33088685 .2899933 .35191346Z"/>
|
22
|
+
<path id="font_1_4" d="M.2939911 .16503906V.07800293C.2939911 .041992189 .2919922 .0309906 .21798706 .0309906H.19699097V0C.23799134 .0029907227 .2899933 .0029907227 .33198548 .0029907227 .37399293 .0029907227 .4269867 .0029907227 .46798707 0V.0309906H.44699098C.37298585 .0309906 .37098695 .041992189 .37098695 .07800293V.16503906H.47099305V.19602967H.37098695V.65075686C.37098695 .67074587 .37098695 .6767578 .35499574 .6767578 .34599305 .6767578 .34298707 .6767578 .33499146 .66474917L.027999878 .19602967V.16503906H.2939911M.2999878 .19602967H.055999757L.2999878 .5688019V.19602967Z"/>
|
23
|
+
<path id="font_1_8" d="M.59298709 .06303406C.60598757 .041015626 .6459961 .0009918213 .6569977 .0009918213 .66600039 .0009918213 .66600039 .008987427 .66600039 .024002076V.19815064C.66600039 .23718262 .66999819 .2421875 .7350006 .2421875V.2731781C.69799807 .27218629 .6429901 .27018739 .61299136 .27018739 .57299807 .27018739 .48799134 .27018739 .45199586 .2731781V.2421875H.48399354C.57398989 .2421875 .57699587 .23117066 .57699587 .19413758V.13008118C.57699587 .017562867 .44999696 .008529663 .42199708 .008529663 .35699464 .008529663 .15899658 .043624879 .15899658 .3421631 .15899658 .64108279 .35598756 .67407229 .41600038 .67407229 .522995 .67407229 .6139984 .5840912 .6339874 .4371338 .6359863 .42314149 .6359863 .4201355 .6499939 .4201355 .66600039 .4201355 .66600039 .42314149 .66600039 .44413758V.68107607C.66600039 .69807437 .66600039 .7050781 .6549988 .7050781 .651001 .7050781 .6469879 .7050781 .6389923 .69306948L.58898928 .61909487C.5569916 .6510773 .5029907 .7050781 .4039917 .7050781 .21798706 .7050781 .055999757 .5471039 .055999757 .3421631 .055999757 .1368866 .21598816-.022460938 .4059906-.022460938 .47898866-.022003174 .5589905 .0039978029 .59298709 .06303406Z"/>
|
24
|
+
<path id="font_1_26" d="M.3909912 .07926941V-.0107421879L.5349884 .00024414063V.03125C.46499635 .03125 .45700074 .038253786 .45700074 .087265018V.4423828L.30999757 .43138124V.40037538C.37998963 .40037538 .3880005 .39337159 .3880005 .34436036V.16630554C.3880005 .07926941 .33999635 .011245728 .2669983 .011245728 .18299866 .011245728 .1789856 .058258058 .1789856 .11027527V.4423828L.03199768 .43138124V.40037538C.10998535 .40037538 .10998535 .39736939 .10998535 .3083496V.15829468C.10998535 .08027649 .10998535-.0107421879 .2619934-.0107421879 .31799317-.0107421879 .3619995 .01725769 .3909912 .07926941Z"/>
|
25
|
+
<path id="font_1_22" d="M.17199707 .37635804V.4423828L.027999878 .43138124V.40037538C.09899902 .40037538 .10598755 .3943634 .10598755 .35035707V-.11816406C.10598755-.16334534 .09498596-.16334534 .027999878-.16334534V-.19433594C.06199646-.19334412 .11399841-.19134522 .13999939-.19134522 .16699219-.19134522 .21798706-.19334412 .25299073-.19433594V-.16334534C.18598938-.16334534 .1749878-.16334534 .1749878-.11816406V.05026245 .059265138C.17999268 .043258668 .22200012-.0107421879 .2979889-.0107421879 .4169922-.0107421879 .5209961 .08728027 .5209961 .2163086 .5209961 .34335328 .42399598 .4423828 .31199647 .4423828 .23399353 .4423828 .19198609 .39837647 .17199707 .37635804M.1749878 .11428833V.33735658C.20399475 .3883667 .25299073 .41737367 .3039856 .41737367 .3769989 .41737367 .43798829 .3293457 .43798829 .2163086 .43798829 .09527588 .36799623 .011245728 .2939911 .011245728 .2539978 .011245728 .21598816 .03125 .18899536 .072265628 .1749878 .09327698 .1749878 .0942688 .1749878 .11428833Z"/>
|
26
|
+
<path id="font_1_5" d="M.397995 .69581606C.3929901 .7088165 .3909912 .7158203 .375 .7158203 .35899354 .7158203 .35598756 .70980837 .35099793 .69581606L.14399719 .09791565C.12599182 .04698181 .085998538 .03199768 .03199768 .0309906V0C.054992677 .0009918213 .09799194 .0029907227 .13398743 .0029907227 .16499329 .0029907227 .21699524 .0009918213 .24899292 0V.0309906C.19898987 .0309906 .17399597 .05596924 .17399597 .0819397 .17399597 .08493042 .1749878 .09492493 .17599488 .09692383L.22200012 .2277832H.46899415L.5219879 .07495117C.522995 .07095337 .5249939 .064956668 .5249939 .060958864 .5249939 .0309906 .46899415 .0309906 .44198609 .0309906V0C.47799684 .0029907227 .5479889 .0029907227 .58599856 .0029907227 .6289978 .0029907227 .6749878 .0019989014 .71699526 0V.0309906H.69898989C.6389923 .0309906 .625 .037979127 .6139984 .07095337L.397995 .69581606M.34498597 .58380129 .45799256 .25878907H.23298645L.34498597 .58380129Z"/>
|
27
|
+
<path id="font_1_17" d="M.1769867 .4423828 .036987306 .43138124V.40037538C.101989749 .40037538 .11099243 .3943634 .11099243 .34532167V.076034549C.11099243 .0309906 .099990848 .0309906 .032989503 .0309906V0C.06498718 .0009918213 .11898804 .0029907227 .14299011 .0029907227 .17799378 .0029907227 .21299744 .0009918213 .24699402 0V.0309906C.18099976 .0309906 .1769867 .035995485 .1769867 .075042728V.4423828M.18099976 .6159363C.18099976 .64793398 .1559906 .6689453 .12799073 .6689453 .09700012 .6689453 .07499695 .64193728 .07499695 .6159363 .07499695 .5889435 .09700012 .5629425 .12799073 .5629425 .1559906 .5629425 .18099976 .5839386 .18099976 .6159363Z"/>
|
28
|
+
<path id="font_1_7" d="M.13598633 .07797241C.13598633 .041992189 .13398743 .0309906 .056991579 .0309906H.032989503V0H.6100006L.6519928 .2579193H.6269989C.60198977 .10397339 .57899478 .0309906 .40699769 .0309906H.27398683C.22698975 .0309906 .22499085 .037994386 .22499085 .07098389V.33789063H.31498719C.4119873 .33789063 .4229889 .30589295 .4229889 .220932H.44799806V.48576356H.4229889C.4229889 .39985658 .4119873 .36888124 .31498719 .36888124H.22499085V.6086426C.22499085 .6416168 .22698975 .64860537 .27398683 .64860537H.40299989C.55599978 .64860537 .58299258 .59365847 .598999 .45480348H.6239929L.59599307 .6796112H.032989503V.64860537H.056991579C.13398743 .64860537 .13598633 .637619 .13598633 .60165408V.07797241Z"/>
|
29
|
+
<path id="font_1_20" d="M.10998535 .34429933V.076034549C.10998535 .0309906 .09899902 .0309906 .03199768 .0309906V0C.066986087 .0009918213 .117996219 .0029907227 .14498902 .0029907227 .17098999 .0029907227 .22299195 .0009918213 .25698854 0V.0309906C.18998719 .0309906 .1789856 .0309906 .1789856 .076034549V.2602234C.1789856 .36431886 .25 .42037965 .31399537 .42037965 .3769989 .42037965 .3880005 .36631776 .3880005 .30926515V.076034549C.3880005 .0309906 .3769989 .0309906 .30999757 .0309906V0C.34498597 .0009918213 .3959961 .0029907227 .4229889 .0029907227 .44898988 .0029907227 .5009918 .0009918213 .5349884 0V.0309906C.48298646 .0309906 .45799256 .0309906 .45700074 .061019899V.25221253C.45700074 .3383026 .45700074 .36932374 .42599488 .405365 .4119873 .42237855 .3789978 .4423828 .32099916 .4423828 .24798584 .4423828 .20098877 .39935304 .17298889 .33729554V.4423828L.03199768 .43138124V.40037538C.101989749 .4003601 .10998535 .39335633 .10998535 .34429933Z"/>
|
30
|
+
</defs>
|
31
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#fff200" d="M209.52597-34.21536V34.21536H340.43983V-34.21536ZM340.43983 34.21536"/>
|
32
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#ff8000" d="M348.94389-17.2073V17.2073H455.2802V-17.2073ZM455.2802 17.2073"/>
|
33
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" d="M38.41956 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H38.41956C38.88922-14.17339 39.26996-13.79266 39.26996-13.323V13.323C39.26996 13.79266 38.88922 14.17339 38.41956 14.17339ZM0-14.17339" fill="#ff6666"/>
|
34
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M38.41956 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H38.41956C38.88922-14.17339 39.26996-13.79266 39.26996-13.323V13.323C39.26996 13.79266 38.88922 14.17339 38.41956 14.17339ZM0-14.17339"/>
|
35
|
+
<use data-text="H" xlink:href="#font_1_9" transform="matrix(9.9626,0,0,-9.9626,4.184,53.260004)"/>
|
36
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,11.655951,53.260004)"/>
|
37
|
+
<use data-text="z" xlink:href="#font_1_27" transform="matrix(9.9626,0,0,-9.9626,16.63725,53.260004)"/>
|
38
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,21.060647,53.260004)"/>
|
39
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,26.041947,53.260004)"/>
|
40
|
+
<use data-text="d" xlink:href="#font_1_15" transform="matrix(9.9626,0,0,-9.9626,29.947285,53.260004)"/>
|
41
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" d="M82.7304 14.17339H54.29375C53.82408 14.17339 53.44336 13.79266 53.44336 13.323V-13.323C53.44336-13.79266 53.82408-14.17339 54.29375-14.17339H82.7304C83.20006-14.17339 83.5808-13.79266 83.5808-13.323V13.323C83.5808 13.79266 83.20006 14.17339 82.7304 14.17339ZM53.44336-14.17339" fill="#b3b3ff"/>
|
42
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M82.7304 14.17339H54.29375C53.82408 14.17339 53.44336 13.79266 53.44336 13.323V-13.323C53.44336-13.79266 53.82408-14.17339 54.29375-14.17339H82.7304C83.20006-14.17339 83.5808-13.79266 83.5808-13.323V13.323C83.5808 13.79266 83.20006 14.17339 82.7304 14.17339ZM53.44336-14.17339"/>
|
43
|
+
<use data-text="S" xlink:href="#font_1_11" transform="matrix(9.9626,0,0,-9.9626,57.627004,53.204004)"/>
|
44
|
+
<use data-text="t" xlink:href="#font_1_25" transform="matrix(9.9626,0,0,-9.9626,63.16621,53.204004)"/>
|
45
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,67.04166,53.204004)"/>
|
46
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,72.022968,53.204004)"/>
|
47
|
+
<use data-text="t" xlink:href="#font_1_25" transform="matrix(9.9626,0,0,-9.9626,75.9283,53.204004)"/>
|
48
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M39.26996 0H46.35664 48.78087"/>
|
49
|
+
<path transform="matrix(1,0,0,-1,48.97987,49.801004)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
50
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" d="M84.61224 14.17339H15.02379C14.55412 14.17339 14.17339 13.79266 14.17339 13.323V-13.323C14.17339-13.79266 14.55412-14.17339 15.02379-14.17339H84.61224C85.08191-14.17339 85.46265-13.79266 85.46265-13.323V13.323C85.46265 13.79266 85.08191 14.17339 84.61224 14.17339ZM14.17339-14.17339" fill="#7f807f"/>
|
51
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M84.61224 14.17339H15.02379C14.55412 14.17339 14.17339 13.79266 14.17339 13.323V-13.323C14.17339-13.79266 14.55412-14.17339 15.02379-14.17339H84.61224C85.08191-14.17339 85.46265-13.79266 85.46265-13.323V13.323C85.46265 13.79266 85.08191 14.17339 84.61224 14.17339ZM14.17339-14.17339"/>
|
52
|
+
<use data-text="P" xlink:href="#font_1_10" transform="matrix(9.9626,0,0,-9.9626,116.509,36.252004)"/>
|
53
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,123.01458,36.252004)"/>
|
54
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,127.99588,36.252004)"/>
|
55
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,131.90122,36.252004)"/>
|
56
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,136.8825,36.252004)"/>
|
57
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,139.65212,36.252004)"/>
|
58
|
+
<use data-text="e" xlink:href="#font_1_16" transform="matrix(9.9626,0,0,-9.9626,142.42173,36.252004)"/>
|
59
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,146.84513,36.252004)"/>
|
60
|
+
<use data-text="b" xlink:href="#font_1_13" transform="matrix(9.9626,0,0,-9.9626,152.93228,36.252004)"/>
|
61
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,158.47148,36.252004)"/>
|
62
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,161.24109,36.252004)"/>
|
63
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,166.50133,36.252004)"/>
|
64
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,170.64579,36.252004)"/>
|
65
|
+
<use data-text="s" xlink:href="#font_1_24" transform="matrix(9.9626,0,0,-9.9626,175.90604,36.252004)"/>
|
66
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V0H9.51091"/>
|
67
|
+
<path transform="matrix(1,0,0,-1,107.86191,32.793)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
68
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" d="M84.61224-19.8427H15.02379C14.55412-19.8427 14.17339-20.22343 14.17339-20.6931V-47.3391C14.17339-47.80876 14.55412-48.18948 15.02379-48.18948H84.61224C85.08191-48.18948 85.46265-47.80876 85.46265-47.3391V-20.6931C85.46265-20.22343 85.08191-19.8427 84.61224-19.8427ZM14.17339-48.18948" fill="#7f807f"/>
|
69
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M84.61224-19.8427H15.02379C14.55412-19.8427 14.17339-20.22343 14.17339-20.6931V-47.3391C14.17339-47.80876 14.55412-48.18948 15.02379-48.18948H84.61224C85.08191-48.18948 85.46265-47.80876 85.46265-47.3391V-20.6931C85.46265-20.22343 85.08191-19.8427 84.61224-19.8427ZM14.17339-48.18948"/>
|
70
|
+
<use data-text="P" xlink:href="#font_1_10" transform="matrix(9.9626,0,0,-9.9626,116.509,70.268009)"/>
|
71
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,123.01458,70.268009)"/>
|
72
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,127.99588,70.268009)"/>
|
73
|
+
<use data-text="a" xlink:href="#font_1_12" transform="matrix(9.9626,0,0,-9.9626,131.90122,70.268009)"/>
|
74
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,136.8825,70.268009)"/>
|
75
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,139.65212,70.268009)"/>
|
76
|
+
<use data-text="e" xlink:href="#font_1_16" transform="matrix(9.9626,0,0,-9.9626,142.42173,70.268009)"/>
|
77
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,146.84513,70.268009)"/>
|
78
|
+
<use data-text="b" xlink:href="#font_1_13" transform="matrix(9.9626,0,0,-9.9626,152.93228,70.268009)"/>
|
79
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,158.47148,70.268009)"/>
|
80
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,161.24109,70.268009)"/>
|
81
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,166.50133,70.268009)"/>
|
82
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,170.64579,70.268009)"/>
|
83
|
+
<use data-text="s" xlink:href="#font_1_24" transform="matrix(9.9626,0,0,-9.9626,175.90604,70.268009)"/>
|
84
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V0-34.0161H9.51091"/>
|
85
|
+
<path transform="matrix(1,0,0,-1,107.86191,66.8091)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
86
|
+
<path transform="matrix(1,0,0,-1,98.351,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M85.46265 0H99.63603V-34.0161H85.46265"/>
|
87
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M83.5808 0H97.75418"/>
|
88
|
+
<path transform="matrix(1,0,0,-1,227.32802,32.793)" d="M39.914 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H39.914C40.38367-14.17339 40.7644-13.79266 40.7644-13.323V13.323C40.7644 13.79266 40.38367 14.17339 39.914 14.17339ZM0-14.17339" fill="#fff799"/>
|
89
|
+
<path transform="matrix(1,0,0,-1,227.32802,32.793)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M39.914 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H39.914C40.38367-14.17339 40.7644-13.79266 40.7644-13.323V13.323C40.7644 13.79266 40.38367 14.17339 39.914 14.17339ZM0-14.17339"/>
|
90
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,231.31302,36.252004)"/>
|
91
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,238.36655,36.252004)"/>
|
92
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,241.13616,36.252004)"/>
|
93
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,246.3964,36.252004)"/>
|
94
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,250.54085,36.252004)"/>
|
95
|
+
<use data-text="1" xlink:href="#font_1_1" transform="matrix(9.9626,0,0,-9.9626,259.11866,36.252004)"/>
|
96
|
+
<path transform="matrix(1,0,0,-1,227.32802,32.793)" d="M94.8518 14.17339H55.7882C55.31853 14.17339 54.9378 13.79266 54.9378 13.323V-13.323C54.9378-13.79266 55.31853-14.17339 55.7882-14.17339H94.8518C95.32147-14.17339 95.70221-13.79266 95.70221-13.323V13.323C95.70221 13.79266 95.32147 14.17339 94.8518 14.17339ZM54.9378-14.17339" fill="#fff799"/>
|
97
|
+
<path transform="matrix(1,0,0,-1,227.32802,32.793)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M94.8518 14.17339H55.7882C55.31853 14.17339 54.9378 13.79266 54.9378 13.323V-13.323C54.9378-13.79266 55.31853-14.17339 55.7882-14.17339H94.8518C95.32147-14.17339 95.70221-13.79266 95.70221-13.323V13.323C95.70221 13.79266 95.32147 14.17339 94.8518 14.17339ZM54.9378-14.17339"/>
|
98
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,286.25004,36.252004)"/>
|
99
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,293.30357,36.252004)"/>
|
100
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,296.07316,36.252004)"/>
|
101
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,301.3334,36.252004)"/>
|
102
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,305.47785,36.252004)"/>
|
103
|
+
<use data-text="2" xlink:href="#font_1_2" transform="matrix(9.9626,0,0,-9.9626,314.05564,36.252004)"/>
|
104
|
+
<path transform="matrix(1,0,0,-1,227.32802,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M40.7644 0V0H50.27531"/>
|
105
|
+
<path transform="matrix(1,0,0,-1,277.60334,32.793)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
106
|
+
<path transform="matrix(1,0,0,-1,212.95601,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V0H9.51091"/>
|
107
|
+
<path transform="matrix(1,0,0,-1,222.46692,32.793)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
108
|
+
<path transform="matrix(1,0,0,-1,227.32802,66.808)" d="M39.914 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H39.914C40.38367-14.17339 40.7644-13.79266 40.7644-13.323V13.323C40.7644 13.79266 40.38367 14.17339 39.914 14.17339ZM0-14.17339" fill="#fff799"/>
|
109
|
+
<path transform="matrix(1,0,0,-1,227.32802,66.808)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M39.914 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H39.914C40.38367-14.17339 40.7644-13.79266 40.7644-13.323V13.323C40.7644 13.79266 40.38367 14.17339 39.914 14.17339ZM0-14.17339"/>
|
110
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,231.31302,70.268009)"/>
|
111
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,238.36655,70.268009)"/>
|
112
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,241.13616,70.268009)"/>
|
113
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,246.3964,70.268009)"/>
|
114
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,250.54085,70.268009)"/>
|
115
|
+
<use data-text="3" xlink:href="#font_1_3" transform="matrix(9.9626,0,0,-9.9626,259.11866,70.268009)"/>
|
116
|
+
<path transform="matrix(1,0,0,-1,227.32802,66.808)" d="M94.8518 14.17339H55.7882C55.31853 14.17339 54.9378 13.79266 54.9378 13.323V-13.323C54.9378-13.79266 55.31853-14.17339 55.7882-14.17339H94.8518C95.32147-14.17339 95.70221-13.79266 95.70221-13.323V13.323C95.70221 13.79266 95.32147 14.17339 94.8518 14.17339ZM54.9378-14.17339" fill="#fff799"/>
|
117
|
+
<path transform="matrix(1,0,0,-1,227.32802,66.808)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M94.8518 14.17339H55.7882C55.31853 14.17339 54.9378 13.79266 54.9378 13.323V-13.323C54.9378-13.79266 55.31853-14.17339 55.7882-14.17339H94.8518C95.32147-14.17339 95.70221-13.79266 95.70221-13.323V13.323C95.70221 13.79266 95.32147 14.17339 94.8518 14.17339ZM54.9378-14.17339"/>
|
118
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,286.25004,70.268009)"/>
|
119
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,293.30357,70.268009)"/>
|
120
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,296.07316,70.268009)"/>
|
121
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,301.3334,70.268009)"/>
|
122
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,305.47785,70.268009)"/>
|
123
|
+
<use data-text="4" xlink:href="#font_1_4" transform="matrix(9.9626,0,0,-9.9626,314.05564,70.268009)"/>
|
124
|
+
<path transform="matrix(1,0,0,-1,227.32802,66.808)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M40.7644 0V0H50.27531"/>
|
125
|
+
<path transform="matrix(1,0,0,-1,277.60334,66.808)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
126
|
+
<path transform="matrix(1,0,0,-1,212.95601,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M0 0V0-34.0161H9.51091"/>
|
127
|
+
<path transform="matrix(1,0,0,-1,222.46692,66.8091)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
128
|
+
<path transform="matrix(1,0,0,-1,212.95601,32.793)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M110.2741 0H124.4475V-34.0161H110.2741"/>
|
129
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M198.18724 0H212.36064"/>
|
130
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" d="M209.52597 34.21536V48.38876H340.43983V34.21536ZM340.43983 48.38876" fill="#fff799"/>
|
131
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#fff200" d="M209.52597 34.21536V48.38876H340.43983V34.21536ZM340.43983 48.38876"/>
|
132
|
+
<use data-text="G" xlink:href="#font_1_8" transform="matrix(9.9626,0,0,-9.9626,261.293,10.128998)"/>
|
133
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,269.11366,10.128998)"/>
|
134
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,273.01899,10.128998)"/>
|
135
|
+
<use data-text="u" xlink:href="#font_1_26" transform="matrix(9.9626,0,0,-9.9626,278.00028,10.128998)"/>
|
136
|
+
<use data-text="p" xlink:href="#font_1_22" transform="matrix(9.9626,0,0,-9.9626,283.5395,10.128998)"/>
|
137
|
+
<path transform="matrix(1,0,0,-1,352.172,49.801004)" d="M42.4047 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H42.4047C42.87436-14.17339 43.2551-13.79266 43.2551-13.323V13.323C43.2551 13.79266 42.87436 14.17339 42.4047 14.17339ZM0-14.17339" fill="#ffbf80"/>
|
138
|
+
<path transform="matrix(1,0,0,-1,352.172,49.801004)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M42.4047 14.17339H.85039C.38072 14.17339 0 13.79266 0 13.323V-13.323C0-13.79266 .38072-14.17339 .85039-14.17339H42.4047C42.87436-14.17339 43.2551-13.79266 43.2551-13.323V13.323C43.2551 13.79266 42.87436 14.17339 42.4047 14.17339ZM0-14.17339"/>
|
139
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,356.15699,53.260004)"/>
|
140
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,363.2105,53.260004)"/>
|
141
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,365.9801,53.260004)"/>
|
142
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,371.24037,53.260004)"/>
|
143
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,375.3848,53.260004)"/>
|
144
|
+
<use data-text="A" xlink:href="#font_1_5" transform="matrix(9.9626,0,0,-9.9626,383.9626,53.260004)"/>
|
145
|
+
<path transform="matrix(1,0,0,-1,352.172,49.801004)" d="M99.41809 14.17339H58.27888C57.80922 14.17339 57.4285 13.79266 57.4285 13.323V-13.323C57.4285-13.79266 57.80922-14.17339 58.27888-14.17339H99.41809C99.88776-14.17339 100.2685-13.79266 100.2685-13.323V13.323C100.2685 13.79266 99.88776 14.17339 99.41809 14.17339ZM57.4285-14.17339" fill="#ffbf80"/>
|
146
|
+
<path transform="matrix(1,0,0,-1,352.172,49.801004)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M99.41809 14.17339H58.27888C57.80922 14.17339 57.4285 13.79266 57.4285 13.323V-13.323C57.4285-13.79266 57.80922-14.17339 58.27888-14.17339H99.41809C99.88776-14.17339 100.2685-13.79266 100.2685-13.323V13.323C100.2685 13.79266 99.88776 14.17339 99.41809 14.17339ZM57.4285-14.17339"/>
|
147
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,413.585,53.260004)"/>
|
148
|
+
<use data-text="l" xlink:href="#font_1_19" transform="matrix(9.9626,0,0,-9.9626,420.63853,53.260004)"/>
|
149
|
+
<use data-text="o" xlink:href="#font_1_21" transform="matrix(9.9626,0,0,-9.9626,423.4081,53.260004)"/>
|
150
|
+
<use data-text="c" xlink:href="#font_1_14" transform="matrix(9.9626,0,0,-9.9626,428.66838,53.260004)"/>
|
151
|
+
<use data-text="k" xlink:href="#font_1_18" transform="matrix(9.9626,0,0,-9.9626,432.8128,53.260004)"/>
|
152
|
+
<use data-text="B" xlink:href="#font_1_6" transform="matrix(9.9626,0,0,-9.9626,441.3906,53.260004)"/>
|
153
|
+
<path transform="matrix(1,0,0,-1,352.172,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M43.2551 0H50.34178 52.766"/>
|
154
|
+
<path transform="matrix(1,0,0,-1,404.938,49.801004)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
155
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M337.60517 0H344.69184 347.11607"/>
|
156
|
+
<path transform="matrix(1,0,0,-1,347.31507,49.801004)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
157
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" d="M348.94389 17.2073V31.3807H455.2802V17.2073ZM455.2802 31.3807" fill="#ffbf80"/>
|
158
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#ff8000" d="M348.94389 17.2073V31.3807H455.2802V17.2073ZM455.2802 31.3807"/>
|
159
|
+
<use data-text="S" xlink:href="#font_1_11" transform="matrix(9.9626,0,0,-9.9626,389.811,29.074002)"/>
|
160
|
+
<use data-text="e" xlink:href="#font_1_16" transform="matrix(9.9626,0,0,-9.9626,395.35023,29.074002)"/>
|
161
|
+
<use data-text="r" xlink:href="#font_1_23" transform="matrix(9.9626,0,0,-9.9626,399.77363,29.074002)"/>
|
162
|
+
<use data-text="i" xlink:href="#font_1_17" transform="matrix(9.9626,0,0,-9.9626,403.67897,29.074002)"/>
|
163
|
+
<use data-text="e" xlink:href="#font_1_16" transform="matrix(9.9626,0,0,-9.9626,406.44856,29.074002)"/>
|
164
|
+
<use data-text="s" xlink:href="#font_1_24" transform="matrix(9.9626,0,0,-9.9626,410.87196,29.074002)"/>
|
165
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" d="M491.58876 14.17339H467.46934C466.99967 14.17339 466.61894 13.79266 466.61894 13.323V-13.323C466.61894-13.79266 466.99967-14.17339 467.46934-14.17339H491.58876C492.05845-14.17339 492.43916-13.79266 492.43916-13.323V13.323C492.43916 13.79266 492.05845 14.17339 491.58876 14.17339ZM466.61894-14.17339" fill="#80ff80"/>
|
166
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".3985" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M491.58876 14.17339H467.46934C466.99967 14.17339 466.61894 13.79266 466.61894 13.323V-13.323C466.61894-13.79266 466.99967-14.17339 467.46934-14.17339H491.58876C492.05845-14.17339 492.43916-13.79266 492.43916-13.323V13.323C492.43916 13.79266 492.05845 14.17339 491.58876 14.17339ZM466.61894-14.17339"/>
|
167
|
+
<use data-text="E" xlink:href="#font_1_7" transform="matrix(9.9626,0,0,-9.9626,470.797,53.260004)"/>
|
168
|
+
<use data-text="n" xlink:href="#font_1_20" transform="matrix(9.9626,0,0,-9.9626,477.58155,53.260004)"/>
|
169
|
+
<use data-text="d" xlink:href="#font_1_15" transform="matrix(9.9626,0,0,-9.9626,483.12077,53.260004)"/>
|
170
|
+
<path transform="matrix(1,0,0,-1,.199,49.801004)" stroke-width=".79701" stroke-linecap="butt" stroke-miterlimit="10" stroke-linejoin="miter" fill="none" stroke="#000000" d="M452.44554 0H459.53224 461.95646"/>
|
171
|
+
<path transform="matrix(1,0,0,-1,462.15547,49.801004)" d="M4.66248 0C3.28098 .25902 1.0361 1.0361-.51805 1.94269V-1.94269C1.0361-1.0361 3.28098-.25902 4.66248 0"/>
|
172
|
+
</svg>
|
@@ -0,0 +1,33 @@
|
|
1
|
+
"""Simple RBD example."""
|
2
|
+
|
3
|
+
from os import path, chdir
|
4
|
+
|
5
|
+
from pyrbd import Block, Group, Series, Diagram
|
6
|
+
|
7
|
+
chdir(path.dirname(__file__))
|
8
|
+
|
9
|
+
start_block = Block("Start", "blue!30", parent=None)
|
10
|
+
parallel = 2 * Block("Parallel blocks", "gray", parent=start_block)
|
11
|
+
block_1 = Block(r"Block 1", "yellow!50")
|
12
|
+
block_2 = Block(r"Block 2", "yellow!50")
|
13
|
+
block_3 = Block(r"Block 3", "yellow!50")
|
14
|
+
block_4 = Block(r"Block 4", "yellow!50")
|
15
|
+
group = Group(
|
16
|
+
[block_1 + block_2, block_3 + block_4],
|
17
|
+
parent=parallel,
|
18
|
+
text="Group",
|
19
|
+
color="yellow",
|
20
|
+
)
|
21
|
+
block_a = Block(r"Block A", "orange!50")
|
22
|
+
block_b = Block(r"Block B", "orange!50")
|
23
|
+
series = Series([block_a, block_b], "Series", "orange", parent=group)
|
24
|
+
end_block = Block("End", "green!50", parent=series)
|
25
|
+
|
26
|
+
|
27
|
+
diag = Diagram(
|
28
|
+
"example_RBD",
|
29
|
+
blocks=[start_block, parallel, group, series, end_block],
|
30
|
+
hazard="Hazard",
|
31
|
+
)
|
32
|
+
diag.write()
|
33
|
+
diag.compile(["svg", "png"])
|
Binary file
|