gns3-server 3.0.0b2__py3-none-any.whl → 3.0.0rc1__py3-none-any.whl
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.
Potentially problematic release.
This version of gns3-server might be problematic. Click here for more details.
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/METADATA +32 -32
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/RECORD +79 -62
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/WHEEL +1 -1
- gns3server/api/routes/compute/dynamips_nodes.py +2 -2
- gns3server/api/routes/controller/images.py +4 -2
- gns3server/api/routes/controller/projects.py +2 -0
- gns3server/appliances/arista-veos.gns3a +178 -2
- gns3server/appliances/aruba-arubaoscx.gns3a +39 -0
- gns3server/appliances/asterfusion-vAsterNOS.gns3a +2 -2
- gns3server/appliances/cisco-c8000v.gns3a +14 -1
- gns3server/appliances/cisco-iou-l2.gns3a +2 -2
- gns3server/appliances/cisco-iou-l3.gns3a +2 -2
- gns3server/appliances/debian.gns3a +28 -0
- gns3server/appliances/fortiadc.gns3a +46 -4
- gns3server/appliances/fortianalyzer.gns3a +42 -0
- gns3server/appliances/fortiauthenticator.gns3a +58 -2
- gns3server/appliances/fortigate.gns3a +42 -0
- gns3server/appliances/fortimanager.gns3a +42 -0
- gns3server/appliances/fortiweb.gns3a +56 -0
- gns3server/appliances/juniper-junos-space.gns3a +3 -2
- gns3server/appliances/juniper-vmx-legacy.gns3a +1 -1
- gns3server/appliances/juniper-vmx-vcp.gns3a +1 -1
- gns3server/appliances/juniper-vmx-vfp.gns3a +2 -1
- gns3server/appliances/juniper-vqfx-pfe.gns3a +1 -1
- gns3server/appliances/juniper-vqfx-re.gns3a +2 -1
- gns3server/appliances/juniper-vrr.gns3a +1 -1
- gns3server/appliances/juniper-vsrx.gns3a +2 -1
- gns3server/appliances/openvswitch-management.gns3a +1 -1
- gns3server/appliances/opnsense.gns3a +2 -2
- gns3server/appliances/pan-vm-fw.gns3a +26 -0
- gns3server/appliances/security-onion.gns3a +27 -3
- gns3server/appliances/ubuntu-docker.gns3a +1 -1
- gns3server/compute/docker/__init__.py +9 -3
- gns3server/compute/dynamips/__init__.py +4 -0
- gns3server/compute/iou/iou_vm.py +2 -1
- gns3server/compute/qemu/qemu_vm.py +26 -10
- gns3server/config_samples/gns3_server.conf +13 -3
- gns3server/configs/iou_l2_base_startup-config.txt +1 -1
- gns3server/configs/iou_l3_base_startup-config.txt +1 -1
- gns3server/controller/__init__.py +12 -7
- gns3server/controller/appliance_manager.py +7 -2
- gns3server/controller/export_project.py +9 -9
- gns3server/controller/import_project.py +3 -3
- gns3server/controller/project.py +8 -4
- gns3server/controller/snapshot.py +5 -10
- gns3server/controller/symbol_themes.py +7 -0
- gns3server/controller/topology.py +30 -1
- gns3server/controller/udp_link.py +1 -1
- gns3server/crash_report.py +1 -1
- gns3server/schemas/config.py +3 -0
- gns3server/schemas/controller/templates/__init__.py +0 -1
- gns3server/services/authentication.py +2 -2
- gns3server/services/templates.py +1 -1
- gns3server/static/web-ui/index.html +3 -3
- gns3server/static/web-ui/main.4185a8e61824af0d.js +1 -0
- gns3server/symbols/affinity/circle/blue/nat.svg +60 -0
- gns3server/symbols/affinity/circle/blue/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/gray/nat.svg +60 -0
- gns3server/symbols/affinity/circle/gray/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/green/nat.svg +60 -0
- gns3server/symbols/affinity/circle/green/nat2.svg +55 -0
- gns3server/symbols/affinity/circle/red/nat.svg +60 -0
- gns3server/symbols/affinity/circle/red/nat2.svg +55 -0
- gns3server/symbols/affinity/square/blue/nat.svg +58 -0
- gns3server/symbols/affinity/square/blue/nat2.svg +74 -0
- gns3server/symbols/affinity/square/gray/nat.svg +58 -0
- gns3server/symbols/affinity/square/gray/nat2.svg +74 -0
- gns3server/symbols/affinity/square/green/nat.svg +58 -0
- gns3server/symbols/affinity/square/green/nat2.svg +74 -0
- gns3server/symbols/affinity/square/red/nat.svg +58 -0
- gns3server/symbols/affinity/square/red/nat2.svg +74 -0
- gns3server/symbols/classic/nat.svg +207 -0
- gns3server/utils/__init__.py +20 -0
- gns3server/utils/hostname.py +53 -0
- gns3server/utils/images.py +3 -5
- gns3server/version.py +1 -1
- gns3server/static/web-ui/main.8e8e3d55e78d84fc.js +0 -1
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/LICENSE +0 -0
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/entry_points.txt +0 -0
- {gns3_server-3.0.0b2.dist-info → gns3_server-3.0.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958275"
|
|
27
|
+
inkscape:cy="30"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#2d67b9"
|
|
43
|
+
id="path4" />
|
|
44
|
+
|
|
45
|
+
<path
|
|
46
|
+
d="M 125.73252,227.39216 C 162.6821,181.25328 159.68479,109.80627 119.01184,67.8525 l -0.0404,-0.0415 a 8.4262645,9.5474485 0 0 1 -0.51796,-13.437497 c 3.1284,-3.89368 8.4597,-4.177124 11.89613,-0.632472 47.587,49.085569 51.05025,132.713399 7.72895,186.632269 -3.1284,3.89367 -8.45969,4.17712 -11.89613,0.63246 a 8.4262645,9.5474485 0 0 1 -0.5582,-13.47898 z"
|
|
47
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:1.37905;stroke-linejoin:round;stroke-miterlimit:2"
|
|
48
|
+
id="path8" /><path
|
|
49
|
+
d="M 55.837588,106.71509 H 105.55874 L 95.373313,97.858202 H 111.1846 l 15.82341,13.759468 -15.82341,13.75882 H 95.389703 l 10.317287,-8.97155 H 55.837588 Z"
|
|
50
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
51
|
+
id="path8-3" /><path
|
|
52
|
+
d="M 55.837592,146.71508 H 105.55874 L 95.373313,137.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
53
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
54
|
+
id="path8-3-5" /><path
|
|
55
|
+
d="m 185.83759,146.71508 h 49.72115 l -10.18542,-8.85689 h 15.81128 l 15.82341,13.75947 -15.82341,13.75883 h -15.79489 l 10.31728,-8.97155 h -49.8694 z"
|
|
56
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
57
|
+
id="path8-3-5-2" /><path
|
|
58
|
+
d="M 55.837592,186.71508 H 105.55874 L 95.373313,177.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
59
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
60
|
+
id="path8-3-5-6" /></svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat2.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958275"
|
|
27
|
+
inkscape:cy="30"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#2d67b9"
|
|
43
|
+
id="path4" />
|
|
44
|
+
<path
|
|
45
|
+
d="M93.524 228.429c-.175.003-.349.004-.524.004-21.764 0-39.433-17.669-39.433-39.433 0-19.528 14.227-35.76 32.872-38.888.478-34.678 28.775-62.679 63.561-62.679s63.083 28.001 63.561 62.679c18.645 3.128 32.872 19.36 32.872 38.888 0 21.764-17.669 39.433-39.433 39.433-.273 0-.545-.003-.815-.009v.005H93.524ZM93 215h114c14.037 0 25.433-11.396 25.433-25.433 0-12.32-8.779-22.606-20.417-24.937l-.223-.044-.086-.015-.225-.042-.087-.015-.225-.039-.091-.014-.223-.035-.095-.014-.22-.032-.102-.014-.214-.028-.11-.014-.207-.025-.12-.013-.198-.021-.13-.012-.19-.018-.14-.012-.181-.015-.151-.01-.171-.012-.162-.009-.161-.01-.174-.007-.15-.007-.19-.006-.136-.004-.215-.004-.111-.002-.328-.003-.318.002-.106.002-.212.004-.126.004-.19.006-.134.006-.182.008-.138.007-.176.01-.141.009-.173.013-.142.011-.17.014-.143.012-.169.016-.143.015-.168.018-.143.016-.166.02-.143.018-.166.022-.142.02-.167.024-.14.021-.168.027-.137.022-.178.031-.126.021-.295.055-.144.029-.157.031-.153.032-.146.031-.156.034-.141.032-.159.037-.138.033-.159.039-.135.034-.16.042-.134.035-.16.043-.131.037-.161.045-.13.038-.161.048-.127.039-.162.05-.125.039-.163.053-.122.04-.163.055-.119.041-.166.058-.113.04-.169.062-.087.032-.188.07-.147.057-.075.03A49.912 49.912 0 0 0 200 151c0-27.596-22.404-50-50-50s-50 22.404-50 50c0 5.18.789 10.177 2.253 14.874l-.075-.03-.147-.057-.188-.07-.087-.032-.169-.062-.113-.04-.166-.058-.119-.041-.163-.055-.122-.04-.163-.053-.125-.039-.162-.05-.127-.039-.161-.048-.13-.038-.161-.045-.131-.037-.16-.043-.134-.035-.16-.042-.135-.034-.159-.039-.138-.033-.159-.037-.141-.032-.156-.034-.146-.031-.153-.032-.157-.031-.144-.029-.295-.055-.126-.021-.178-.031-.137-.022-.168-.027-.14-.021-.167-.024-.142-.02-.166-.022-.143-.018-.166-.02-.143-.016-.168-.018-.143-.015-.169-.016-.143-.012-.17-.014-.142-.011-.173-.013-.141-.009-.176-.01-.138-.007-.182-.008-.134-.006-.19-.006-.126-.004-.212-.004-.106-.002-.318-.002-.328.003-.111.002-.215.004-.136.004-.19.006-.15.007-.174.007-.161.01-.162.009-.171.012-.151.01-.181.015-.14.012-.19.018-.13.012-.198.021-.12.013-.207.025-.11.014-.214.028-.102.014-.22.032-.095.014-.223.035-.091.014-.225.039-.087.015-.225.042-.086.015-.223.044c-11.638 2.331-20.417 12.617-20.417 24.937C67.567 203.604 78.963 215 93 215Z"
|
|
46
|
+
style="fill:#2d67b9"
|
|
47
|
+
transform="matrix(1.0372 0 0 .99188 -5.58 -13.784)"
|
|
48
|
+
id="path6" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 114.18486,133.39431 h 50.31577 L 154.19339,122.4189 h 16.00038 l 16.01264,17.05067 -16.01264,17.04991 h -15.98379 l 10.44067,-11.1175 h -50.46579 z"
|
|
51
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
52
|
+
id="path8-7" /><path
|
|
53
|
+
d="m 186.32326,162.03715 h -50.31577 l 10.30725,-10.97542 h -16.00039 l -16.01264,17.05067 16.01264,17.04991 h 15.98379 l -10.44067,-11.1175 h 50.46579 z"
|
|
54
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
55
|
+
id="path10-5" /></svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#4d4d4d;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
|
|
45
|
+
<path
|
|
46
|
+
d="M 125.73252,227.39216 C 162.6821,181.25328 159.68479,109.80627 119.01184,67.8525 l -0.0404,-0.0415 a 8.4262645,9.5474485 0 0 1 -0.51796,-13.437497 c 3.1284,-3.89368 8.4597,-4.177124 11.89613,-0.632472 47.587,49.085569 51.05025,132.713399 7.72895,186.632269 -3.1284,3.89367 -8.45969,4.17712 -11.89613,0.63246 a 8.4262645,9.5474485 0 0 1 -0.5582,-13.47898 z"
|
|
47
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:1.37905;stroke-linejoin:round;stroke-miterlimit:2;fill-opacity:1"
|
|
48
|
+
id="path8" /><path
|
|
49
|
+
d="M 55.837588,106.71509 H 105.55874 L 95.373313,97.858202 H 111.1846 l 15.82341,13.759468 -15.82341,13.75882 H 95.389703 l 10.317287,-8.97155 H 55.837588 Z"
|
|
50
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
51
|
+
id="path8-3" /><path
|
|
52
|
+
d="M 55.837592,146.71508 H 105.55874 L 95.373313,137.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
53
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
54
|
+
id="path8-3-5" /><path
|
|
55
|
+
d="m 185.83759,146.71508 h 49.72115 l -10.18542,-8.85689 h 15.81128 l 15.82341,13.75947 -15.82341,13.75883 h -15.79489 l 10.31728,-8.97155 h -49.8694 z"
|
|
56
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
57
|
+
id="path8-3-5-2" /><path
|
|
58
|
+
d="M 55.837592,186.71508 H 105.55874 L 95.373313,177.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
59
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
60
|
+
id="path8-3-5-6" /></svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat2.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#4d4d4d;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
<path
|
|
45
|
+
d="M93.524 228.429c-.175.003-.349.004-.524.004-21.764 0-39.433-17.669-39.433-39.433 0-19.528 14.227-35.76 32.872-38.888.478-34.678 28.775-62.679 63.561-62.679s63.083 28.001 63.561 62.679c18.645 3.128 32.872 19.36 32.872 38.888 0 21.764-17.669 39.433-39.433 39.433-.273 0-.545-.003-.815-.009v.005H93.524ZM93 215h114c14.037 0 25.433-11.396 25.433-25.433 0-12.32-8.779-22.606-20.417-24.937l-.223-.044-.086-.015-.225-.042-.087-.015-.225-.039-.091-.014-.223-.035-.095-.014-.22-.032-.102-.014-.214-.028-.11-.014-.207-.025-.12-.013-.198-.021-.13-.012-.19-.018-.14-.012-.181-.015-.151-.01-.171-.012-.162-.009-.161-.01-.174-.007-.15-.007-.19-.006-.136-.004-.215-.004-.111-.002-.328-.003-.318.002-.106.002-.212.004-.126.004-.19.006-.134.006-.182.008-.138.007-.176.01-.141.009-.173.013-.142.011-.17.014-.143.012-.169.016-.143.015-.168.018-.143.016-.166.02-.143.018-.166.022-.142.02-.167.024-.14.021-.168.027-.137.022-.178.031-.126.021-.295.055-.144.029-.157.031-.153.032-.146.031-.156.034-.141.032-.159.037-.138.033-.159.039-.135.034-.16.042-.134.035-.16.043-.131.037-.161.045-.13.038-.161.048-.127.039-.162.05-.125.039-.163.053-.122.04-.163.055-.119.041-.166.058-.113.04-.169.062-.087.032-.188.07-.147.057-.075.03A49.912 49.912 0 0 0 200 151c0-27.596-22.404-50-50-50s-50 22.404-50 50c0 5.18.789 10.177 2.253 14.874l-.075-.03-.147-.057-.188-.07-.087-.032-.169-.062-.113-.04-.166-.058-.119-.041-.163-.055-.122-.04-.163-.053-.125-.039-.162-.05-.127-.039-.161-.048-.13-.038-.161-.045-.131-.037-.16-.043-.134-.035-.16-.042-.135-.034-.159-.039-.138-.033-.159-.037-.141-.032-.156-.034-.146-.031-.153-.032-.157-.031-.144-.029-.295-.055-.126-.021-.178-.031-.137-.022-.168-.027-.14-.021-.167-.024-.142-.02-.166-.022-.143-.018-.166-.02-.143-.016-.168-.018-.143-.015-.169-.016-.143-.012-.17-.014-.142-.011-.173-.013-.141-.009-.176-.01-.138-.007-.182-.008-.134-.006-.19-.006-.126-.004-.212-.004-.106-.002-.318-.002-.328.003-.111.002-.215.004-.136.004-.19.006-.15.007-.174.007-.161.01-.162.009-.171.012-.151.01-.181.015-.14.012-.19.018-.13.012-.198.021-.12.013-.207.025-.11.014-.214.028-.102.014-.22.032-.095.014-.223.035-.091.014-.225.039-.087.015-.225.042-.086.015-.223.044c-11.638 2.331-20.417 12.617-20.417 24.937C67.567 203.604 78.963 215 93 215Z"
|
|
46
|
+
style="fill:#4d4d4d;fill-opacity:1"
|
|
47
|
+
transform="matrix(1.0372 0 0 .99188 -5.58 -13.784)"
|
|
48
|
+
id="path6" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 114.18486,133.39431 h 50.31577 L 154.19339,122.4189 h 16.00038 l 16.01264,17.05067 -16.01264,17.04991 h -15.98379 l 10.44067,-11.1175 h -50.46579 z"
|
|
51
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
52
|
+
id="path8-7" /><path
|
|
53
|
+
d="m 186.32326,162.03715 h -50.31577 l 10.30725,-10.97542 h -16.00039 l -16.01264,17.05067 16.01264,17.04991 h 15.98379 l -10.44067,-11.1175 h 50.46579 z"
|
|
54
|
+
style="clip-rule:evenodd;fill:#4d4d4d;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
55
|
+
id="path10-5" /></svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#109e00;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
|
|
45
|
+
<path
|
|
46
|
+
d="M 125.73252,227.39216 C 162.6821,181.25328 159.68479,109.80627 119.01184,67.8525 l -0.0404,-0.0415 a 8.4262645,9.5474485 0 0 1 -0.51796,-13.437497 c 3.1284,-3.89368 8.4597,-4.177124 11.89613,-0.632472 47.587,49.085569 51.05025,132.713399 7.72895,186.632269 -3.1284,3.89367 -8.45969,4.17712 -11.89613,0.63246 a 8.4262645,9.5474485 0 0 1 -0.5582,-13.47898 z"
|
|
47
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:1.37905;stroke-linejoin:round;stroke-miterlimit:2;fill-opacity:1"
|
|
48
|
+
id="path8" /><path
|
|
49
|
+
d="M 55.837588,106.71509 H 105.55874 L 95.373313,97.858202 H 111.1846 l 15.82341,13.759468 -15.82341,13.75882 H 95.389703 l 10.317287,-8.97155 H 55.837588 Z"
|
|
50
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
51
|
+
id="path8-3" /><path
|
|
52
|
+
d="M 55.837592,146.71508 H 105.55874 L 95.373313,137.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
53
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
54
|
+
id="path8-3-5" /><path
|
|
55
|
+
d="m 185.83759,146.71508 h 49.72115 l -10.18542,-8.85689 h 15.81128 l 15.82341,13.75947 -15.82341,13.75883 h -15.79489 l 10.31728,-8.97155 h -49.8694 z"
|
|
56
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
57
|
+
id="path8-3-5-2" /><path
|
|
58
|
+
d="M 55.837592,186.71508 H 105.55874 L 95.373313,177.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
59
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
60
|
+
id="path8-3-5-6" /></svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat2.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#109e00;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
<path
|
|
45
|
+
d="M93.524 228.429c-.175.003-.349.004-.524.004-21.764 0-39.433-17.669-39.433-39.433 0-19.528 14.227-35.76 32.872-38.888.478-34.678 28.775-62.679 63.561-62.679s63.083 28.001 63.561 62.679c18.645 3.128 32.872 19.36 32.872 38.888 0 21.764-17.669 39.433-39.433 39.433-.273 0-.545-.003-.815-.009v.005H93.524ZM93 215h114c14.037 0 25.433-11.396 25.433-25.433 0-12.32-8.779-22.606-20.417-24.937l-.223-.044-.086-.015-.225-.042-.087-.015-.225-.039-.091-.014-.223-.035-.095-.014-.22-.032-.102-.014-.214-.028-.11-.014-.207-.025-.12-.013-.198-.021-.13-.012-.19-.018-.14-.012-.181-.015-.151-.01-.171-.012-.162-.009-.161-.01-.174-.007-.15-.007-.19-.006-.136-.004-.215-.004-.111-.002-.328-.003-.318.002-.106.002-.212.004-.126.004-.19.006-.134.006-.182.008-.138.007-.176.01-.141.009-.173.013-.142.011-.17.014-.143.012-.169.016-.143.015-.168.018-.143.016-.166.02-.143.018-.166.022-.142.02-.167.024-.14.021-.168.027-.137.022-.178.031-.126.021-.295.055-.144.029-.157.031-.153.032-.146.031-.156.034-.141.032-.159.037-.138.033-.159.039-.135.034-.16.042-.134.035-.16.043-.131.037-.161.045-.13.038-.161.048-.127.039-.162.05-.125.039-.163.053-.122.04-.163.055-.119.041-.166.058-.113.04-.169.062-.087.032-.188.07-.147.057-.075.03A49.912 49.912 0 0 0 200 151c0-27.596-22.404-50-50-50s-50 22.404-50 50c0 5.18.789 10.177 2.253 14.874l-.075-.03-.147-.057-.188-.07-.087-.032-.169-.062-.113-.04-.166-.058-.119-.041-.163-.055-.122-.04-.163-.053-.125-.039-.162-.05-.127-.039-.161-.048-.13-.038-.161-.045-.131-.037-.16-.043-.134-.035-.16-.042-.135-.034-.159-.039-.138-.033-.159-.037-.141-.032-.156-.034-.146-.031-.153-.032-.157-.031-.144-.029-.295-.055-.126-.021-.178-.031-.137-.022-.168-.027-.14-.021-.167-.024-.142-.02-.166-.022-.143-.018-.166-.02-.143-.016-.168-.018-.143-.015-.169-.016-.143-.012-.17-.014-.142-.011-.173-.013-.141-.009-.176-.01-.138-.007-.182-.008-.134-.006-.19-.006-.126-.004-.212-.004-.106-.002-.318-.002-.328.003-.111.002-.215.004-.136.004-.19.006-.15.007-.174.007-.161.01-.162.009-.171.012-.151.01-.181.015-.14.012-.19.018-.13.012-.198.021-.12.013-.207.025-.11.014-.214.028-.102.014-.22.032-.095.014-.223.035-.091.014-.225.039-.087.015-.225.042-.086.015-.223.044c-11.638 2.331-20.417 12.617-20.417 24.937C67.567 203.604 78.963 215 93 215Z"
|
|
46
|
+
style="fill:#109e00;fill-opacity:1"
|
|
47
|
+
transform="matrix(1.0372 0 0 .99188 -5.58 -13.784)"
|
|
48
|
+
id="path6" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 114.18486,133.39431 h 50.31577 L 154.19339,122.4189 h 16.00038 l 16.01264,17.05067 -16.01264,17.04991 h -15.98379 l 10.44067,-11.1175 h -50.46579 z"
|
|
51
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
52
|
+
id="path8-7" /><path
|
|
53
|
+
d="m 186.32326,162.03715 h -50.31577 l 10.30725,-10.97542 h -16.00039 l -16.01264,17.05067 16.01264,17.04991 h 15.98379 l -10.44067,-11.1175 h 50.46579 z"
|
|
54
|
+
style="clip-rule:evenodd;fill:#109e00;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
55
|
+
id="path10-5" /></svg>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#e3292e;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
|
|
45
|
+
<path
|
|
46
|
+
d="M 125.73252,227.39216 C 162.6821,181.25328 159.68479,109.80627 119.01184,67.8525 l -0.0404,-0.0415 a 8.4262645,9.5474485 0 0 1 -0.51796,-13.437497 c 3.1284,-3.89368 8.4597,-4.177124 11.89613,-0.632472 47.587,49.085569 51.05025,132.713399 7.72895,186.632269 -3.1284,3.89367 -8.45969,4.17712 -11.89613,0.63246 a 8.4262645,9.5474485 0 0 1 -0.5582,-13.47898 z"
|
|
47
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:1.37905;stroke-linejoin:round;stroke-miterlimit:2;fill-opacity:1"
|
|
48
|
+
id="path8" /><path
|
|
49
|
+
d="M 55.837588,106.71509 H 105.55874 L 95.373313,97.858202 H 111.1846 l 15.82341,13.759468 -15.82341,13.75882 H 95.389703 l 10.317287,-8.97155 H 55.837588 Z"
|
|
50
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
51
|
+
id="path8-3" /><path
|
|
52
|
+
d="M 55.837592,146.71508 H 105.55874 L 95.373313,137.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
53
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
54
|
+
id="path8-3-5" /><path
|
|
55
|
+
d="m 185.83759,146.71508 h 49.72115 l -10.18542,-8.85689 h 15.81128 l 15.82341,13.75947 -15.82341,13.75883 h -15.79489 l 10.31728,-8.97155 h -49.8694 z"
|
|
56
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
57
|
+
id="path8-3-5-2" /><path
|
|
58
|
+
d="M 55.837592,186.71508 H 105.55874 L 95.373313,177.85819 H 111.1846 l 15.82341,13.75947 -15.82341,13.75883 H 95.389703 l 10.317287,-8.97155 H 55.837592 Z"
|
|
59
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
60
|
+
id="path8-3-5-6" /></svg>
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg8"
|
|
10
|
+
sodipodi:docname="nat2.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs12" /><sodipodi:namedview
|
|
17
|
+
id="namedview10"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958276"
|
|
27
|
+
inkscape:cy="30.000001"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg8" />
|
|
34
|
+
<circle
|
|
35
|
+
cx="150"
|
|
36
|
+
cy="150"
|
|
37
|
+
r="150"
|
|
38
|
+
style="fill:#fffefe"
|
|
39
|
+
id="circle2" />
|
|
40
|
+
<path
|
|
41
|
+
d="M150 0c82.787 0 150 67.213 150 150s-67.213 150-150 150S0 232.787 0 150 67.213 0 150 0Zm0 16c73.957 0 134 60.043 134 134s-60.043 134-134 134S16 223.957 16 150 76.043 16 150 16Z"
|
|
42
|
+
style="fill:#e3292e;fill-opacity:1"
|
|
43
|
+
id="path4" />
|
|
44
|
+
<path
|
|
45
|
+
d="M93.524 228.429c-.175.003-.349.004-.524.004-21.764 0-39.433-17.669-39.433-39.433 0-19.528 14.227-35.76 32.872-38.888.478-34.678 28.775-62.679 63.561-62.679s63.083 28.001 63.561 62.679c18.645 3.128 32.872 19.36 32.872 38.888 0 21.764-17.669 39.433-39.433 39.433-.273 0-.545-.003-.815-.009v.005H93.524ZM93 215h114c14.037 0 25.433-11.396 25.433-25.433 0-12.32-8.779-22.606-20.417-24.937l-.223-.044-.086-.015-.225-.042-.087-.015-.225-.039-.091-.014-.223-.035-.095-.014-.22-.032-.102-.014-.214-.028-.11-.014-.207-.025-.12-.013-.198-.021-.13-.012-.19-.018-.14-.012-.181-.015-.151-.01-.171-.012-.162-.009-.161-.01-.174-.007-.15-.007-.19-.006-.136-.004-.215-.004-.111-.002-.328-.003-.318.002-.106.002-.212.004-.126.004-.19.006-.134.006-.182.008-.138.007-.176.01-.141.009-.173.013-.142.011-.17.014-.143.012-.169.016-.143.015-.168.018-.143.016-.166.02-.143.018-.166.022-.142.02-.167.024-.14.021-.168.027-.137.022-.178.031-.126.021-.295.055-.144.029-.157.031-.153.032-.146.031-.156.034-.141.032-.159.037-.138.033-.159.039-.135.034-.16.042-.134.035-.16.043-.131.037-.161.045-.13.038-.161.048-.127.039-.162.05-.125.039-.163.053-.122.04-.163.055-.119.041-.166.058-.113.04-.169.062-.087.032-.188.07-.147.057-.075.03A49.912 49.912 0 0 0 200 151c0-27.596-22.404-50-50-50s-50 22.404-50 50c0 5.18.789 10.177 2.253 14.874l-.075-.03-.147-.057-.188-.07-.087-.032-.169-.062-.113-.04-.166-.058-.119-.041-.163-.055-.122-.04-.163-.053-.125-.039-.162-.05-.127-.039-.161-.048-.13-.038-.161-.045-.131-.037-.16-.043-.134-.035-.16-.042-.135-.034-.159-.039-.138-.033-.159-.037-.141-.032-.156-.034-.146-.031-.153-.032-.157-.031-.144-.029-.295-.055-.126-.021-.178-.031-.137-.022-.168-.027-.14-.021-.167-.024-.142-.02-.166-.022-.143-.018-.166-.02-.143-.016-.168-.018-.143-.015-.169-.016-.143-.012-.17-.014-.142-.011-.173-.013-.141-.009-.176-.01-.138-.007-.182-.008-.134-.006-.19-.006-.126-.004-.212-.004-.106-.002-.318-.002-.328.003-.111.002-.215.004-.136.004-.19.006-.15.007-.174.007-.161.01-.162.009-.171.012-.151.01-.181.015-.14.012-.19.018-.13.012-.198.021-.12.013-.207.025-.11.014-.214.028-.102.014-.22.032-.095.014-.223.035-.091.014-.225.039-.087.015-.225.042-.086.015-.223.044c-11.638 2.331-20.417 12.617-20.417 24.937C67.567 203.604 78.963 215 93 215Z"
|
|
46
|
+
style="fill:#e3292e;fill-opacity:1"
|
|
47
|
+
transform="matrix(1.0372 0 0 .99188 -5.58 -13.784)"
|
|
48
|
+
id="path6" />
|
|
49
|
+
<path
|
|
50
|
+
d="m 114.18486,133.39431 h 50.31577 L 154.19339,122.4189 h 16.00038 l 16.01264,17.05067 -16.01264,17.04991 h -15.98379 l 10.44067,-11.1175 h -50.46579 z"
|
|
51
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
52
|
+
id="path8-7" /><path
|
|
53
|
+
d="m 186.32326,162.03715 h -50.31577 l 10.30725,-10.97542 h -16.00039 l -16.01264,17.05067 16.01264,17.04991 h 15.98379 l -10.44067,-11.1175 h 50.46579 z"
|
|
54
|
+
style="clip-rule:evenodd;fill:#e3292e;fill-rule:evenodd;stroke-width:0.744302;stroke-linejoin:round;stroke-miterlimit:1.41421;fill-opacity:1"
|
|
55
|
+
id="path10-5" /></svg>
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
width="60"
|
|
4
|
+
height="60"
|
|
5
|
+
viewBox="0 0 300 300"
|
|
6
|
+
xml:space="preserve"
|
|
7
|
+
style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
8
|
+
version="1.1"
|
|
9
|
+
id="svg18"
|
|
10
|
+
sodipodi:docname="nat.svg"
|
|
11
|
+
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
|
16
|
+
id="defs22" /><sodipodi:namedview
|
|
17
|
+
id="namedview20"
|
|
18
|
+
pagecolor="#ffffff"
|
|
19
|
+
bordercolor="#666666"
|
|
20
|
+
borderopacity="1.0"
|
|
21
|
+
inkscape:pageshadow="2"
|
|
22
|
+
inkscape:pageopacity="0.0"
|
|
23
|
+
inkscape:pagecheckerboard="0"
|
|
24
|
+
showgrid="false"
|
|
25
|
+
inkscape:zoom="11.983333"
|
|
26
|
+
inkscape:cx="29.958275"
|
|
27
|
+
inkscape:cy="30"
|
|
28
|
+
inkscape:window-width="1658"
|
|
29
|
+
inkscape:window-height="1016"
|
|
30
|
+
inkscape:window-x="70"
|
|
31
|
+
inkscape:window-y="27"
|
|
32
|
+
inkscape:window-maximized="1"
|
|
33
|
+
inkscape:current-layer="svg18" />
|
|
34
|
+
<path
|
|
35
|
+
d="M300 30.271C300 13.564 286.436 0 269.729 0H30.271C13.564 0 0 13.564 0 30.271v239.458C0 286.436 13.564 300 30.271 300h239.458C286.436 300 300 286.436 300 269.729V30.271Z"
|
|
36
|
+
style="fill:#fffefe"
|
|
37
|
+
id="path2" /><path
|
|
38
|
+
d="m 126.0992,224.81393 c 36.94958,-46.13888 33.95227,-117.5859 -6.72068,-159.539672 l -0.0404,-0.0415 a 8.4262645,9.5474485 0 0 1 -0.51796,-13.437497 c 3.1284,-3.89368 8.4597,-4.177124 11.89613,-0.632472 47.587,49.085571 51.05025,132.713411 7.72895,186.632281 -3.1284,3.89367 -8.45969,4.17712 -11.89613,0.63246 a 8.4262645,9.5474485 0 0 1 -0.5582,-13.47898 z"
|
|
39
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:1.37905;stroke-linejoin:round;stroke-miterlimit:2"
|
|
40
|
+
id="path8" />
|
|
41
|
+
<path
|
|
42
|
+
d="m269.925.001.195.001.39.008.195.005.194.007.194.008.193.009.386.022.193.013.192.014.192.016.191.016.192.018.191.018.19.02.38.044.19.023.189.025.188.026.189.027.188.028.187.029.188.031.186.031.187.033.186.034.186.035.185.036.185.037.368.078.184.041.183.042.183.043.182.043.364.092.181.047.18.048.181.05.179.05.18.052.179.052.178.054.178.055.177.056.177.057.177.058.176.059.175.06.175.061.175.062.174.063.174.064.173.066.172.066.172.067.172.068.171.07.17.07.17.071.17.073.169.073.168.074.168.076.167.076.167.077.332.158.165.08.165.081.164.083.163.083.163.084.162.085.162.086.161.087.161.088.16.088.159.09.159.091.316.184.157.094.156.094.156.095.155.096.308.196.306.198.152.101.302.204.15.104.149.104.149.105.148.106.294.214.146.109.145.109.145.111.144.111.143.112.143.113.142.113.282.23.139.116.14.117.276.236.137.12.136.12.135.121.135.122.134.122.134.124.132.124.132.125.131.125.26.254.129.128.128.129.254.26.125.131.125.132.124.132.124.134.122.134.122.135.121.135.12.136.12.137.236.276.117.14.116.139.23.282.113.142.113.143.112.143.111.144.111.145.109.145.109.146.214.294.106.148.105.149.104.149.104.15.204.302.101.152.198.306.196.308.096.155.095.156.094.156.094.157.184.316.091.159.09.159.088.16.088.161.087.161.086.162.085.162.084.163.083.163.083.164.081.165.08.165.158.332.077.167.076.167.076.168.074.168.073.169.073.17.071.17.07.17.07.171.068.172.067.172.066.172.066.173.064.174.063.174.062.175.061.175.06.175.059.176.058.177.057.177.056.177.055.178.054.178.052.179.052.18.05.179.05.181.048.18.047.181.092.364.043.182.043.183.042.183.041.184.078.368.037.185.036.185.035.186.034.186.033.187.031.186.031.188.029.187.028.188.027.189.026.188.025.189.023.19.044.38.02.19.018.191.018.192.016.191.016.192.014.192.013.193.022.386.009.193.008.194.007.194.005.195.008.39.002.391v239.458l-.001.196-.001.195-.004.195-.004.195-.005.195-.007.194-.008.194-.009.193-.011.193-.011.193-.013.193-.014.192-.016.192-.016.191-.018.192-.018.191-.02.19-.022.19-.022.19-.023.19-.025.189-.026.188-.027.189-.028.188-.029.187-.031.188-.031.186-.033.187-.034.186-.035.186-.036.185-.037.185-.039.184-.039.184-.041.184-.042.183-.043.183-.043.182-.046.182-.046.182-.047.181-.048.18-.05.181-.05.179-.052.18-.052.179-.054.178-.055.178-.056.177-.057.177-.058.177-.059.176-.06.175-.061.175-.062.175-.063.174-.064.174-.066.173-.066.172-.067.172-.068.172-.07.171-.07.17-.071.17-.073.17-.073.169-.074.168-.076.168-.076.167-.077.167-.079.166-.079.166-.08.165-.081.165-.083.164-.083.163-.084.163-.085.162-.086.162-.087.161-.088.161-.088.16-.09.159-.091.159-.092.158-.092.158-.094.157-.094.156-.095.156-.096.155-.098.154-.098.154-.099.153-.099.153-.101.152-.102.151-.102.151-.104.15-.104.149-.105.149-.106.148-.107.147-.107.147-.109.146-.109.145-.111.145-.111.144-.112.143-.113.143-.113.142-.115.141-.115.141-.116.139-.117.14-.118.138-.118.138-.12.137-.12.136-.121.135-.122.135-.122.134-.124.134-.124.132-.125.132-.125.131-.127.13-.127.13-.128.129-.129.128-.13.127-.13.127-.131.125-.132.125-.132.124-.134.124-.134.122-.135.122-.135.121-.136.12-.137.12-.138.118-.138.118-.14.117-.139.116-.141.115-.141.115-.142.113-.143.113-.143.112-.144.111-.145.111-.145.109-.146.109-.147.107-.147.107-.148.106-.149.105-.149.104-.15.104-.151.102-.151.102-.152.101-.153.099-.153.099-.154.098-.154.098-.155.096-.156.095-.156.094-.157.094-.158.092-.158.092-.159.091-.159.09-.16.088-.161.088-.161.087-.162.086-.162.085-.163.084-.163.083-.164.083-.165.081-.165.08-.166.079-.166.079-.167.077-.167.076-.168.076-.168.074-.169.073-.17.073-.17.071-.17.07-.171.07-.172.068-.172.067-.172.066-.173.066-.174.064-.174.063-.175.062-.175.061-.175.06-.176.059-.177.058-.177.057-.177.056-.178.055-.178.054-.179.052-.18.052-.179.05-.181.05-.18.048-.181.047-.182.046-.182.046-.182.043-.183.043-.183.042-.184.041-.184.039-.184.039-.185.037-.185.036-.186.035-.186.034-.187.033-.186.031-.188.031-.187.029-.188.028-.189.027-.188.026-.189.025-.19.023-.19.022-.19.022-.19.02-.191.018-.192.018-.191.016-.192.016-.192.014-.193.013-.193.011-.193.011-.193.009-.194.008-.194.007-.195.005-.195.004-.195.004-.195.001-.196.001H30.271l-.196-.001-.195-.001-.195-.004-.195-.004-.195-.005-.194-.007-.194-.008-.193-.009-.193-.011-.193-.011-.193-.013-.192-.014-.192-.016-.191-.016-.192-.018-.191-.018-.19-.02-.19-.022-.19-.022-.19-.023-.189-.025-.188-.026-.189-.027-.188-.028-.187-.029-.188-.031-.186-.031-.187-.033-.186-.034-.186-.035-.185-.036-.185-.037-.184-.039-.184-.039-.184-.041-.183-.042-.183-.043-.182-.043-.182-.046-.182-.046-.181-.047-.18-.048-.181-.05-.179-.05-.18-.052-.179-.052-.178-.054-.178-.055-.177-.056-.177-.057-.177-.058-.176-.059-.175-.06-.175-.061-.175-.062-.174-.063-.174-.064-.173-.066-.172-.066-.172-.067-.172-.068-.171-.07-.17-.07-.17-.071-.17-.073-.169-.073-.168-.074-.168-.076-.167-.076-.167-.077-.166-.079-.166-.079-.165-.08-.165-.081-.164-.083-.163-.083-.163-.084-.162-.085-.162-.086-.161-.087-.161-.088-.16-.088-.159-.09-.159-.091-.158-.092-.158-.092-.157-.094-.156-.094-.156-.095-.155-.096-.154-.098-.154-.098-.153-.099-.153-.099-.152-.101-.151-.102-.151-.102-.15-.104-.149-.104-.149-.105-.148-.106-.147-.107-.147-.107-.146-.109-.145-.109-.145-.111-.144-.111-.143-.112-.143-.113-.142-.113-.141-.115-.141-.115-.139-.116-.14-.117-.138-.118-.138-.118-.137-.12-.136-.12-.135-.121-.135-.122-.134-.122-.134-.124-.132-.124-.132-.125-.131-.125-.13-.127-.13-.127-.129-.128-.128-.129-.127-.13-.127-.13-.125-.131-.125-.132-.124-.132-.124-.134-.122-.134-.122-.135-.121-.135-.12-.136-.12-.137-.118-.138-.118-.138-.117-.14-.116-.139-.115-.141-.115-.141-.113-.142-.113-.143-.112-.143-.111-.144-.111-.145-.109-.145-.109-.146-.107-.147-.107-.147-.106-.148-.105-.149-.104-.149-.104-.15-.102-.151-.102-.151-.101-.152-.099-.153-.099-.153-.098-.154-.098-.154-.096-.155-.095-.156-.094-.156-.094-.157-.092-.158-.092-.158-.091-.159-.09-.159-.088-.16-.088-.161-.087-.161-.086-.162-.085-.162-.084-.163-.083-.163-.083-.164-.081-.165-.08-.165-.079-.166-.079-.166-.077-.167-.076-.167-.076-.168-.074-.168-.073-.169-.073-.17-.071-.17-.07-.17-.07-.171-.068-.172-.067-.172-.066-.172-.066-.173-.064-.174-.063-.174-.062-.175-.061-.175-.06-.175-.059-.176-.058-.177-.057-.177-.056-.177-.055-.178-.054-.178-.052-.179-.052-.18-.05-.179-.05-.181-.048-.18-.047-.181-.046-.182-.046-.182-.043-.182-.043-.183-.042-.183-.041-.184-.039-.184-.039-.184-.037-.185-.036-.185-.035-.186-.034-.186-.033-.187-.031-.186-.031-.188-.029-.187-.028-.188-.027-.189-.026-.188-.025-.189-.023-.19-.022-.19-.022-.19-.02-.19-.018-.191-.018-.192-.016-.191-.016-.192-.014-.192-.013-.193-.011-.193-.011-.193-.009-.193-.008-.194-.007-.194-.005-.195-.004-.195-.004-.195-.001-.195-.001-.196V30.271l.001-.196.001-.195.004-.195.004-.195.005-.195.007-.194.008-.194.009-.193.011-.193.011-.193.013-.193.014-.192.016-.192.016-.191.018-.192.018-.191.02-.19.022-.19.022-.19.023-.19.025-.189.026-.188.027-.189.028-.188.029-.187.031-.188.031-.186.033-.187.034-.186.035-.186.036-.185.037-.185.039-.184.039-.184.041-.184.042-.183.043-.183.043-.182.046-.182.046-.182.047-.181.048-.18.05-.181.05-.179.052-.18.052-.179.054-.178.055-.178.056-.177.057-.177.058-.177.059-.176.06-.175.061-.175.062-.175.063-.174.064-.174.066-.173.066-.172.067-.172.068-.172.07-.171.07-.17.071-.17.073-.17.073-.169.074-.168.076-.168.076-.167.077-.167.079-.166.079-.166.08-.165.081-.165.083-.164.083-.163.084-.163.085-.162.086-.162.087-.161.088-.161.088-.16.09-.159.091-.159.092-.158.092-.158.094-.157.094-.156.095-.156.096-.155.098-.154.098-.154.099-.153.099-.153.101-.152.102-.151.102-.151.104-.15.104-.149.105-.149.106-.148.107-.147.107-.147.109-.146.109-.145.111-.145.111-.144.112-.143.113-.143.113-.142.115-.141.115-.141.116-.139.117-.14.118-.138.118-.138.12-.137.12-.136.121-.135.122-.135.122-.134.124-.134.124-.132.125-.132.125-.131.127-.13.127-.13.128-.129.129-.128.13-.127.13-.127.131-.125.132-.125.132-.124.134-.124.134-.122.135-.122.135-.121.136-.12.137-.12.138-.118.138-.118.14-.117.139-.116.141-.115.141-.115.142-.113.143-.113.143-.112.144-.111.145-.111.145-.109.146-.109.147-.107.147-.107.148-.106.149-.105.149-.104.15-.104.151-.102.151-.102.152-.101.153-.099.153-.099.154-.098.154-.098.155-.096.156-.095.156-.094.157-.094.158-.092.158-.092.159-.091.159-.09.16-.088.161-.088.161-.087.162-.086.162-.085.163-.084.163-.083.164-.083.165-.081.165-.08.166-.079.166-.079.167-.077.167-.076.168-.076.168-.074.169-.073.17-.073.17-.071.17-.07.171-.07.172-.068.172-.067.172-.066.173-.066.174-.064.174-.063.175-.062.175-.061.175-.06.176-.059.177-.058.177-.057.177-.056.178-.055.178-.054.179-.052.18-.052.179-.05.181-.05.18-.048.181-.047.182-.046.182-.046.182-.043.183-.043.183-.042.184-.041.184-.039.184-.039.185-.037.185-.036.186-.035.186-.034.187-.033.186-.031.188-.031.187-.029.188-.028.189-.027.188-.026.189-.025.19-.023.19-.022.19-.022.19-.02.191-.018.192-.018.191-.016.192-.016.192-.014.193-.013.193-.011.193-.011.193-.009.194-.008.194-.007.195-.005.195-.004.195-.004.195-.001.196-.001h239.458l.196.001ZM30.296 16h-.12l-.093.001-.094.002-.093.002-.093.002-.093.004-.093.004-.092.004-.092.005-.092.005-.091.007-.091.006-.091.007-.091.008-.091.009-.09.008-.09.01-.09.01-.089.01-.089.011-.09.012-.088.012-.089.013-.088.013-.088.014-.088.014-.088.015-.087.015-.088.016-.087.017-.086.017-.087.017-.086.018-.086.018-.086.019-.086.02-.085.02-.085.021-.085.021-.085.021-.085.022-.084.023-.084.023-.084.023-.084.025-.084.024-.083.025-.083.026-.083.026-.082.026-.083.028-.082.027-.082.028-.082.029-.081.029-.082.029-.081.03-.081.031-.081.031-.08.031-.08.032-.08.033-.08.033-.08.033-.079.034-.079.034-.079.035-.079.035-.078.036-.078.036-.078.037-.078.037-.078.038-.077.038-.077.039-.077.039-.076.039-.077.04-.076.041-.076.041-.075.041-.075.042-.075.042-.075.043-.075.043-.074.044-.074.044-.074.044-.073.045-.073.046-.073.045-.073.047-.072.046-.073.048-.071.047-.072.048-.071.049-.071.049-.071.049-.07.05-.07.05-.07.051-.07.051-.069.051-.069.052-.068.052-.069.053-.068.053-.067.053-.068.054-.067.055-.066.054-.067.056-.066.055-.066.056-.065.056-.065.057-.065.057-.064.058-.064.057-.064.059-.063.058-.063.059-.063.06-.062.06-.062.06-.062.06-.061.061-.061.061-.06.062-.06.062-.06.062-.06.063-.059.063-.058.063-.059.064-.057.064-.058.064-.057.065-.057.065-.056.065-.056.066-.055.066-.056.067-.054.066-.055.067-.054.068-.053.067-.053.068-.053.069-.052.068-.052.069-.051.069-.051.07-.051.07-.05.07-.05.07-.049.071-.049.071-.049.071-.048.072-.047.071-.048.073-.046.072-.047.073-.045.073-.046.073-.045.073-.044.074-.044.074-.044.074-.043.075-.043.075-.042.075-.042.075-.041.075-.041.076-.041.076-.04.077-.039.076-.039.077-.039.077-.038.077-.038.078-.037.078-.037.078-.036.078-.036.078-.035.079-.035.079-.034.079-.034.079-.033.08-.033.08-.033.08-.032.08-.031.08-.031.081-.031.081-.03.081-.029.082-.029.081-.029.082-.028.082-.027.082-.028.083-.026.082-.026.083-.026.083-.025.083-.024.084-.025.084-.023.084-.023.084-.023.084-.022.085-.021.085-.021.085-.021.085-.02.085-.02.086-.019.086-.018.086-.018.086-.017.087-.017.086-.017.087-.016.088-.015.087-.015.088-.014.088-.014.088-.013.088-.013.089-.012.088-.012.09-.011.089-.01.089-.01.09-.01.09-.008.09-.009.091-.008.091-.007.091-.006.091-.007.091-.005.092-.005.092-.004.092-.004.093-.004.093-.002.093-.002.093-.002.094-.001.093v239.648l.001.093.004.187.002.093.008.186.004.092.01.184.007.091.006.091.007.091.008.091.009.091.008.09.02.18.01.089.011.089.012.09.012.088.013.089.013.088.028.176.015.088.015.087.016.087.051.261.018.086.019.086.018.086.02.086.02.085.021.085.021.086.021.084.022.085.069.252.025.084.024.084.025.083.078.249.028.082.027.082.028.082.029.082.029.081.029.082.03.081.062.162.031.08.032.08.099.24.034.08.034.078.07.158.072.156.074.156.038.078.038.077.117.231.04.076.04.075.041.076.042.077.042.074.042.075.043.075.043.074.044.075.088.148.09.146.047.074.092.144.048.073.048.072.047.071.049.071.048.071.05.071.05.07.05.071.051.069.05.069.052.07.052.069.052.068.053.069.053.068.053.067.055.068.054.067.055.067.054.065.056.067.056.066.056.065.114.13.057.064.058.064.118.128.059.062.058.062.061.064.06.061.06.062.122.122.062.061.061.059.126.12.063.059.063.058.064.059.064.057.064.058.13.114.065.056.066.056.066.055.067.056.066.054.068.055.067.054.067.053.136.106.068.052.07.052.069.052.069.05.071.051.14.1.071.05.071.048.071.049.071.048.073.047.072.048.072.047.072.045.073.046.074.046.073.045.074.044.074.045.148.086.076.043.074.042.075.042.152.082.077.041.076.04.077.039.076.04.231.114.078.037.078.036.079.037.079.036.156.07.079.034.08.034.081.034.078.032.081.033.081.032.079.031.162.062.082.03.081.029.08.029.083.029.164.056.083.027.164.052.085.026.083.025.082.024.084.024.085.024.168.046.085.022.086.022.083.02.086.021.085.02.085.019.087.02.172.036.086.017.088.017.087.017.087.016.174.03.088.014.089.014.176.026.091.012.088.012.089.011.089.01.18.02.09.008.09.009.091.008.184.014.091.006.09.005.093.005.093.004.092.004.093.004.092.002.188.004.093.001h239.648l.093-.001.094-.002.094-.002.092-.002.093-.004.092-.004.093-.004.093-.005.09-.005.091-.006.092-.007.092-.007.091-.008.09-.009.09-.008.09-.01.09-.01.089-.01.089-.011.088-.012.091-.012.088-.013.088-.013.089-.014.088-.014.087-.015.087-.015.087-.016.087-.017.088-.017.086-.017.086-.018.086-.018.087-.02.085-.019.085-.02.086-.021.084-.02.085-.022.085-.022.084-.023.084-.023.085-.024.084-.024.082-.024.083-.025.085-.026.082-.026.082-.026.083-.028.082-.027.082-.028.082-.029.081-.029.081-.029.082-.03.081-.031.081-.031.079-.031.081-.032.081-.033.078-.032.081-.034.081-.034.077-.034.078-.035.079-.035.079-.036.079-.036.078-.037.078-.037.077-.038.076-.038.078-.039.077-.039.076-.039.077-.04.075-.04.076-.041.077-.043.074-.041.075-.042.076-.043.074-.043.074-.043.074-.045.074-.044.073-.045.073-.046.074-.046.072-.045.071-.047.074-.048.072-.048.071-.047.071-.049.07-.048.072-.05.07-.05.071-.05.07-.051.068-.05.07-.052.07-.053.067-.051.069-.053.068-.053.067-.053.067-.054.068-.055.067-.055.065-.054.067-.057.066-.055.065-.056.065-.057.064-.057.065-.058.064-.057.064-.059.064-.059.062-.058.063-.06.063-.06.061-.059.062-.061.061-.061.061-.061.061-.062.059-.061.06-.063.06-.063.058-.062.059-.064.059-.064.057-.064.058-.065.057-.064.057-.065.056-.065.055-.066.057-.067.054-.065.055-.067.055-.068.054-.067.053-.067.053-.068.053-.069.051-.067.053-.07.052-.07.05-.068.051-.07.05-.071.05-.07.05-.072.048-.07.049-.071.047-.071.048-.072.048-.074.047-.071.045-.072.046-.074.046-.073.045-.073.044-.074.045-.074.043-.074.043-.074.043-.076.042-.075.041-.074.043-.077.041-.076.04-.075.04-.077.039-.076.039-.077.039-.078.038-.076.038-.077.037-.078.037-.078.036-.079.036-.079.035-.079.035-.078.034-.077.034-.081.034-.081.032-.078.033-.081.032-.081.031-.079.031-.081.031-.081.03-.082.029-.081.029-.081.029-.082.028-.082.027-.082.028-.083.026-.082.026-.082.026-.085.025-.083.024-.082.024-.084.024-.085.023-.084.023-.084.022-.085.022-.085.02-.084.021-.086.02-.085.019-.085.02-.087.018-.086.018-.086.017-.086.017-.088.017-.087.016-.087.015-.087.015-.087.014-.088.014-.089.013-.088.013-.088.012-.091.012-.088.011-.089.01-.089.01-.09.01-.09.008-.09.009-.09.008-.091.007-.092.007-.092.006-.091.005-.09.005-.093.004-.093.004-.092.004-.093.002-.092.002-.094.002-.094.001-.093V30.176l-.001-.093-.002-.094-.002-.094-.002-.092-.004-.093-.004-.092-.004-.093-.005-.093-.005-.09-.006-.091-.007-.092-.007-.092-.008-.091-.009-.09-.008-.09-.01-.09-.01-.09-.01-.089-.011-.089-.012-.088-.012-.091-.013-.088-.013-.088-.014-.089-.014-.088-.015-.087-.015-.087-.016-.087-.017-.087-.017-.088-.017-.086-.018-.086-.018-.086-.02-.087-.019-.085-.02-.085-.021-.086-.02-.083-.022-.086-.022-.085-.023-.084-.023-.084-.024-.085-.024-.084-.024-.082-.025-.083-.026-.085-.026-.082-.026-.082-.027-.083-.028-.082-.028-.082-.029-.083-.029-.08-.029-.081-.03-.082-.031-.081-.031-.081-.031-.079-.032-.081-.033-.081-.032-.078-.034-.081-.034-.08-.034-.079-.035-.078-.035-.078-.036-.079-.037-.079-.036-.078-.037-.078-.038-.077-.038-.077-.038-.077-.04-.076-.039-.077-.04-.076-.041-.077-.041-.076-.041-.076-.042-.075-.042-.074-.043-.076-.043-.074-.043-.074-.045-.074-.044-.074-.045-.073-.046-.074-.046-.073-.045-.072-.047-.072-.048-.072-.047-.073-.048-.071-.049-.071-.048-.071-.05-.071-.05-.07-.05-.07-.051-.071-.05-.069-.052-.069-.052-.07-.052-.068-.053-.068-.053-.068-.053-.067-.054-.067-.055-.068-.054-.066-.056-.067-.055-.066-.056-.066-.056-.065-.057-.065-.057-.065-.058-.064-.057-.064-.059-.064-.058-.063-.059-.063-.06-.063-.06-.063-.059-.061-.061-.062-.061-.061-.061-.061-.062-.06-.061-.06-.064-.061-.062-.058-.062-.059-.064-.059-.064-.059-.064-.058-.064-.057-.065-.057-.065-.057-.065-.056-.066-.056-.067-.056-.065-.054-.067-.055-.067-.054-.068-.055-.067-.053-.068-.053-.069-.053-.068-.052-.069-.052-.07-.052-.069-.05-.069-.051-.071-.05-.07-.05-.071-.05-.071-.048-.071-.049-.071-.047-.072-.048-.073-.048-.072-.046-.072-.046-.074-.047-.073-.045-.073-.045-.074-.044-.074-.044-.075-.044-.074-.043-.075-.043-.075-.042-.074-.042-.077-.042-.076-.041-.075-.04-.076-.04-.077-.039-.077-.039-.077-.039-.077-.038-.078-.038-.078-.037-.078-.037-.078-.036-.078-.036-.079-.035-.079-.035-.078-.034-.08-.034-.08-.033-.08-.033-.08-.033-.08-.032-.08-.031-.081-.031-.081-.031-.081-.03-.082-.029-.081-.029-.082-.029-.082-.028-.082-.027-.082-.028-.083-.026-.083-.026-.083-.026-.083-.025-.084-.024-.084-.025-.084-.023-.084-.023-.084-.023-.085-.022-.084-.021-.086-.021-.085-.021-.085-.02-.086-.02-.086-.018-.086-.019-.086-.018-.087-.017-.087-.017-.087-.017-.087-.016-.087-.015-.088-.015-.088-.014-.088-.014-.088-.013-.089-.013-.088-.012-.09-.012-.089-.011-.089-.01-.09-.01-.09-.01-.09-.008-.091-.009-.091-.008-.091-.007-.091-.006-.091-.007-.092-.005-.092-.005-.092-.004-.093-.004-.093-.004-.093-.002-.093-.002-.094-.002-.093-.001H30.296Z"
|
|
43
|
+
style="fill:#2d67b9"
|
|
44
|
+
id="path4" />
|
|
45
|
+
|
|
46
|
+
<path
|
|
47
|
+
d="M 56.204265,104.13685 H 105.92542 L 95.739989,95.27996 h 15.811291 l 15.82341,13.75947 -15.82341,13.75883 H 95.756379 l 10.317291,-8.97155 H 56.204265 Z"
|
|
48
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
49
|
+
id="path8-3" /><path
|
|
50
|
+
d="m 56.204269,144.13685 h 49.721151 l -10.185427,-8.85689 h 15.811287 l 15.82341,13.75947 -15.82341,13.75883 H 95.756383 l 10.317287,-8.97155 H 56.204269 Z"
|
|
51
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
52
|
+
id="path8-3-5" /><path
|
|
53
|
+
d="m 186.20427,144.13685 h 49.72115 L 225.74,135.27996 h 15.81128 l 15.82341,13.75947 -15.82341,13.75883 h -15.79489 l 10.31728,-8.97155 h -49.8694 z"
|
|
54
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
55
|
+
id="path8-3-5-2" /><path
|
|
56
|
+
d="m 56.204269,184.13685 h 49.721151 l -10.185427,-8.85689 h 15.811287 l 15.82341,13.75947 -15.82341,13.75883 H 95.756383 l 10.317287,-8.97155 H 56.204269 Z"
|
|
57
|
+
style="clip-rule:evenodd;fill:#2d67b9;fill-rule:evenodd;stroke-width:0.664657;stroke-linejoin:round;stroke-miterlimit:1.41421"
|
|
58
|
+
id="path8-3-5-6" /></svg>
|