western-world 3.0.270 → 3.0.271
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/package.json
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
@import './mixins/light-blinking';
|
|
2
|
+
|
|
1
3
|
.animated {
|
|
2
4
|
.ambulance_2 {
|
|
3
5
|
#doctor {
|
|
@@ -39,6 +41,14 @@
|
|
|
39
41
|
animation-timing-function: linear;
|
|
40
42
|
animation-iteration-count: infinite;
|
|
41
43
|
}
|
|
44
|
+
|
|
45
|
+
#broken-light, #turn-on-light_1_ {
|
|
46
|
+
@include lightBlinkingAnimationStylesMixin;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
#turn-off-light {
|
|
50
|
+
display: block;
|
|
51
|
+
}
|
|
42
52
|
}
|
|
43
53
|
}
|
|
44
54
|
|
|
@@ -131,3 +141,5 @@
|
|
|
131
141
|
transform: scaleY(1);
|
|
132
142
|
}
|
|
133
143
|
}
|
|
144
|
+
|
|
145
|
+
@include lightBlinkingAnimationKeyframeMixin;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
|
+
@import './mixins/light-blinking';
|
|
2
|
+
|
|
1
3
|
.animated {
|
|
2
4
|
.got_into_an_accident {
|
|
3
5
|
#light,
|
|
4
6
|
#bulb {
|
|
5
7
|
display: block;
|
|
6
|
-
|
|
7
|
-
animation-iteration-count: infinite;
|
|
8
|
-
animation-name: lightAnimation;
|
|
9
|
-
animation-timing-function: linear;
|
|
8
|
+
@include lightBlinkingAnimationStylesMixin;
|
|
10
9
|
}
|
|
11
10
|
|
|
12
11
|
#bulb_x5F_background {
|
|
@@ -15,44 +14,4 @@
|
|
|
15
14
|
}
|
|
16
15
|
}
|
|
17
16
|
|
|
18
|
-
@
|
|
19
|
-
0% {
|
|
20
|
-
opacity: 0;
|
|
21
|
-
}
|
|
22
|
-
8% {
|
|
23
|
-
opacity: 0;
|
|
24
|
-
}
|
|
25
|
-
10% {
|
|
26
|
-
opacity: 1;
|
|
27
|
-
}
|
|
28
|
-
12% {
|
|
29
|
-
opacity: 0;
|
|
30
|
-
}
|
|
31
|
-
14% {
|
|
32
|
-
opacity: 1;
|
|
33
|
-
}
|
|
34
|
-
16% {
|
|
35
|
-
opacity: 0;
|
|
36
|
-
}
|
|
37
|
-
18% {
|
|
38
|
-
opacity: 1;
|
|
39
|
-
}
|
|
40
|
-
30% {
|
|
41
|
-
opacity: 1;
|
|
42
|
-
}
|
|
43
|
-
32% {
|
|
44
|
-
opacity: 0;
|
|
45
|
-
}
|
|
46
|
-
34% {
|
|
47
|
-
opacity: 1;
|
|
48
|
-
}
|
|
49
|
-
36% {
|
|
50
|
-
opacity: 1;
|
|
51
|
-
}
|
|
52
|
-
37% {
|
|
53
|
-
opacity: 0;
|
|
54
|
-
}
|
|
55
|
-
100% {
|
|
56
|
-
opacity: 0;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
17
|
+
@include lightBlinkingAnimationKeyframeMixin;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
@mixin lightBlinkingAnimationStylesMixin {
|
|
2
|
+
animation-duration: 3s;
|
|
3
|
+
animation-iteration-count: infinite;
|
|
4
|
+
animation-name: lightAnimation;
|
|
5
|
+
animation-timing-function: linear;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
@mixin lightBlinkingAnimationKeyframeMixin {
|
|
9
|
+
@keyframes lightAnimation {
|
|
10
|
+
0% {
|
|
11
|
+
opacity: 0;
|
|
12
|
+
}
|
|
13
|
+
8% {
|
|
14
|
+
opacity: 0;
|
|
15
|
+
}
|
|
16
|
+
10% {
|
|
17
|
+
opacity: 1;
|
|
18
|
+
}
|
|
19
|
+
12% {
|
|
20
|
+
opacity: 0;
|
|
21
|
+
}
|
|
22
|
+
14% {
|
|
23
|
+
opacity: 1;
|
|
24
|
+
}
|
|
25
|
+
16% {
|
|
26
|
+
opacity: 0;
|
|
27
|
+
}
|
|
28
|
+
18% {
|
|
29
|
+
opacity: 1;
|
|
30
|
+
}
|
|
31
|
+
30% {
|
|
32
|
+
opacity: 1;
|
|
33
|
+
}
|
|
34
|
+
32% {
|
|
35
|
+
opacity: 0;
|
|
36
|
+
}
|
|
37
|
+
34% {
|
|
38
|
+
opacity: 1;
|
|
39
|
+
}
|
|
40
|
+
36% {
|
|
41
|
+
opacity: 1;
|
|
42
|
+
}
|
|
43
|
+
37% {
|
|
44
|
+
opacity: 0;
|
|
45
|
+
}
|
|
46
|
+
100% {
|
|
47
|
+
opacity: 0;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
@@ -11,118 +11,127 @@
|
|
|
11
11
|
.st5{fill:#52B9AF;}
|
|
12
12
|
.st6{fill:#50B8AE;}
|
|
13
13
|
.st7{fill:#79D7C9;}
|
|
14
|
-
.st8{fill:#
|
|
15
|
-
.st9{fill:#
|
|
16
|
-
.st10{fill:#
|
|
17
|
-
.st11{fill
|
|
18
|
-
.st12{fill:url(#
|
|
19
|
-
.st13{fill
|
|
20
|
-
.st14{fill:#
|
|
14
|
+
.st8{display:none;fill:#EAD9B0;}
|
|
15
|
+
.st9{fill:#FAF3DF;}
|
|
16
|
+
.st10{fill:#237B7A;}
|
|
17
|
+
.st11{fill:#207878;}
|
|
18
|
+
.st12{fill:url(#broken-light_1_);}
|
|
19
|
+
.st13{fill:url(#SVGID_1_);}
|
|
20
|
+
.st14{fill:#7C2F48;}
|
|
21
|
+
.st15{fill:#F3F3F3;}
|
|
21
22
|
</style>
|
|
22
23
|
<g id="background">
|
|
23
|
-
<rect class="st0" width="10000" height="
|
|
24
|
-
<path class="st1" d="M2316,
|
|
25
|
-
|
|
26
|
-
<path class="st1" d="M1779,
|
|
27
|
-
<path class="st1" d="M7147,
|
|
28
|
-
|
|
29
|
-
c0,0-19-21-19-65s0-170,0-170s9-41,48-55v-69h39v68c0,0,48,17,49,60c0,43,0,170,0,170s2,42-20,65h85c0,0-16-17-17-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
<path class="st2" d="M2791,
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
<rect y="
|
|
45
|
-
<
|
|
46
|
-
<path class="
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
<rect x="
|
|
51
|
-
<rect x="
|
|
52
|
-
<rect x="
|
|
53
|
-
<rect x="
|
|
54
|
-
<rect x="
|
|
55
|
-
<rect x="
|
|
56
|
-
<rect x="
|
|
57
|
-
<
|
|
58
|
-
<
|
|
59
|
-
<
|
|
60
|
-
<
|
|
24
|
+
<rect y="0" class="st0" width="10000" height="10001.4"/>
|
|
25
|
+
<path class="st1" d="M2316,5867.8h1066c0,0,142,7,142,173c0,166,0,1396.2,0,1396.2s3,153-183,153s-1005,0-1005,0s-166-15-166-166
|
|
26
|
+
s0-1401.2,0-1401.2S2182,5867.8,2316,5867.8z"/>
|
|
27
|
+
<path class="st1" d="M1779,8469.2c0,0,165,23,165,209s0,880.1,0,880.1s6,180-180,180s-1764,0-1764,0V8469.2H1779z"/>
|
|
28
|
+
<path class="st1" d="M7147,7060h41v373.1h103v-160h118v-65h193v63h30v162h100v-171h138v171h173v-187h-26v-44h133v45h-20v186h144
|
|
29
|
+
v-199c0,0-4-42,44-42s42,42,42,42v199h15v-197c0,0,5-35,42-35s41,33,41,33v199h145v-131h307v131h1090v54.2H7188v420.9h138
|
|
30
|
+
c0,0-19-21-19-65s0-170,0-170s9-41,48-55v-69h39v68c0,0,48,17,49,60c0,43,0,170,0,170s2,42-20,65h85c0,0-16-17-17-47
|
|
31
|
+
c-1-30,0-170,0-170s-2-36,42-51v-66h39v65c0,0,38,13,38,53c0,40,0,171,0,171s-1,35-21,46h118v-188h-17v-39h128v40h-18v187h435
|
|
32
|
+
c0,0-22-31-22-68s0-174,0-174s12-41,52-55v-69h39v67c0,0,49,17,49,51s0,181,0,181s-3,48-23,65h133v-240c0,0,10.8-27,32-27
|
|
33
|
+
c1,0,12-28,12-28l10,27c0,0,32,12,32,36s0,234,0,234h112v-187h-21v-40h130v40h-19v184h194c0,0-16-19-16-43s0-132,0-132s8-39,35-47
|
|
34
|
+
s49,33,49,52c0,19,0,130,0,130s-5,32-15,39h995v1785.5H7147V7060z"/>
|
|
35
|
+
<path class="st2" d="M2791,6221.9c0,0-165-9-228-28c-63-19-96-56-115-56s-41,6-42,31s22,45,118,83s267,43,267,43l1,91
|
|
36
|
+
c0,0-94-1-207-27c-113-26-100-53-126-57c-26-4-45,1-52,27c-7,26,17,46,114,86c97,40,271,44,271,44v68c0,0-18,2-153-16
|
|
37
|
+
c-135-18-149-66-178-69s-47,5-50,33s24,46,133,85c109,39,248,40,248,40v77c0,0-65,6-162-14c-97-20-143-54-166-63c-23-9-46-10-55,21
|
|
38
|
+
s29,53,126,93c97,40,258,40,258,40v86h-205c0,0-138-4-138,156c0,160,165,140,165,140s64,125,236,125s231-122,232-122
|
|
39
|
+
c104.1,0,167-35,167-153c0-118-128-145-128-145h-237c0,0-1-86,0-86c138,0,381-56,401-72c20-16,16-45-6-55c-22-10-72,19-183,34
|
|
40
|
+
c-111,15-214,16-214,16v-80c0,0,103-1,173-8s227-46,240-65c13-19,6-40-15-49c-21-9-86,19-179,34s-219,19-219,19v-72c0,0,6,2,96-2
|
|
41
|
+
s273-40,301-64s18-51-3-58s-92,22-167,35s-225,20-225,20v-88c0,0,64-3,148-12c84-9,245-48,258-67s2-45-13-47c-15-2-21,5-151,29
|
|
42
|
+
s-238,14-238,14v-183h508v1387.2h-190v-196c0,0-2-45-43-45s-50,45-50,45v196h-504v-201c0,0-4-40-44-40s-43,43-43,43v198h-209
|
|
43
|
+
V6033.9h475L2791,6221.9z M2601,7089c73,0,84-188,0-188C2511,6901,2516,7089,2601,7089z M3101,6901c84,0,73,188,0,188
|
|
44
|
+
C3016,7089,3011,6901,3101,6901z"/>
|
|
45
|
+
<rect y="8648.2" class="st2" width="1772" height="394.1"/>
|
|
46
|
+
<rect y="9104.3" class="st2" width="1772" height="417.1"/>
|
|
47
|
+
<path class="st2" d="M2008.2,10001.4v-161c0,0,35.8-102-132.2-102s-1876,0-1876,0v263H2008.2z"/>
|
|
48
|
+
<path class="st3" d="M8251,7919.1l2,487.1l1270,2v-489.1h38l5,494.1h434v28l-438-6l-1,1047.1h439v29l-437,4l-1,179l-39,0.2v-179.2
|
|
49
|
+
H8256l0.2,179.2l-35.2-0.2v-182l-1074-3v-30h1077l-6-1039.1l-1071-1v-36h1073l1-484.1H8251z M9527,8434.2l-1274,7l2,1041.1h1268
|
|
50
|
+
L9527,8434.2z"/>
|
|
51
|
+
<rect x="7441" y="8128.2" class="st3" width="432" height="50"/>
|
|
52
|
+
<rect x="7447" y="8671.2" class="st3" width="432" height="50"/>
|
|
53
|
+
<rect x="7447" y="9202.3" class="st3" width="432" height="50"/>
|
|
54
|
+
<rect x="8725" y="9202.3" class="st3" width="432" height="50"/>
|
|
55
|
+
<rect x="8710" y="8671.2" class="st3" width="432" height="50"/>
|
|
56
|
+
<rect x="8694" y="8120.2" class="st3" width="432" height="50"/>
|
|
57
|
+
<rect x="9777" y="8644.2" class="st3" width="223" height="50"/>
|
|
58
|
+
<rect x="9788" y="9202.3" class="st3" width="212" height="50"/>
|
|
59
|
+
<rect x="9793" y="8126.2" class="st3" width="207" height="50"/>
|
|
60
|
+
<ellipse class="st0" cx="8086.5" cy="4234.1" rx="42.5" ry="44.5"/>
|
|
61
|
+
<ellipse class="st0" cx="7572.5" cy="2960.9" rx="42.5" ry="44.5"/>
|
|
62
|
+
<path class="st4" d="M7122,8915.3c0-134,49-170,210-170s2668,0,2668,0v302H7332C7332,9047.3,7122,9070.3,7122,8915.3z"/>
|
|
63
|
+
<rect x="7795.4" y="9048.5" class="st5" width="209.2" height="952.9"/>
|
|
61
64
|
</g>
|
|
62
65
|
<g id="spotlights">
|
|
63
|
-
<path class="st6" d="M6310,
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<path class="st7" d="
|
|
69
|
-
|
|
70
|
-
<path class="
|
|
71
|
-
<path class="st8" d="
|
|
72
|
-
|
|
73
|
-
<path class="
|
|
74
|
-
|
|
75
|
-
<path class="
|
|
76
|
-
<path class="
|
|
77
|
-
<path class="st9" d="
|
|
78
|
-
|
|
79
|
-
<path class="st9" d="
|
|
80
|
-
|
|
81
|
-
<
|
|
82
|
-
<
|
|
83
|
-
|
|
84
|
-
<
|
|
85
|
-
|
|
66
|
+
<path class="st6" d="M6310,4985.7l158-376.1c0,0,65-147,469-122c404,25,681,187,681,187l359-412.1l-533-1293.2c0,0-18-78,88-142
|
|
67
|
+
S10000,1020,10000,1020v354.8L7714,3002.4l456,1156.2c0,0,81,124-33,246c-114,122-307,369.1-307,369.1s500,259,477,554.1
|
|
68
|
+
l-132,363.1L6310,4985.7z"/>
|
|
69
|
+
<path class="st6" d="M2736,4824.7l-225-323c0,0-200.3-309.1-1036,239l-357-416.1l1196-1464.2c0,0,42-90-91-236S0,456.1,0,456.1
|
|
70
|
+
v382.1l2064,1971.3L938,4230.6c0,0-83,60-17,194s363,437.1,363,437.1s-498,497.1-443,791.1l203,321L2736,4824.7z"/>
|
|
71
|
+
<path class="st7" d="M6302,5000.7c0,0,161-341,1083-7c922,334,783,741.1,783,741.1s-170.4,391.6-1121,6
|
|
72
|
+
C6152,5377.8,6302,5000.7,6302,5000.7z"/>
|
|
73
|
+
<path class="st7" d="M2768,4856.7c-331.4-476.4-1991,690.1-1684,1177.2C1394.6,6526.6,3054,5267.7,2768,4856.7z"/>
|
|
74
|
+
<path id="turn-off-light" class="st8" d="M6411,5062.7c316.3-354.5,1776.6,344.6,1603,660.1C7791,6127.9,6129,5378.8,6411,5062.7z"
|
|
75
|
+
/>
|
|
76
|
+
<path id="turn-on-light_1_" class="st9" d="M6411,5062.7c316.3-354.5,1776.6,344.6,1603,660.1C7791,6127.9,6129,5378.8,6411,5062.7
|
|
77
|
+
z"/>
|
|
78
|
+
<path class="st9" d="M1523,5402.8c-111-131,373-476.1,482-354.1C2114,5170.7,1618.1,5515.1,1523,5402.8z"/>
|
|
79
|
+
<path class="st9" d="M2055,5179.7c-111-131,373-476.1,482-354.1C2646,4947.7,2150.1,5292.1,2055,5179.7z"/>
|
|
80
|
+
<path class="st9" d="M2219,5388.8c-111-131,373-476.1,482-354.1C2810,5156.7,2314.1,5501.1,2219,5388.8z"/>
|
|
81
|
+
<path class="st9" d="M1678,5615.8c-111-131,373-476.1,482-354.1C2269,5383.8,1773.1,5728.1,1678,5615.8z"/>
|
|
82
|
+
<path class="st9" d="M1828,5842.8c-111-131,373-476.1,482-354.1C2419,5610.8,1923.1,5955.1,1828,5842.8z"/>
|
|
83
|
+
<path class="st9" d="M1296,6056.9c-111-131,373-476.1,482-354.1C1887,5824.8,1391.1,6169.2,1296,6056.9z"/>
|
|
84
|
+
<path class="st9" d="M1132,5862.8c-111-131,373-476.1,482-354.1C1723,5630.8,1227.1,5975.1,1132,5862.8z"/>
|
|
85
|
+
<path class="st10" d="M2624,4663.7c0,0-98-87-351-40S1254.9,4993,1002,5593.8c-72,171-26.8,271.2-26.8,271.2l-45.2-70.2
|
|
86
|
+
c0,0-24.3-140.2,97-371.1c175-333,642.5-721.2,1202-840.1c273-58,352,18.5,352,18.5L2624,4663.7z"/>
|
|
87
|
+
<path class="st10" d="M6379,4821.7c0,0,35-95,302-121c267-26,1117,136.3,1476,599.1c90,116,82.7,213,82.7,213l24.9-68.4
|
|
88
|
+
c0,0-24.6-167.6-178.6-296.6c-154-129-663.8-482.9-1324-485.1c-305-1-354.7,91.5-354.7,91.5L6379,4821.7z"/>
|
|
89
|
+
<ellipse class="st11" cx="8086" cy="4229.6" rx="43" ry="42"/>
|
|
90
|
+
<ellipse class="st11" cx="7551" cy="2950.4" rx="43" ry="42"/>
|
|
91
|
+
<ellipse class="st11" cx="1003" cy="4313.6" rx="43" ry="42"/>
|
|
92
|
+
<ellipse class="st11" cx="2203" cy="2787.4" rx="43" ry="42"/>
|
|
93
|
+
<path class="st7" d="M7064,5377.8c29.3-65.3,327,61,294,124C7325,5564.8,7029,5455.8,7064,5377.8z"/>
|
|
86
94
|
</g>
|
|
87
95
|
<g id="light">
|
|
88
|
-
|
|
96
|
+
|
|
97
|
+
<linearGradient id="broken-light_1_" gradientUnits="userSpaceOnUse" x1="7173.731" y1="183.5068" x2="8583.0352" y2="2961.5635" gradientTransform="matrix(0.8192 0 0 -0.8192 0.1808 8193.8193)">
|
|
89
98
|
<stop offset="0" style="stop-color:#F6F6F6;stop-opacity:0"/>
|
|
90
99
|
<stop offset="1" style="stop-color:#F6F6F6;stop-opacity:0.2"/>
|
|
91
100
|
</linearGradient>
|
|
92
|
-
<polygon class="
|
|
101
|
+
<polygon id="broken-light" class="st12" points="6411,5062.7 8025.9,5690.8 7321.8,9738.4 3582,8024.1 "/>
|
|
93
102
|
|
|
94
|
-
<linearGradient id="
|
|
103
|
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="945.0161" y1="-214.8044" x2="2531.571" y2="2484.105" gradientTransform="matrix(0.4502 -0.6844 -0.6844 -0.4502 3178.9104 8803.6689)">
|
|
95
104
|
<stop offset="0" style="stop-color:#F6F6F6;stop-opacity:0"/>
|
|
96
105
|
<stop offset="1" style="stop-color:#F6F6F6;stop-opacity:0.2"/>
|
|
97
106
|
</linearGradient>
|
|
98
|
-
<polygon class="
|
|
107
|
+
<polygon class="st13" points="1115.3,5835 2527.5,4831 6122.4,7781.1 2008.2,10001.4 "/>
|
|
99
108
|
</g>
|
|
100
109
|
<g id="doctor">
|
|
101
110
|
<g id="head">
|
|
102
|
-
<path class="
|
|
103
|
-
|
|
104
|
-
c2.6-96.1-11.4-1119-11.4-
|
|
111
|
+
<path class="st14" d="M4295,5838c249.9-4.4,281,139.9,285.7,409.7c4.8,269.7,6.7,523,6.7,523s139-16.8,149.9,97.2
|
|
112
|
+
c10.9,114-124.6,128.3-150.5,107.6l6.6,291.7c0,0,21.4,345.7-254.2,344.9c-275.5-0.8-285.4-236.7-282.7-332.8
|
|
113
|
+
c2.6-96.1-11.4-1119.2-11.4-1119.2S4021.2,5842.8,4295,5838z"/>
|
|
105
114
|
<g id="eyes">
|
|
106
|
-
<
|
|
107
|
-
<
|
|
115
|
+
<ellipse cx="4122.8" cy="6607.7" rx="53.5" ry="53.5"/>
|
|
116
|
+
<ellipse cx="4354.2" cy="6608.1" rx="53.5" ry="53.5"/>
|
|
108
117
|
</g>
|
|
109
|
-
<path class="st4" d="M4044.7,
|
|
110
|
-
C4125.6,
|
|
111
|
-
<path class="
|
|
112
|
-
c0,0-105.7-90.4-279.3-104.5S4045.4,
|
|
113
|
-
<path class="
|
|
114
|
-
c0,0,19.8,263,290.4,262.6c270.7-0.4,268.1-334.4,260.1-390.
|
|
115
|
-
c9-24.6,61.9-56,72.1-85.5L4589.7,
|
|
118
|
+
<path class="st4" d="M4044.7,6213.8c0,0-48.2-367.9,239.6-378.4c321.8-11.7,294.5,262.6,296.4,442.1c0,0-128-91.7-291.6-100.3
|
|
119
|
+
C4125.6,6168.5,4044.7,6213.8,4044.7,6213.8z"/>
|
|
120
|
+
<path class="st9" d="M4045.4,6240.7l-1.9-30.3c0,0,116.9-66.4,265.7-43.8c148.9,22.6,245.3,72.3,273.2,100l1.3,37.3
|
|
121
|
+
c0,0-105.7-90.4-279.3-104.5S4045.4,6240.7,4045.4,6240.7z"/>
|
|
122
|
+
<path class="st15" d="M4589.7,6708.8c0,0-64.3,125.4-296.7,120.7c-232.4-4.7-242.8-34-242.8-34l-1.2,558.4
|
|
123
|
+
c0,0,19.8,263,290.4,262.6c270.7-0.4,268.1-334.4,260.1-390.9c0,0-72.5-27.8-81.2-115.3c-8.7-87.5-16.3-232.5,0.3-277.7
|
|
124
|
+
c9-24.6,61.9-56,72.1-85.5L4589.7,6708.8z"/>
|
|
116
125
|
</g>
|
|
117
126
|
<g id="body">
|
|
118
|
-
<path class="
|
|
119
|
-
<path class="st4" d="M3872,
|
|
120
|
-
c0,0-111,226-403,
|
|
121
|
-
<path class="
|
|
122
|
-
C3954,
|
|
127
|
+
<path class="st14" d="M3909,7804.1c0,0,63-82,400-88s437,64,437,64s-160,199-437,214C4032,8009.1,3909,7804.1,3909,7804.1z"/>
|
|
128
|
+
<path class="st4" d="M3872,7804.1c0,0-788,297-840,1102.2c-52,805.1,266.1,1095.2,266.1,1095.2h2023.6
|
|
129
|
+
c0,0,409.3-369.1,327.3-989.1s-153-969.1-937-1231.2c0,0-111,226-403,224C4017,8003.1,3872,7804.1,3872,7804.1z"/>
|
|
130
|
+
<path class="st9" d="M3845,7812.1l88-34c0,0,139,175,371,164s341-161,366-196l88,31c0,0-105,263.5-466,272
|
|
131
|
+
C3954,8057.1,3845,7812.1,3845,7812.1z"/>
|
|
123
132
|
</g>
|
|
124
|
-
<path id="hand_x5F_1_1_" class="st4" d="M3582,
|
|
125
|
-
"/>
|
|
126
|
-
<path id="hand_x5F_2" class="st4" d="M5176,
|
|
133
|
+
<path id="hand_x5F_1_1_" class="st4" d="M3582,8024.1c0,0-676,189.5-896,1055.2c-122,480.1,23.2,922.1,23.2,922.1l52.8,128l782,12
|
|
134
|
+
L3582,8024.1z"/>
|
|
135
|
+
<path id="hand_x5F_2" class="st4" d="M5176,8067.1c0,0,649,267,768,1076.2s0,1150.2,0,1150.2h-868L5176,8067.1z"/>
|
|
127
136
|
</g>
|
|
128
137
|
</svg>
|