@availity/mui-empty-state 0.1.0
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.
- package/CHANGELOG.md +14 -0
- package/README.md +61 -0
- package/__mocks__/fileMock.js +1 -0
- package/dist/404-Page-Not-Found_Gray-COTPFMFP.svg +25 -0
- package/dist/Content-Loading_Gray-AGUNV3ID.svg +94 -0
- package/dist/Error_Gray-H3D5B6BV.svg +258 -0
- package/dist/No-Data_Gray-JVSMIDTK.svg +215 -0
- package/dist/No-Search-Found_Gray-4OSPRMF4.svg +238 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +125 -0
- package/dist/index.mjs +91 -0
- package/introduction.mdx +7 -0
- package/jest.config.js +12 -0
- package/package.json +51 -0
- package/project.json +42 -0
- package/src/assets/404-Page-Not-Found_Gray.svg +25 -0
- package/src/assets/Content-Loading_Gray.svg +94 -0
- package/src/assets/Error_Gray.svg +258 -0
- package/src/assets/No-Data_Gray.svg +215 -0
- package/src/assets/No-Search-Found_Gray.svg +238 -0
- package/src/assets/custom.d.ts +5 -0
- package/src/index.ts +2 -0
- package/src/lib/EmptyState.stories.tsx +131 -0
- package/src/lib/EmptyState.test.tsx +13 -0
- package/src/lib/EmptyState.tsx +44 -0
- package/src/lib/EmptyStateImage.stories.tsx +48 -0
- package/src/lib/EmptyStateImage.test.tsx +9 -0
- package/src/lib/EmptyStateImage.tsx +38 -0
- package/tsconfig.json +5 -0
- package/tsconfig.spec.json +10 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
|
+
|
|
5
|
+
## 0.1.0 (2023-12-19)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `mui-layout` updated to version `0.1.3`
|
|
10
|
+
* `mui-link` updated to version `0.2.4`
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **mui-empty-state:** add EmptyState package ([59e8641](https://github.com/Availity/element/commit/59e86418686355fe11a97e63b8e16501d1f01a6c))
|
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
# @availity/mui-empty-state
|
|
2
|
+
|
|
3
|
+
> Availity EmptyState component to be used with @availity/element design system.
|
|
4
|
+
|
|
5
|
+
[](https://www.npmjs.com/package/@availity/mui-empty-state)
|
|
6
|
+
[](https://www.npmjs.com/package/@availity/mui-empty-state)
|
|
7
|
+
[](https://github.com/Availity/element/blob/main/packages/mui-empty-state/package.json)
|
|
8
|
+
|
|
9
|
+
## Documentation
|
|
10
|
+
|
|
11
|
+
This package extends the MUI Stack component: [MUI EmptyState Docs](https://mui.com/components/stack/)
|
|
12
|
+
|
|
13
|
+
Live demo and documentation in our [Storybook](https://availity.github.io/element/?path=/docs/components-empty-state-introduction--docs)
|
|
14
|
+
|
|
15
|
+
Availity standards for design and usage can be found in the [Availity Design Guide](https://zeroheight.com/2e36e50c7)
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
### Import Through @availity/element (Recommended)
|
|
20
|
+
|
|
21
|
+
#### NPM
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
npm install @availity/element
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
#### Yarn
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
yarn add @availity/element
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Direct Import
|
|
34
|
+
|
|
35
|
+
#### NPM
|
|
36
|
+
|
|
37
|
+
_This package has a few peer dependencies. Add `@mui/material` & `@emotion/react` to your project if not already installed._
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npm install @availity/mui-empty-state
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
#### Yarn
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
yarn add @availity/mui-empty-state
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Usage
|
|
50
|
+
|
|
51
|
+
#### Import through @availity/element
|
|
52
|
+
|
|
53
|
+
```tsx
|
|
54
|
+
import { EmptyState } from '@availity/element';
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
#### Direct import
|
|
58
|
+
|
|
59
|
+
```tsx
|
|
60
|
+
import { EmptyState } from '@availity/mui-empty-state';
|
|
61
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = 'test-file-stub';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 144 144">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #fff;
|
|
7
|
+
stroke: #d7dae0;
|
|
8
|
+
stroke-linecap: round;
|
|
9
|
+
stroke-linejoin: round;
|
|
10
|
+
stroke-width: 4px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cls-2 {
|
|
14
|
+
fill: #d7dae0;
|
|
15
|
+
stroke-width: 0px;
|
|
16
|
+
}
|
|
17
|
+
</style>
|
|
18
|
+
</defs>
|
|
19
|
+
<circle class="cls-1" cx="72" cy="72" r="65.36"/>
|
|
20
|
+
<g>
|
|
21
|
+
<path class="cls-2" d="m41.45,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"/>
|
|
22
|
+
<path class="cls-2" d="m57.62,70.71c0-9.2,3.85-17.94,14.3-17.94s14.46,8.79,14.46,17.94-4.11,17.94-14.4,17.94-14.35-8.79-14.35-17.94Zm20.23,0c0-7.59-1.66-11.7-5.88-11.7s-5.88,4.11-5.88,11.7,1.61,11.7,5.82,11.7,5.93-4.11,5.93-11.7Z"/>
|
|
23
|
+
<path class="cls-2" d="m105.25,81.06h-15.96v-5.15l16.54-22.52h7.28v21.63h5.1v6.03h-5.1v6.97h-7.85v-6.97Zm-4.37-6.03h4.47v-11.39h-.1l-8.16,11.54c.73-.1,2.08-.16,3.8-.16Z"/>
|
|
24
|
+
</g>
|
|
25
|
+
</svg>
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 144 144" style="enable-background:new 0 0 144 144;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
7
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:#FFFFFF;}
|
|
9
|
+
.st3{fill:#BBD6EB;}
|
|
10
|
+
.st4{fill:#EEEFF2;}
|
|
11
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
12
|
+
.st6{fill:#F3F5F7;}
|
|
13
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000176006543863496528330000000462417252228913081_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
14
|
+
.st8{fill:url(#SVGID_00000015319362321215657120000016772862876214577086_);stroke:url(#SVGID_00000152244241508843639740000001401911986524829082_);stroke-miterlimit:10;}
|
|
15
|
+
.st9{clip-path:url(#SVGID_00000049900885975040311480000014641288987660230562_);}
|
|
16
|
+
.st10{fill:url(#SVGID_00000117642988714045540050000010885684402881936041_);}
|
|
17
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
18
|
+
.st12{fill:url(#SVGID_00000125604309478716627940000018438234177356556952_);}
|
|
19
|
+
.st13{fill:url(#SVGID_00000132069462677027178960000008382514955351358372_);}
|
|
20
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000062162616124260765010000008526522228635748258_);stroke-miterlimit:10;}
|
|
21
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
22
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
23
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
24
|
+
.st18{fill:url(#SVGID_00000009588382626512182630000000417519188469437843_);stroke:url(#SVGID_00000177477496586111945870000014100075475962833048_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
25
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
26
|
+
.st20{fill:#838795;}
|
|
27
|
+
.st21{fill:url(#SVGID_00000174597297320001511960000013670959614116761004_);stroke:url(#SVGID_00000129897832550043709990000008027305424274603908_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
28
|
+
.st22{fill:url(#SVGID_00000116205277842798810240000009364400178635883163_);stroke:url(#SVGID_00000129892993543544801990000014396413855114576553_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
29
|
+
.st23{fill:url(#SVGID_00000001655279822551144730000000584856484495896194_);stroke:url(#SVGID_00000176759401495530291270000008812844235826319793_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
30
|
+
.st24{fill:url(#SVGID_00000112612076613591032760000007552966830535813506_);stroke:url(#SVGID_00000173150333541769424900000012311132872344659600_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
31
|
+
.st25{fill:url(#SVGID_00000167377518250360958600000012024494647277307549_);stroke:url(#SVGID_00000090996303758899480520000013700931798889907845_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
32
|
+
.st26{fill:url(#SVGID_00000113313898878532870900000009697633909400558239_);stroke:url(#SVGID_00000016054001392529010580000017933611116152550037_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
33
|
+
.st27{fill:url(#SVGID_00000182501328966094517510000009557348055514095285_);stroke:url(#SVGID_00000097499898606210172760000007265246509046394272_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
34
|
+
.st28{fill:url(#SVGID_00000093163986554319382470000004512425758303507857_);stroke:url(#SVGID_00000160156627061281780260000003073387267248993668_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
35
|
+
.st29{fill:url(#SVGID_00000039852445104329141810000017113637726105273514_);}
|
|
36
|
+
.st30{fill:url(#SVGID_00000145768861874340769480000010417490475065406911_);}
|
|
37
|
+
.st31{fill:url(#SVGID_00000021826105673988720180000005850849167490308257_);}
|
|
38
|
+
.st32{fill:url(#SVGID_00000113328152725663388370000008623716012898754729_);}
|
|
39
|
+
.st33{fill:url(#SVGID_00000049936574387004280930000008737136302325751473_);}
|
|
40
|
+
.st34{fill:url(#SVGID_00000078012326262918990240000017969369491322853013_);}
|
|
41
|
+
.st35{fill:url(#SVGID_00000043439220213444529320000017110188194410216598_);}
|
|
42
|
+
.st36{fill:url(#SVGID_00000085959914259548507610000014528726628465756551_);}
|
|
43
|
+
.st37{fill:url(#SVGID_00000054235207827654170530000000636417226058331053_);}
|
|
44
|
+
.st38{fill:url(#SVGID_00000119090649786998115210000016229875856120458910_);}
|
|
45
|
+
.st39{fill:url(#SVGID_00000180344741544846243260000000406405291685112501_);}
|
|
46
|
+
.st40{fill:url(#SVGID_00000160876487737500528740000004641259659555639953_);}
|
|
47
|
+
.st41{fill:url(#SVGID_00000183216786247456001250000006062446311022170247_);}
|
|
48
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000096770547822523386280000004746499526238330758_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
49
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000023239991958481634540000016184330221425931140_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
50
|
+
.st44{fill:url(#SVGID_00000029739142259141600010000016570484130670398361_);stroke:url(#SVGID_00000029020370880654741350000007090455394063577530_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
51
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
52
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
53
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
54
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
55
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
56
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
57
|
+
.st51{fill:#D7DAE0;}
|
|
58
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
59
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
60
|
+
.st54{clip-path:url(#SVGID_00000026133832652177936590000006036523222373779113_);}
|
|
61
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
62
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
63
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
64
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
65
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
66
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
67
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
68
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
69
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
70
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
71
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
72
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
73
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
74
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
75
|
+
.st69{fill:#5E616E;}
|
|
76
|
+
.st70{clip-path:url(#SVGID_00000069382423800612514740000015580195284870920623_);}
|
|
77
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
78
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
79
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
80
|
+
.st74{fill:#E5E5E5;}
|
|
81
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
82
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
83
|
+
</style>
|
|
84
|
+
<g>
|
|
85
|
+
<path class="st4" d="M118.7,52c0.5-2.3,0.8-4.7,0.8-7.1c0-17.6-14.3-31.9-31.9-31.9c-13,0-24.2,7.8-29.1,18.9
|
|
86
|
+
c-3.7-2.1-7.9-3.3-12.4-3.3c-13.8,0-24.9,11.2-24.9,24.9c0,0,0,0.1,0,0.1C11.3,56.7,4,65.9,4,76.8C4,90.2,14.9,101,28.2,101h87.1
|
|
87
|
+
c13.6,0,24.6-11,24.6-24.6C140,64,130.7,53.7,118.7,52z"/>
|
|
88
|
+
<g>
|
|
89
|
+
<circle class="st71" cx="72" cy="101" r="30"/>
|
|
90
|
+
</g>
|
|
91
|
+
<path class="st51" d="M86.9,100.3c-1.4-1.4-3.7-1.4-5.1,0l-6.2,6.2V81.7h-7.2v24.8l-6.2-6.2c-1.4-1.4-3.7-1.4-5.1,0
|
|
92
|
+
c-1.4,1.4-1.4,3.7,0,5.1l15,15l15-15C88.3,104,88.3,101.7,86.9,100.3z"/>
|
|
93
|
+
</g>
|
|
94
|
+
</svg>
|
|
@@ -0,0 +1,258 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 28.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 144 144" style="enable-background:new 0 0 144 144;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#FFFFFF;stroke:#BBD6EB;stroke-miterlimit:10;}
|
|
7
|
+
.st1{fill:#FFFFFF;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:#FFFFFF;}
|
|
9
|
+
.st3{fill:#BBD6EB;}
|
|
10
|
+
.st4{fill:#EEEFF2;}
|
|
11
|
+
.st5{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
12
|
+
.st6{fill:#F3F5F7;}
|
|
13
|
+
.st7{fill:url(#SVGID_1_);stroke:url(#SVGID_00000081621619034247821850000015378210896463229074_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
14
|
+
.st8{fill:url(#SVGID_00000181779896255103810390000008732235659620714386_);stroke:url(#SVGID_00000092457065743335288950000011131082234239464350_);stroke-miterlimit:10;}
|
|
15
|
+
.st9{clip-path:url(#SVGID_00000148657775648362423020000002106990097565054365_);}
|
|
16
|
+
.st10{fill:url(#SVGID_00000075878825758085664610000004732739117575711109_);}
|
|
17
|
+
.st11{fill:#FFFFFF;stroke:#FFFFFF;stroke-miterlimit:10;}
|
|
18
|
+
.st12{fill:url(#SVGID_00000028292982692467166870000005354204768560777128_);}
|
|
19
|
+
.st13{fill:url(#SVGID_00000093140215807884005590000016364529275189682819_);}
|
|
20
|
+
.st14{fill:#FFFFFF;stroke:url(#SVGID_00000075857794690949354180000014957395813856022146_);stroke-miterlimit:10;}
|
|
21
|
+
.st15{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
22
|
+
.st16{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.6708,0.5671,1.7012,5.6708;}
|
|
23
|
+
.st17{fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.5671,1.7012,5.6708,0.5671,1.7012,5.6708;}
|
|
24
|
+
.st18{fill:url(#SVGID_00000166665362821216335340000000283824702714187452_);stroke:url(#SVGID_00000085227033995333242340000001218083077546277006_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
25
|
+
.st19{opacity:0.25;fill:none;stroke:#FFFFFF;stroke-linecap:round;stroke-miterlimit:10;}
|
|
26
|
+
.st20{fill:#838795;}
|
|
27
|
+
.st21{fill:url(#SVGID_00000053540416273434793660000012111559354482474386_);stroke:url(#SVGID_00000177476474652206454140000002878752723534682009_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
28
|
+
.st22{fill:url(#SVGID_00000000190647400832170360000006373822822014518668_);stroke:url(#SVGID_00000148629645957404713100000016975086185673440444_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
29
|
+
.st23{fill:url(#SVGID_00000114754495004653504560000004483596478050235809_);stroke:url(#SVGID_00000027602220130363832190000011818887372045710987_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
30
|
+
.st24{fill:url(#SVGID_00000173850724057714779520000003057332381175431359_);stroke:url(#SVGID_00000098211761943341143030000018445750973872267399_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
31
|
+
.st25{fill:url(#SVGID_00000028319134450378088810000002794438197279633301_);stroke:url(#SVGID_00000093885479364327475910000008446188518519788938_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
32
|
+
.st26{fill:url(#SVGID_00000160876822339485330830000015962852868562795175_);stroke:url(#SVGID_00000031167412886066197450000008540230004745342604_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
33
|
+
.st27{fill:url(#SVGID_00000107589952593659498640000011731312053919307923_);stroke:url(#SVGID_00000022554931582644243250000009528257873710955920_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
34
|
+
.st28{fill:url(#SVGID_00000113339290823565001230000003077454992305403055_);stroke:url(#SVGID_00000016773202001571073830000008925456201890166713_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
35
|
+
.st29{fill:url(#SVGID_00000145766210129843654280000008414182394574235550_);}
|
|
36
|
+
.st30{fill:url(#SVGID_00000100382717418572927390000001456604383761115837_);}
|
|
37
|
+
.st31{fill:url(#SVGID_00000129190673782059888730000005128643732321181317_);}
|
|
38
|
+
.st32{fill:url(#SVGID_00000143593989322258433510000001027744132546664080_);}
|
|
39
|
+
.st33{fill:url(#SVGID_00000092446195201986279060000014703002936100233865_);}
|
|
40
|
+
.st34{fill:url(#SVGID_00000015322734036828561840000010982677526076386488_);}
|
|
41
|
+
.st35{fill:url(#SVGID_00000031178431916965205230000013541038271019598489_);}
|
|
42
|
+
.st36{fill:url(#SVGID_00000083086449413050641470000002906279532911557032_);}
|
|
43
|
+
.st37{fill:url(#SVGID_00000176011318519293958280000013215060127979682459_);}
|
|
44
|
+
.st38{fill:url(#SVGID_00000152263718683210670010000016423744641718109091_);}
|
|
45
|
+
.st39{fill:url(#SVGID_00000172432462335848256480000018122774921226754463_);}
|
|
46
|
+
.st40{fill:url(#SVGID_00000177484263586452984900000015023565108868573603_);}
|
|
47
|
+
.st41{fill:url(#SVGID_00000081643703363059330020000003866302213042182555_);}
|
|
48
|
+
.st42{fill:#FFFFFF;stroke:url(#SVGID_00000094589977852170688340000006610920947367408782_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
49
|
+
.st43{fill:#FFFFFF;stroke:url(#SVGID_00000137105342308290949850000004490561321975999901_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
50
|
+
.st44{fill:url(#SVGID_00000080909412108563139410000005232479692686201742_);stroke:url(#SVGID_00000143584794993791310560000012387335668481375167_);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
51
|
+
.st45{fill:#D7DAE0;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
52
|
+
.st46{fill:#5E616E;stroke:#5E616E;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
53
|
+
.st47{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
54
|
+
.st48{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0076,4.0153;}
|
|
55
|
+
.st49{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
56
|
+
.st50{fill:#838795;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
57
|
+
.st51{fill:#D7DAE0;}
|
|
58
|
+
.st52{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
59
|
+
.st53{fill:none;stroke:#D7DAE0;stroke-width:8;stroke-miterlimit:10;stroke-dasharray:2.0038,4.0077;}
|
|
60
|
+
.st54{clip-path:url(#SVGID_00000136401751887824621280000003695729859886128790_);}
|
|
61
|
+
.st55{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;}
|
|
62
|
+
.st56{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:6.6455,0.6645,1.9936,6.6455;}
|
|
63
|
+
.st57{fill:none;stroke:#FFFFFF;stroke-width:1.5;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:0.6645,1.9936,6.6455,0.6645,1.9936,6.6455;}
|
|
64
|
+
.st58{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
65
|
+
.st59{fill:#FFFFFF;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
66
|
+
.st60{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;}
|
|
67
|
+
.st61{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:7.0238,0.7024,2.1072,7.0238;}
|
|
68
|
+
.st62{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:0.7024,2.1072,7.0238,0.7024,2.1072,7.0238;}
|
|
69
|
+
.st63{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;}
|
|
70
|
+
.st64{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-miterlimit:10;stroke-dasharray:5.7263,0.5726,1.7179,5.7263;}
|
|
71
|
+
.st65{fill:none;stroke:#5E616E;stroke-width:1.5;stroke-miterlimit:10;}
|
|
72
|
+
.st66{fill:none;stroke:#D7DAE0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
73
|
+
.st67{fill:none;stroke:#5E616E;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
74
|
+
.st68{fill:none;stroke:#838795;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:1,3,10,5;}
|
|
75
|
+
.st69{fill:#5E616E;}
|
|
76
|
+
.st70{clip-path:url(#SVGID_00000100348009751521439460000000287595225089103793_);}
|
|
77
|
+
.st71{fill:#FFFFFF;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
78
|
+
.st72{fill:none;stroke:#D7DAE0;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
79
|
+
.st73{fill:#FFFFFF;stroke:#1A74CC;stroke-miterlimit:10;}
|
|
80
|
+
.st74{fill:#E5E5E5;}
|
|
81
|
+
.st75{fill:#BBD6EB;stroke:#BBD6EB;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;}
|
|
82
|
+
.st76{fill:#FFFFFF;stroke:#EEEFF2;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:8,5;}
|
|
83
|
+
</style>
|
|
84
|
+
<rect x="21" y="34.2" class="st2" width="101.9" height="57.1"/>
|
|
85
|
+
<path class="st4" d="M23.4,36.6h97.2v37.1h5.1V33.6c0-1.2-1-2.2-2.2-2.2H20.5c-1.2,0-2.2,1-2.2,2.2v40.1h5.1V36.6z"/>
|
|
86
|
+
<path class="st4" d="M126.1,97.3H17.9L4,126.4H140L126.1,97.3z M58.5,122.6L61,115H83l2.4,7.6H58.5z M24.3,111.2l4.7-10.1H115
|
|
87
|
+
l4.7,10.1H24.3z"/>
|
|
88
|
+
<polygon class="st2" points="61,115 58.5,122.6 85.5,122.6 83,115 "/>
|
|
89
|
+
<polygon class="st2" points="29,101.2 24.3,111.2 119.7,111.2 115,101.2 "/>
|
|
90
|
+
<path class="st4" d="M135.3,131.7H8.7c-0.9,0-1.9-0.4-2.5-1.1L4,128.2H140l-2.2,2.5C137.2,131.3,136.3,131.7,135.3,131.7z"/>
|
|
91
|
+
<g>
|
|
92
|
+
<path class="st2" d="M32.3,16.3v74.3c0,2.5,1.8,1.7,4.1,1.7h71.3c2.3,0,4.1,0.8,4.1-1.7V16.3c0-2.5-1.8-4.6-4.1-4.6H36.4
|
|
93
|
+
C34.1,11.7,32.3,13.8,32.3,16.3z"/>
|
|
94
|
+
<path class="st4" d="M94.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C95.6,12.2,95.2,11.7,94.6,11.7L94.6,11.7z
|
|
95
|
+
M81.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C82.6,12.2,82.2,11.7,81.6,11.7L81.6,11.7z M68.6,11.7h-8
|
|
96
|
+
c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C69.6,12.2,69.2,11.7,68.6,11.7L68.6,11.7z M55.6,11.7h-8c-0.6,0-1,0.4-1,1
|
|
97
|
+
c0,0.6,0.4,1,1,1h8c0.6,0,1-0.4,1-1C56.6,12.2,56.2,11.7,55.6,11.7L55.6,11.7z M42.6,11.7h-6.3l0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
98
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
99
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
100
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
101
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
102
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
103
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
104
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
105
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
106
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
107
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
108
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
109
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
110
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
111
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
112
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
113
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
114
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
115
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
116
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
117
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
118
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
119
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
120
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
121
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
122
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
123
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
124
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
125
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
126
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
127
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
128
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.2,0.1-0.4,0.1-0.6,0.2c-0.5,0.2-0.7,0.8-0.4,1.3
|
|
129
|
+
c0.2,0.3,0.5,0.5,0.9,0.5c0.2,0,0.3,0,0.4-0.1c0.2-0.1,0.5-0.2,0.8-0.2h6.3c0.6,0,1-0.4,1-1C43.6,12.2,43.2,11.7,42.6,11.7
|
|
130
|
+
L42.6,11.7z M33.3,15.2c-0.5,0-1,0.4-1,1c0,0,0,0,0,0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
131
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
132
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v7.9c0,0.6,0.4,1,1,1s1-0.4,1-1v-7.9l0-0.1C34.3,15.7,33.8,15.2,33.3,15.2
|
|
133
|
+
C33.3,15.2,33.3,15.2,33.3,15.2L33.3,15.2z M33.3,28.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
134
|
+
C34.3,28.7,33.8,28.2,33.3,28.2L33.3,28.2z M33.3,41.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
135
|
+
C34.3,41.7,33.8,41.2,33.3,41.2L33.3,41.2z M33.3,54.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
136
|
+
C34.3,54.7,33.8,54.2,33.3,54.2L33.3,54.2z M33.3,67.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
137
|
+
C34.3,67.7,33.8,67.2,33.3,67.2L33.3,67.2z M33.3,80.2c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
138
|
+
C34.3,80.7,33.8,80.2,33.3,80.2L33.3,80.2z M42.6,90.3h-6.3c-0.6,0-1.1,0-1.5,0.1l-0.4,0c-0.6,0-1,0.5-0.9,1.1c0,0.5,0.5,0.9,1,0.9
|
|
139
|
+
c0,0,0,0,0.1,0c0.2,0,0.5,0,0.7-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
140
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
141
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
142
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0.1,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0h0
|
|
143
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
144
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
145
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
146
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
147
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
148
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
149
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0s0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
150
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0s0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
151
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
152
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
153
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
154
|
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0h6.3c0.6,0,1-0.4,1-1S43.2,90.3,42.6,90.3L42.6,90.3z M55.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8
|
|
155
|
+
c0.6,0,1-0.4,1-1S56.2,90.3,55.6,90.3L55.6,90.3z M68.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S69.2,90.3,68.6,90.3
|
|
156
|
+
L68.6,90.3z M81.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S82.2,90.3,81.6,90.3L81.6,90.3z M94.6,90.3h-8
|
|
157
|
+
c-0.6,0-1,0.4-1,1s0.4,1,1,1h8c0.6,0,1-0.4,1-1S95.2,90.3,94.6,90.3L94.6,90.3z M107.6,90.3h-8c-0.6,0-1,0.4-1,1s0.4,1,1,1h8
|
|
158
|
+
c0.6,0,1-0.4,1-1S108.2,90.3,107.6,90.3L107.6,90.3z M110.7,82c-0.6,0-1,0.4-1,1v7.7c0,0.1,0,0.1,0,0.2c0,0.6,0.4,1,0.9,1.1
|
|
159
|
+
c0,0,0.1,0,0.1,0c0.5,0,1-0.4,1-0.9c0-0.1,0-0.1,0-0.2c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
160
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
161
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
162
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
163
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
164
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
165
|
+
c0,0,0,0,0,0V83C111.7,82.4,111.3,82,110.7,82L110.7,82z M110.7,69c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8
|
|
166
|
+
C111.7,69.4,111.3,69,110.7,69L110.7,69z M110.7,56c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,56.4,111.3,56,110.7,56
|
|
167
|
+
L110.7,56z M110.7,43c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,43.4,111.3,43,110.7,43L110.7,43z M110.7,30
|
|
168
|
+
c-0.6,0-1,0.4-1,1v8c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,30.4,111.3,30,110.7,30L110.7,30z M110.7,17c-0.6,0-1,0.4-1,1v8
|
|
169
|
+
c0,0.6,0.4,1,1,1s1-0.4,1-1v-8C111.7,17.4,111.3,17,110.7,17L110.7,17z M107.6,11.7h-8c-0.6,0-1,0.4-1,1c0,0.6,0.4,1,1,1h8l0,0
|
|
170
|
+
c0.7,0,1.2,0.5,1.5,0.8c0.2,0.2,0.5,0.4,0.8,0.4c0.2,0,0.4-0.1,0.6-0.2c0.4-0.3,0.5-1,0.1-1.4c0,0-0.1-0.1-0.1-0.1c0,0,0,0,0,0
|
|
171
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1-0.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
172
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
173
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
174
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
175
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
176
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
177
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
178
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
179
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
180
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
181
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
182
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
183
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
184
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
185
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
186
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
187
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
188
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
189
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0
|
|
190
|
+
c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
191
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
192
|
+
c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
193
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
194
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
195
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
196
|
+
c0,0,0,0,0,0c0,0,0,0-0.1,0v0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
197
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
198
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0,0,0,0,0,0l0,0
|
|
199
|
+
c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
200
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
201
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
202
|
+
c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
203
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0,0,0
|
|
204
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
205
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0v0c0,0,0,0-0.1,0l0,0c0,0,0,0,0,0
|
|
206
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
207
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0l0,0
|
|
208
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
209
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
210
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
211
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
212
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
213
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
214
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
215
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
216
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
217
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
218
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
219
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
220
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
221
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
222
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
223
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
224
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
225
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
226
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
227
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
228
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
229
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
230
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
231
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
232
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
233
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
234
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
235
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
236
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0
|
|
237
|
+
c0,0,0,0,0,0c0,0,0,0,0,0C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
238
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
239
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
240
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
241
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
242
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
243
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7
|
|
244
|
+
C107.7,11.7,107.7,11.7,107.6,11.7C107.7,11.7,107.7,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7
|
|
245
|
+
C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7
|
|
246
|
+
C107.6,11.7,107.6,11.7,107.6,11.7C107.6,11.7,107.6,11.7,107.6,11.7L107.6,11.7L107.6,11.7z"/>
|
|
247
|
+
</g>
|
|
248
|
+
<g>
|
|
249
|
+
<path class="st71" d="M70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3
|
|
250
|
+
C72.8,27.2,71.2,27.2,70.5,28.3L46.2,70.4c-0.7,1.1,0.2,2.6,1.5,2.6h48.7c1.3,0,2.1-1.4,1.5-2.6L73.5,28.3
|
|
251
|
+
C72.8,27.2,71.2,27.2,70.5,28.3z"/>
|
|
252
|
+
<g>
|
|
253
|
+
<path class="st51" d="M69.2,62.3c0-1.5,1.2-2.7,2.8-2.7c1.6,0,2.8,1.2,2.8,2.7c0,1.5-1.2,2.7-2.8,2.7
|
|
254
|
+
C70.4,65.1,69.2,63.8,69.2,62.3z M69.4,42.8h5.1l-0.8,14.5h-3.5L69.4,42.8z"/>
|
|
255
|
+
</g>
|
|
256
|
+
</g>
|
|
257
|
+
<polygon class="st4" points="120.6,73.7 120.6,89.3 23.4,89.3 23.4,73.7 18.3,73.7 18.3,95.5 125.7,95.5 125.7,73.7 "/>
|
|
258
|
+
</svg>
|