western-world 3.0.258 → 3.0.261
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/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/scss/cells/auction_started.scss +104 -1
- package/src/scss/cells/hijacking.scss +116 -1
- package/src/svg/cells/auction_started.svg +129 -172
- package/src/svg/cells/hijacking.svg +109 -87
package/package.json
CHANGED
|
@@ -1 +1,104 @@
|
|
|
1
|
-
|
|
1
|
+
.animated {
|
|
2
|
+
.auction_started {
|
|
3
|
+
#lower_x5F_jaw {
|
|
4
|
+
animation-name: lowerJawAnimation;
|
|
5
|
+
animation-duration: 2s;
|
|
6
|
+
animation-timing-function: ease-in-out;
|
|
7
|
+
animation-iteration-count: infinite;
|
|
8
|
+
animation-direction: alternate;
|
|
9
|
+
transform-origin: 1656px 4387px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#tongue {
|
|
13
|
+
animation-name: tongueAnimation;
|
|
14
|
+
animation-duration: 0.2s;
|
|
15
|
+
animation-timing-function: ease-in-out;
|
|
16
|
+
animation-iteration-count: infinite;
|
|
17
|
+
animation-direction: alternate;
|
|
18
|
+
transform-origin: 1656px 4387px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#fingers path {
|
|
22
|
+
& {
|
|
23
|
+
animation-name: fingerAnimation;
|
|
24
|
+
animation-duration: 0.5s;
|
|
25
|
+
animation-timing-function: ease-in-out;
|
|
26
|
+
animation-iteration-count: infinite;
|
|
27
|
+
animation-direction: alternate;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
&:nth-child(1) {
|
|
31
|
+
animation-delay: 0.1s;
|
|
32
|
+
transform-origin: 2807px 5562px;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:nth-child(2) {
|
|
36
|
+
animation-delay: 0.2s;
|
|
37
|
+
transform-origin: 2748px 5650px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
&:nth-child(3) {
|
|
41
|
+
animation-delay: 0.3s;
|
|
42
|
+
transform-origin: 2691px 5706px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
&:nth-child(4) {
|
|
46
|
+
animation-delay: 0.1s;
|
|
47
|
+
transform-origin: 3046px 5078px;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
&:nth-child(5) {
|
|
51
|
+
animation-delay: 0.2s;
|
|
52
|
+
transform-origin: 3020px 5151px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&:nth-child(6) {
|
|
56
|
+
animation-delay: 0.3s;
|
|
57
|
+
transform-origin: 2959px 5219px;
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
#person {
|
|
62
|
+
animation-name: personAnimation;
|
|
63
|
+
animation-duration: 20s;
|
|
64
|
+
animation-iteration-count: 1;
|
|
65
|
+
animation-fill-mode: forwards;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
@keyframes lowerJawAnimation {
|
|
71
|
+
0% {
|
|
72
|
+
transform: rotate(-5deg);
|
|
73
|
+
}
|
|
74
|
+
100% {
|
|
75
|
+
transform: rotate(5deg);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
@keyframes tongueAnimation {
|
|
80
|
+
0% {
|
|
81
|
+
transform: rotate(-1deg);
|
|
82
|
+
}
|
|
83
|
+
100% {
|
|
84
|
+
transform: rotate(1deg);
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@keyframes fingerAnimation {
|
|
89
|
+
0% {
|
|
90
|
+
transform: rotate(-5deg);
|
|
91
|
+
}
|
|
92
|
+
100% {
|
|
93
|
+
transform: rotate(10deg);
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@keyframes personAnimation {
|
|
98
|
+
0% {
|
|
99
|
+
transform: translateX(-500px);
|
|
100
|
+
}
|
|
101
|
+
100% {
|
|
102
|
+
transform: translateX(450px);
|
|
103
|
+
}
|
|
104
|
+
}
|
|
@@ -1 +1,116 @@
|
|
|
1
|
-
|
|
1
|
+
.animated {
|
|
2
|
+
.hijacking {
|
|
3
|
+
#arm_1_ {
|
|
4
|
+
animation-name: handAnimation;
|
|
5
|
+
animation-duration: 2s;
|
|
6
|
+
animation-timing-function: ease-in-out;
|
|
7
|
+
animation-iteration-count: infinite;
|
|
8
|
+
animation-direction: alternate;
|
|
9
|
+
transform-origin: 4546px 6722px;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
#wheel {
|
|
13
|
+
animation-name: wheelAnimation;
|
|
14
|
+
animation-duration: 2s;
|
|
15
|
+
animation-timing-function: ease-in-out;
|
|
16
|
+
animation-iteration-count: infinite;
|
|
17
|
+
animation-direction: alternate;
|
|
18
|
+
transform-origin: 3346px 6609px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
#hand_1_ {
|
|
22
|
+
animation-name: handWithGunAnimation;
|
|
23
|
+
animation-duration: 5s;
|
|
24
|
+
animation-timing-function: linear;
|
|
25
|
+
animation-iteration-count: infinite;
|
|
26
|
+
transform-origin: 3346px 6609px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
#fire {
|
|
30
|
+
display: block;
|
|
31
|
+
animation-name: fireAnimation;
|
|
32
|
+
animation-duration: 5s;
|
|
33
|
+
animation-timing-function: linear;
|
|
34
|
+
animation-iteration-count: infinite;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
#pupil {
|
|
38
|
+
animation-name: pupilAnimation;
|
|
39
|
+
animation-duration: 5s;
|
|
40
|
+
animation-timing-function: linear;
|
|
41
|
+
animation-iteration-count: infinite;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
@keyframes handAnimation {
|
|
47
|
+
0% {
|
|
48
|
+
transform: rotate(0deg);
|
|
49
|
+
}
|
|
50
|
+
100% {
|
|
51
|
+
transform: rotate(10deg);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
@keyframes wheelAnimation {
|
|
56
|
+
0% {
|
|
57
|
+
transform: rotate(0deg);
|
|
58
|
+
}
|
|
59
|
+
100% {
|
|
60
|
+
transform: rotate(7deg);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@keyframes handWithGunAnimation {
|
|
65
|
+
0% {
|
|
66
|
+
transform: translateY(0px);
|
|
67
|
+
}
|
|
68
|
+
50% {
|
|
69
|
+
transform: translateY(0px);
|
|
70
|
+
}
|
|
71
|
+
51% {
|
|
72
|
+
transform: translateY(200px);
|
|
73
|
+
}
|
|
74
|
+
52% {
|
|
75
|
+
transform: translateY(0px);
|
|
76
|
+
}
|
|
77
|
+
100% {
|
|
78
|
+
transform: translateY(0px);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@keyframes fireAnimation {
|
|
83
|
+
0% {
|
|
84
|
+
opacity: 0;
|
|
85
|
+
}
|
|
86
|
+
50% {
|
|
87
|
+
opacity: 0;
|
|
88
|
+
}
|
|
89
|
+
51% {
|
|
90
|
+
opacity: 1;
|
|
91
|
+
}
|
|
92
|
+
52% {
|
|
93
|
+
opacity: 0;
|
|
94
|
+
}
|
|
95
|
+
100% {
|
|
96
|
+
opacity: 0;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@keyframes pupilAnimation {
|
|
101
|
+
0% {
|
|
102
|
+
transform: translate(0px, 0px);
|
|
103
|
+
}
|
|
104
|
+
80% {
|
|
105
|
+
transform: translate(0px, 0px);
|
|
106
|
+
}
|
|
107
|
+
85% {
|
|
108
|
+
transform: translate(30px, -70px);
|
|
109
|
+
}
|
|
110
|
+
95% {
|
|
111
|
+
transform: translate(30px, -70px);
|
|
112
|
+
}
|
|
113
|
+
100% {
|
|
114
|
+
transform: translate(0px, 0px);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
@@ -1,26 +1,26 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
2
|
<!-- Generator: Adobe Illustrator 24.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
-
<svg version="1.1" id="
|
|
3
|
+
<svg version="1.1" id="main_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
4
|
viewBox="0 0 8192 8192" style="enable-background:new 0 0 8192 8192;" xml:space="preserve">
|
|
5
5
|
<style type="text/css">
|
|
6
6
|
.st0{fill:url(#SVGID_1_);}
|
|
7
|
-
.st1{fill:#
|
|
7
|
+
.st1{fill-rule:evenodd;clip-rule:evenodd;fill:#51FF00;stroke:#003301;stroke-width:163.84;stroke-miterlimit:3.2768;}
|
|
8
8
|
.st2{fill:#FFD37B;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
|
|
9
|
-
.st3{fill:#
|
|
10
|
-
.st4{fill:#
|
|
11
|
-
.st5{fill:#
|
|
12
|
-
.st6{
|
|
13
|
-
.st7{fill:#
|
|
14
|
-
.st8{
|
|
15
|
-
.st9{
|
|
16
|
-
.st10{fill:#
|
|
17
|
-
.st11{
|
|
18
|
-
.st12{
|
|
19
|
-
.st13{fill
|
|
9
|
+
.st3{fill:#FFFFFF;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
|
|
10
|
+
.st4{fill:#4C4C4C;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
|
|
11
|
+
.st5{fill:#514AD3;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
|
|
12
|
+
.st6{opacity:0.2;}
|
|
13
|
+
.st7{fill:#FF1800;stroke:#2B0101;stroke-width:16.384;stroke-miterlimit:3.2768;}
|
|
14
|
+
.st8{fill:#AF0000;stroke:#000000;stroke-width:16.384;stroke-miterlimit:3.2768;}
|
|
15
|
+
.st9{opacity:0.1;}
|
|
16
|
+
.st10{fill:#FFFFFF;stroke:#000000;stroke-width:8.192;stroke-miterlimit:3.2768;}
|
|
17
|
+
.st11{fill:#BC0000;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
|
|
18
|
+
.st12{opacity:0.3;}
|
|
19
|
+
.st13{fill:#FFFFFF;}
|
|
20
20
|
</style>
|
|
21
21
|
<g id="background">
|
|
22
22
|
|
|
23
|
-
<radialGradient id="SVGID_1_" cx="
|
|
23
|
+
<radialGradient id="SVGID_1_" cx="7519.1167" cy="9481.9375" r="7473.0962" fx="8714.1406" fy="9160.457" gradientTransform="matrix(0.8192 0 0 0.8192 -653.0496 -3612)" gradientUnits="userSpaceOnUse">
|
|
24
24
|
<stop offset="0" style="stop-color:#19A800"/>
|
|
25
25
|
<stop offset="1.475382e-02" style="stop-color:#18A500"/>
|
|
26
26
|
<stop offset="0.2513" style="stop-color:#107401"/>
|
|
@@ -31,169 +31,126 @@
|
|
|
31
31
|
</radialGradient>
|
|
32
32
|
<rect class="st0" width="8192" height="8192"/>
|
|
33
33
|
</g>
|
|
34
|
-
<
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
<
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
0,
|
|
58
|
-
|
|
59
|
-
l-136,29.7L0,3999.3v1311.3l179-119.3l141.6-89.4l113.6-68.9l98.7-61.4l107-54l114.7-44.7l91.3-26.1l111.7-16.8l70.8,1.9l85.7,9.3
|
|
60
|
-
l85.7,41.6l80.1,51.5l54,46.5l63.3,68.9l50.3,63.3l61.4,78.2l83.8,93.1l85.7,100.6l54,70.8l51.5,65.2l52.8,67.1l324.1-182.5
|
|
61
|
-
c0,0-123-160.2-115.5-160.2s-56.5-96.8-56.5-96.8l-54-89.4l-119.8-162l-69.5-48.4l-29.8-52.2l8.4-126.6l405.1,245.8l49.6,95
|
|
62
|
-
l31,59.6l30.1,59.6l45.6,61.4l18.6,31.7l137.9-76.3l106.2-63.3l67.1-44.7l-65.2-85.7l-80.1-70.1l-74.2-55.5L1846,4349
|
|
63
|
-
L1279.8,4056.9z"/>
|
|
64
|
-
<g id="jacket_blicks">
|
|
65
|
-
<path class="st5" d="M919.1,4827.1l-37.3-84.1l-12.5-82.6v-115.8l6.2-59.3l18.6-43.5l16.1-28.6l14.9-24.8L950,4350l-80.7,52.2
|
|
66
|
-
l-27.3,42.2l-16.1,42.2l-8.7,47.2v63.3v54.6l11.1,44.7l6.2,31L791,4705l-46-37.3l-44.7-37.3c0,0-42.2-43.2-42.2-42
|
|
67
|
-
c0,1.1-27.3-41.1-27.3-41.1l-27.3-54.6v64.6l13.7,48.4l29.8,57.2l37.3,58.3l38.5,41.6l54,47.8l45.3,28.6L919.1,4827.1z"/>
|
|
68
|
-
<path class="st5" d="M530.4,4768.5l-58.3-37.3c0,0-23.6-33.5-23.6-37.3s0-39.7,0-39.7V4617l16.1,32.3l24.8,36l32.3,42.2l37.3,41
|
|
69
|
-
H530.4z"/>
|
|
70
|
-
<polygon class="st5" points="1655.4,4628.2 1574.7,4636.8 1486.6,4660.4 1425.7,4689.6 1373.6,4720.1 1325.8,4749.8
|
|
71
|
-
1275.5,4788.5 1245.7,4814.1 1278,4743 1315.2,4707.6 1368.6,4671.7 1434.4,4641.8 1497.7,4622.6 1412.1,4622.6 1315.2,4622.6
|
|
72
|
-
1245.7,4635.6 1178.6,4653 1117.8,4681.6 1083,4699.6 1145.1,4631.8 1207.2,4600.9 1289.1,4575.7 1384.8,4566.1 1460.5,4561.1
|
|
73
|
-
1506.4,4561.1 1531.2,4544.7 1537.5,4523.9 1531.2,4492.8 1530,4453.1 1541.2,4413.4 1546.2,4362.4 1569.8,4328.9 1640.5,4328.9
|
|
74
|
-
"/>
|
|
34
|
+
<path class="st1" d="M4501.8,3919.7c0,0-228.3-860.2,610.8-1157.3s1549.9,94.6,1720.5,536.9s-175,883.3-189.1,1161.7
|
|
35
|
+
c-14.1,278.3-49.7,416.8,120.1,464.1s288-231.6,239.5-859.1l918.9,7.1c0,0,84.6,1557.6-564.2,1854.5
|
|
36
|
+
c-648.8,296.9-1268.8-17.5-1305.9-416.6c0,0-362.2,703.5-1168.2,402.3c-806.1-301.2-721.2-1342.1-193.7-1631.1
|
|
37
|
+
s1048.9-28.3,1173.2-261.7c124.3-233.4,72.7-587.6-165.2-609.1s-343.8,255-377.3,504.8L4501.8,3919.7z M5727.3,4672.3
|
|
38
|
+
c0,0-604.2,90.9-621.5,243.3c-17.4,152.3,5.4,316,298.7,313.8c293.3-2.3,368.4-145.3,336.5-304.7
|
|
39
|
+
C5709.1,4765.3,5727.3,4672.3,5727.3,4672.3z"/>
|
|
40
|
+
<g id="person">
|
|
41
|
+
<g id="hands">
|
|
42
|
+
<path class="st2" d="M2266.8,5597c0,0,82.5,103.8,223.7-4.9c141.1-108.8,335.6-97.4,386.8-63.3c51.2,34.1-135.3,290.3-195.2,225.9
|
|
43
|
+
c-59.9-64.4-112.6,15.9-154.8,52.3c-42.2,36.4-230.2,169.7-310.5,56.1c-80.3-113.6-61.4-153.1-61.4-153.1L2266.8,5597z"/>
|
|
44
|
+
<path class="st2" d="M2493.3,5198.3c0,0-2.2,168.9,119.8,152.5c122-16.4,96.2-40.6,199.3-1.7c103.1,38.9,101.6,146.3,188,113.7
|
|
45
|
+
c86.4-32.6-91.7-124.3-71.2-165.2s75.8,0,136.4-112.2c60.6-112.2,62.9-157.8-26.5-143.7c-89.4,14.1-194,81.6-236.5,127
|
|
46
|
+
c-42.4,45.5-172.9-30.1-192.5-57.6L2493.3,5198.3z"/>
|
|
47
|
+
<g id="fingers">
|
|
48
|
+
<path class="st2" d="M2832.1,5514.6c0,0,271.2,40.5,234.9,230.2c-19.3,101.2-172.8,148-128.3,42.4
|
|
49
|
+
c60.2-142.9-53.5-171.4-152.4-169.6"/>
|
|
50
|
+
<path class="st2" d="M2772.3,5621.2c0,0,158.4-8.3,169.8,199.3c11.4,207.7-120.5,188.7-128.8,135.7
|
|
51
|
+
c-8.3-53.1,62.8-94.6,23.5-197.8c-30.3-79.6-115.2-69-115.2-69"/>
|
|
52
|
+
<path class="st2" d="M2714.7,5686.8c0,0,112.2,5.9,95.5,155.1s-119.7,240.9-175.1,171.2c-55.3-69.7,62.1-73.9,84.1-175.8
|
|
53
|
+
c14.4-66.7-50.3-94.6-50.3-94.6"/>
|
|
54
|
+
<path class="st2" d="M3054.2,5036.1c0,0,450.4-52.8,320.6,190.8c-72.8,136.6-137.9,16.9-87.9-60.5s-216.5-30.3-216.5-30.3"/>
|
|
55
|
+
<path class="st2" d="M3026.2,5118c0,0,339.9-70.5,393.3,123.9s-197.8,191-156.9,106.9c40.9-84.1,74-166.2-127.3-156.7
|
|
56
|
+
c-116,5.5-139.8,22.5-139.8,22.5"/>
|
|
57
|
+
<path class="st2" d="M2981.8,5197.5c0,0,281.9-117.1,352.4,98.9s-81.9,191-113.7,172.8c-31.8-18.2,58-184.2-69.3-206.9
|
|
58
|
+
c-127.3-22.7-195.8,11.2-195.8,11.2"/>
|
|
75
59
|
</g>
|
|
76
|
-
<polygon class="st3" points="1988.9,5621.5 1952.2,5643.9 1934.9,5675.6 1934.9,5703.5 1950.4,5725.9 1974.6,5735.1
|
|
77
|
-
2002.5,5735.1 2031.4,5707.2 2039.7,5669.9 2039.7,5645.8 2018,5621.5 "/>
|
|
78
|
-
<polygon class="st1" points="603.7,4935.8 643.4,5010.6 660.8,5083.9 675.7,5168.3 675.7,5242.8 765.1,5215.5 765.1,5113.7
|
|
79
|
-
745.2,5010.6 728.5,4959.7 684.4,4900.1 "/>
|
|
80
|
-
<polygon class="st3" points="479.5,5655.1 491.9,5678.4 521.7,5694.8 544.1,5678.4 544.1,5645.1 511.8,5635.2 "/>
|
|
81
|
-
<polygon class="st3" points="659.5,5729.6 677,5758.2 708,5758.2 736.5,5735.8 722.9,5694.8 684.4,5694.8 "/>
|
|
82
|
-
<polygon class="st3" points="863.2,5739.5 878.1,5758.2 907.9,5758.2 936.5,5739.5 936.5,5703.5 917.8,5678.7 885.6,5678.7
|
|
83
|
-
863.2,5703.5 "/>
|
|
84
|
-
<polygon class="st3" points="1053.2,5678.7 1073.1,5694.8 1094.2,5702.3 1132.7,5678.7 1132.7,5642.6 1116.5,5611.6
|
|
85
|
-
1092.9,5606.6 1058.2,5625.3 1045.7,5654.4 "/>
|
|
86
|
-
<polygon class="st3" points="1251.9,5588 1286.6,5576.9 1307.7,5550.7 1300.3,5523.5 1292.9,5512.2 1261.8,5512.2 1238.2,5538.4
|
|
87
|
-
1238.2,5568.2 "/>
|
|
88
|
-
<path class="st3" d="M1382.2,5406.7l18.6,11.1l22.4-11.1c0,0,9.9-14.9,9.9-18.6s-6.2-26.1-6.2-26.1l-19.3-7.5l-25.5,13.7
|
|
89
|
-
L1382.2,5406.7L1382.2,5406.7z"/>
|
|
90
60
|
</g>
|
|
91
|
-
<g id="
|
|
92
|
-
<
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
<
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
<
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
<
|
|
136
|
-
|
|
137
|
-
<
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
61
|
+
<g id="jacket_1_">
|
|
62
|
+
<path class="st3" d="M1639.2,5249.8c0,0,50,573-725.5,828.8c-413.3,136.3-1320.8-346.7-1320.8-346.7l-22.7-422.9
|
|
63
|
+
C-429.8,5309,1067.8,3887.1,1639.2,5249.8z"/>
|
|
64
|
+
<path class="st4" d="M1406.2,5416.7c-72.8-1.4-49.5-63.2,0.3-64.4C1456.2,5351,1450.5,5417.5,1406.2,5416.7z"/>
|
|
65
|
+
<path class="st4" d="M1272.9,5512.2c-53.2-1-69.1,74-7.7,74.7C1326.6,5587.5,1319.3,5513.1,1272.9,5512.2z"/>
|
|
66
|
+
<path class="st4" d="M1093.5,5609.1c-61.4,1.1-61,88.4-5.5,89.1C1143.6,5698.9,1154.9,5607.9,1093.5,5609.1z"/>
|
|
67
|
+
<path class="st4" d="M899.8,5673.9c-57.5-1.9-59.8,86.4-3,84.1C953.7,5755.7,967.6,5676.2,899.8,5673.9z"/>
|
|
68
|
+
<path class="st4" d="M702.5,5687.5c-64.8-1.5-56.6,68.6-5.6,71.8C747.9,5762.6,751.4,5688.7,702.5,5687.5z"/>
|
|
69
|
+
<path class="st4" d="M519.4,5635.2c-62.3-13.5-50.4,53.4-7.6,55.7C554.7,5693.2,545.6,5640.9,519.4,5635.2z"/>
|
|
70
|
+
<path class="st3" d="M2127.3,5414.6l-263.2,152.6l-1.3,148.8l108.1,136.9c0,0,17.7,26.4,57.9,0c40.2-26.4,236-178,276.9-273.5
|
|
71
|
+
c0,0-86.9-119.7-164.7-166.7L2127.3,5414.6z"/>
|
|
72
|
+
<path class="st3" d="M2326.9,5210.4c0,0-8.6,100.9,47.5,126.6c0,0,225.9-207.7,292.5-222.8l-57.7-67.1L2326.9,5210.4z"/>
|
|
73
|
+
<path class="st4" d="M2001.5,5621.2c-80.1-6.2-105.7,109.1-9.7,109.1C2087.9,5730.3,2040.9,5624.2,2001.5,5621.2z"/>
|
|
74
|
+
<path class="st3" d="M592.6,4941.4c0,0,106.9,92.8,79.6,302.9l98.5-29.3c0,0,11.1-225.9-94.5-309.2L592.6,4941.4z"/>
|
|
75
|
+
<path class="st4" d="M171.4,5186.9c0,0,30.2,149.1,75.6,212.5c45.4,63.4,125,137.7,81.8,170.3c-43.2,32.6-419.6,228.4-465.1,291.3
|
|
76
|
+
l-270.9-129.1l-15.9-295.6C-423,5436.3,100.5,5225.6,171.4,5186.9z"/>
|
|
77
|
+
<path class="st5" d="M-454.1,4123.6c0,0,941.1-237.7,1233.1-281.2c145.1-21.6,278.8,11.9,561.6,287.2
|
|
78
|
+
c171.3,166.7,367.5,84.9,721.9,405.9c354.4,320.9,460.1,360.7,552.2,501.7c0,0-225.1,151.2-313.8,184.2c0,0-281.9-564.1-515-565.7
|
|
79
|
+
c-126.1-0.9-94.7,152.8-25.2,201.2s403.5,544.4,403.5,544.4l-329.9,189.5c0,0-310.2-384.7-536.5-646.4
|
|
80
|
+
c-158.7-183.5-424.1-132.3-901.6,112C111.3,5202.1-423,5609.1-423,5609.1L-454.1,4123.6z"/>
|
|
81
|
+
</g>
|
|
82
|
+
<g id="shadows" class="st6">
|
|
83
|
+
<path d="M1607.4,4285c0,0-68.2,22.7-75,128.1c-6.8,105.3,24.3,152-38.3,147c-62.5-4.9-286.1-16.7-418,142.5
|
|
84
|
+
c0,0,131.9-97.8,408.5-79.6c0,0-188.7,38.7-237.2,190.2c0,0,88.7-100.3,279.7-161.2c112.2-35.8,138.7-7.8,138.7-7.8
|
|
85
|
+
S1512.7,4495.7,1607.4,4285z"/>
|
|
86
|
+
<path d="M941.6,4834.9c0,0-186.8-217.6,11-484.1c0,0-208.4,57.8-122.4,367c0,0-162.7-65.9-227.6-224c0,0,8,274.5,245.4,351.8
|
|
87
|
+
L941.6,4834.9z"/>
|
|
88
|
+
<path d="M565.5,4768.5c0,0-113.3-107.8-117-166.4C448.5,4602.1,413.5,4775.2,565.5,4768.5z"/>
|
|
89
|
+
</g>
|
|
90
|
+
<g id="face_2_">
|
|
91
|
+
<path id="tongue" class="st7" d="M1769.6,4380.8c0,0,90.5,74.2,256.7,163.7c259.7,140,412.2,39.8,414.3,112.9
|
|
92
|
+
c1.5,53.3-25.3,145.2-145,91.1c-119.7-54.1-125.3-57.5-245.6-100.9c-120.3-43.5-326-250.6-326-250.6L1769.6,4380.8z"/>
|
|
93
|
+
<path class="st8" d="M2336.7,4446.8c0,0,9.9,56.2-7.8,80c-17.7,23.7-458.8-84.4-537.6-135.4
|
|
94
|
+
C1791.3,4391.4,2154.9,4381.3,2336.7,4446.8z"/>
|
|
95
|
+
<path class="st2" d="M2560.1,3986.4c0,0,59.9,53.8,89.4,129.6c0,0,311.1,5.5,328.9,264.8c12.5,182.4-191.4,180.2-334.8,168.8
|
|
96
|
+
c-172.2-13.7-139.2-106.7-213-97.1c-73.9,9.7-322.5,1-489.7-47.7c-114.4-33.3-211.7-3.8-215.4,60.6
|
|
97
|
+
c-3.7,64.4-215.1,0.8-111.3-193.3C1718.1,4078.1,2433.5,3863.7,2560.1,3986.4z"/>
|
|
98
|
+
<path class="st9" d="M2228.5,4329.4c43.8,39.7,218.7,20.7,284.6-113.4s-128.1-183.4-209.2-146.2S2123.5,4234.3,2228.5,4329.4z"/>
|
|
99
|
+
<path class="st3" d="M2429.7,4098.3c0,0-132.9-25.9-192.3,109.6c-10.6,24.3,90.2,119.2,181.9,59.1
|
|
100
|
+
C2508.9,4208.5,2429.7,4098.3,2429.7,4098.3z"/>
|
|
101
|
+
<path d="M2385.7,4185.3c-18.6,9.1-9.9,45,20,30.2C2431.9,4202.6,2411.9,4172.6,2385.7,4185.3z"/>
|
|
102
|
+
<path d="M2657.8,4397c0,0-28.8-24.7-81.1-24.9c-52.3-0.1-74.8,54.9-39.9,52.2c34.9-2.8,46-10.9,68,8.8c22,19.7,30.6-3.8,24.3-14.9
|
|
103
|
+
c-6.3-11.1-4-15.9,11.6-13.4C2656.3,4407.3,2662.6,4408.8,2657.8,4397z"/>
|
|
104
|
+
<g id="teeth_2_">
|
|
105
|
+
<path class="st10" d="M2305.4,4521.1c0,0-9.9,64.6-51.5,59.7c-41.7-4.9-10.8-67.1-10.8-67.1S2280.4,4498.8,2305.4,4521.1z"/>
|
|
106
|
+
<path class="st10" d="M2209.9,4513.4c0,0-10.2,48.7-49,43.8c-38.8-4.9-5.3-61.6-5.3-61.6S2190.7,4484.4,2209.9,4513.4z"/>
|
|
107
|
+
<path class="st10" d="M2114.6,4488.5c0,0-3,50.7-40.4,43.9c-37.3-6.8-8.9-60.4-8.9-60.4S2101.7,4462,2114.6,4488.5z"/>
|
|
108
|
+
<path class="st10" d="M2015.3,4461.8c0,0-12.1,33.9-39.6,23.3c-27.5-10.6-12.3-41.3-12.3-41.3S2005.3,4431.1,2015.3,4461.8z"/>
|
|
109
|
+
</g>
|
|
110
|
+
</g>
|
|
111
|
+
<g id="lower_x5F_jaw">
|
|
112
|
+
<path id="gums" class="st8" d="M2200.8,4864.1c0,0,25.9-4.5,30.4-34.9s-30.6-32.1-91.4-34.4c-60.9-2.2-268.8-107.5-324.3-183.9
|
|
113
|
+
s-96.7-141.2-96.7-141.2s-19.8,182.8,163.3,315.4C2065.2,4917.9,2200.8,4864.1,2200.8,4864.1z"/>
|
|
114
|
+
<path id="jaw" class="st2" d="M1734.7,4433.6c0,0-48.5,107,67.3,262.7s323.2,173.9,396.8,172.7c73.6-1.1-2.6,67.8-96.9,113.5
|
|
115
|
+
c-94.3,45.7-115.7,23.8-165.8-23.8c-50.1-47.6-273.9-269.1-346.3-421.7c-36.5-76.8,1-208.1,1-208.1"/>
|
|
116
|
+
<g id="teeth_1_">
|
|
117
|
+
<path class="st10" d="M2209.5,4823.9c0,0,12.1-43.6-1.5-64.4s-35.8-10.5-50.1,17.6c-10.1,19.9-12.8,33-12.8,33
|
|
118
|
+
S2169,4842.5,2209.5,4823.9z"/>
|
|
119
|
+
<path class="st10" d="M2130.6,4807c0,0,23.2-59.6,3.9-69.3c-19.3-9.7-46.6,11.7-57,50.8c0,0,4.2,20.3,20.3,25.8
|
|
120
|
+
S2130.6,4807,2130.6,4807z"/>
|
|
121
|
+
<path class="st10" d="M2043,4773.3c0,0,33.1-53.5,6.7-64.5c-26.4-10.9-49,46.1-49,46.1s-0.6,15.2,14.2,22.2
|
|
122
|
+
C2029.7,4784.1,2043,4773.3,2043,4773.3z"/>
|
|
123
|
+
<path class="st10" d="M1977.8,4736.2c0,0,35.4-57.3,10.3-74.8s-55,47.5-55,47.5s1.3,20.8,16.5,27.4
|
|
124
|
+
C1964.7,4743,1977.8,4736.2,1977.8,4736.2z"/>
|
|
125
|
+
<path class="st10" d="M1897.1,4690.9c0,0,39.6-56.7,18.4-70.4s-50,19.6-58.4,41.1c0,0,1.1,15.9,12.9,23.9
|
|
126
|
+
C1881.8,4693.4,1897.1,4690.9,1897.1,4690.9z"/>
|
|
127
|
+
<path class="st10" d="M1822.1,4617.3c0,0,43.3-38.2,18.4-65.5c-23.2-25.4-58.2,29.2-58.2,29.2s-3.6,18.8,9.3,29.7
|
|
128
|
+
C1804.5,4621.7,1822.1,4617.3,1822.1,4617.3z"/>
|
|
141
129
|
</g>
|
|
142
130
|
</g>
|
|
143
|
-
<g id="
|
|
144
|
-
<
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
1574.7,3827.9 1594.6,3937.7 1589,3965.7 1574.7,3975 1535,3965.7 1469.8,3907.9 1425.1,3848.4 1386,3801.7 1361.8,3781.3
|
|
151
|
-
1328.3,3777.6 1291,3798.1 1246.2,3848.4 1224,3913.6 1218.3,3975 1231.4,4038.3 1279.8,4116.6 1348.7,4180.5 1425.1,4224
|
|
152
|
-
1548,4284.2 1643,4299.1 1773.4,4299.1 1928,4284.2 2041.6,4260 2110.1,4209.7 2209.9,4137 2283.8,4083.1 2370.7,4047.7
|
|
153
|
-
2451.4,4029 2538.9,4016.2 2603.5,4033.2 2652.6,4068.1 2710.3,4096 2755,4096 2801.6,4081.2 2853.7,4042 2907.8,3989.9 "/>
|
|
154
|
-
<polygon class="st10" points="1607,3952.6 1624.4,3975 1657.9,4011 1693.9,4032.1 1763.5,4050.8 1869,4056.9 1973.3,4045.8
|
|
155
|
-
2113.6,4011 2211.8,3975 2260.2,3937.7 2297.4,3889.3 2318.5,3839.7 2328.5,3814.9 2345.7,3566.5 2314.8,3606.2 2275.7,3636
|
|
156
|
-
2240,3668.3 2173.3,3696.9 2106.2,3722.9 2023,3749 1939.8,3760.2 1849.2,3762.7 1778.4,3761.4 1705.1,3752.8 1651.8,3734.1
|
|
157
|
-
1607,3717.9 1574.7,3694.3 1561.1,3680.7 "/>
|
|
131
|
+
<g id="hat_1_">
|
|
132
|
+
<path class="st5" d="M1333.4,3777.6c-97.8-1.1-181.9,255.5-15.9,380.1c166,124.6,390.7,164.4,585.9,129.2
|
|
133
|
+
c195.1-35.2,383.9-255.8,577.1-268.3c193.3-12.5,271,245.2,483.6-109.1c109.8-183-257.4-471.2-360-179.3
|
|
134
|
+
c-47.5,135-264.6,0.9-264.6,0.9s1.2-470.6,210.7-748.9c106.1-140.9,24.3-436.5-760.9-341c-724.8,88.1-662.4,462.3-545.7,533.6
|
|
135
|
+
c116.7,71.2,317.5,336.5,345.4,738.2c7.6,109.6-68,72.7-151.3-45.5C1372.5,3775,1333.4,3777.6,1333.4,3777.6z"/>
|
|
136
|
+
<path class="st11" d="M1542.9,3668.3c0,0,100.9,134.3,432.8,86.6s377-202.5,377-202.5l-13.2,178.7c0,0,65.3,237.6-357.2,314.2
|
|
137
|
+
c-348.8,63.2-387.1-121.2-387.1-121.2S1564,3713.2,1542.9,3668.3z"/>
|
|
158
138
|
</g>
|
|
159
|
-
<g id="
|
|
160
|
-
<
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
<
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
<
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
<polygon id="blick_2_" class="st12" points="1381,3890.5 1345,3880.6 1328.8,3890.5 1312.7,3909.2 1305.2,3942.7 1311.5,3975
|
|
175
|
-
1320.1,4006.1 1326.4,4033.3 1314,4047 1282.9,4027.2 1251.9,3980 1239.4,3925.4 1249.4,3880.6 1280.4,3844.6 1310.2,3826
|
|
176
|
-
1345,3819.8 1392.2,3842.1 1412.1,3876.9 1404.6,3898 "/>
|
|
177
|
-
<path id="blick_1_" class="st12" d="M1552.4,4107.9l-6.2,43.5l14.9,38.7l29.8,33.8l43.5,18c0,0,54.6-2.5,64.6,0
|
|
178
|
-
c9.9,2.5,89.4-18,89.4-18l34.7-33.8v-37.5l-22.4-24.8l-31-19.9H1724l-39.4,7.5l-44.1,5l-23.6-3.7l-16.1-8.7l-18.6-11.9h-21.1
|
|
179
|
-
L1552.4,4107.9z"/>
|
|
180
|
-
<polygon id="blick" class="st12" points="1496.5,3239.9 1525,3254.8 1569.8,3247.3 1584.7,3217.6 1568.5,3195.2 1523.8,3187.8
|
|
181
|
-
1484.1,3202.7 "/>
|
|
182
|
-
<polygon id="jacat_blick" class="st12" points="786.2,4180.5 674.4,4190.1 603.7,4169.1 559,4131.5 559,4079.3 603.7,4016.2
|
|
183
|
-
672.6,3975 786.2,3975 860.7,4016.2 898,4056.9 898,4127.7 853.3,4169.1 "/>
|
|
139
|
+
<g id="blick_8_" class="st12">
|
|
140
|
+
<path class="st13" d="M1255.2,2971.6c-34,36.4-46,87.4,26.8,124.3c72.8,36.9,395.9,33.7,702.8-40.2s576.6-258.1,322.9-366.1
|
|
141
|
+
c-148.7-63.3-209.9,39.4-120.5,65.2c89.4,25.8,122.8,65.9-228.9,166c-351.7,100-524.7,104.5-590.4,50
|
|
142
|
+
C1332.3,2941.3,1279.1,2946.1,1255.2,2971.6z"/>
|
|
143
|
+
<path class="st13" d="M2479.7,2881.3c-57.9-7.2-29.6,82.7-50.8,114.5c-21.2,31.8-162.9,271.3-94.7,291
|
|
144
|
+
c68.2,19.7,56.1-112.2,141-240.3S2503.2,2884.2,2479.7,2881.3z"/>
|
|
145
|
+
<path class="st13" d="M2319.1,3396.8c-36.6-31.6-87.9,109.1-38.7,127.3C2329.7,3542.3,2352.4,3425.6,2319.1,3396.8z"/>
|
|
146
|
+
<path class="st13" d="M1932.5,3106.5c-63.8,5.8-33,177.7-44.3,268.7c-11.4,90.9-98.6,400.2,64.8,361.5
|
|
147
|
+
c129.6-30.7,169.8-43.2,112.8-204.6s-36.4-194.4-80.3-304.7C1941.6,3117.1,1990.9,3101.2,1932.5,3106.5z"/>
|
|
148
|
+
<path class="st13" d="M1495.5,3193.9c44.4-32.9,121.6,19.1,68.3,49.6C1510.4,3274,1459.3,3220.6,1495.5,3193.9z"/>
|
|
149
|
+
<path class="st13" d="M1327.7,4044.7c-34.2,48.9-103.8-105.3-53.1-184.1s156.9,13.6,128.1,41.7c-28.8,28-56.6-48.4-85.5,4.6
|
|
150
|
+
S1354.3,4006.8,1327.7,4044.7z"/>
|
|
151
|
+
<path class="st13" d="M1559.7,4097.6c-50.3,25.8-19.2,148.2,125.3,145.5s157.7-72.3,128.6-108.1c-46.2-56.8-143.4-5.5-187.4-22.2
|
|
152
|
+
C1582.2,4096.1,1577.8,4088.3,1559.7,4097.6z"/>
|
|
153
|
+
<path class="st13" d="M550.9,4111.5c-59.6-114.9,266.8-201.6,336.5-60.6C957.1,4191.8,614.6,4234.3,550.9,4111.5z"/>
|
|
184
154
|
</g>
|
|
185
|
-
<path class="st13" d="M4477.9,3941.5l841.9,23.6l6.2-109.3l12.4-95.6l27.4-82l37.2-82l45.9-74.4l48.5-49.7l68.2-31.1l62.1-17.4
|
|
186
|
-
h70.8l64.6,7.5l48.4,32.3l54.6,44.7l32.4,54.6l13.6,50.9l6.2,68.3l-8.7,129.1l-18.6,84.5l-28.6,88.1l-23.6,73.4l-21.1,35.9
|
|
187
|
-
l-27.3,18.7l-38.5,8.7h-109.3h-158.9l-217.3,13.6l-173.8,18.7l-125.5,29.8l-157.7,45.9l-122.9,60.8l-121.7,75.8l-72,65.8l-85.7,108
|
|
188
|
-
l-64.5,109.3l-32.3,116.8l-16.1,136.5v212.4l27.2,151.4l46,139.1l114.2,193.8l108,124.1l131.7,98.1l137.8,80.7l171.4,57.1l149,32.4
|
|
189
|
-
l149-8.8l202.4-50.9l185-81.9l106.8-74.5l103.1-98.1l70.7-85.7l55.9-79.5l33.5,144.1l47.2,90.6l100.6,94.3l106.8,83.3l139,59.6
|
|
190
|
-
l160.3,49.6l163.9,22.4h183.7l185.1-39.7l142.8-75.8l147.7-100.6l134.2-127.9l99.3-139.1l78.2-161.4l42.2-163.9l33.6-192.5
|
|
191
|
-
l18.6-224.7l23.6-233.5L7910,4350l12.5-276.9l-918.9-17.4l-3.7,161.4l-3.8,170.2l-12.3,196.2l-13.7,122.8l-16.2,82l-29.8,59.6
|
|
192
|
-
l-37.2,36l-46,27.3l-50.9,12.5l-59.6-2.5l-49.7-29.8l-31-63.3l-19.8-88.8l-5-126.1l17.3-121.6l29.9-127.9l53.4-161.5l69.5-158.9
|
|
193
|
-
l41-120.4l45.9-172.6v-208.7l-34.8-171.4l-59.5-131.5l-94.4-134.1l-149-144.1l-139.1-114.2l-131.7-69.6l-149-64.5l-156.4-22.4
|
|
194
|
-
l-293.1-19.9l-226,14.9l-149,19.9l-136.6,34.7l-121.6,57.1l-177.6,89.5l-123,85.7l-89.4,98l-65.7,98.2l-48.5,113l-33.5,135.3
|
|
195
|
-
l-14.9,121.7l-3.7,158.9L4477.9,3941.5z M5664.4,4690.9l-119.2,26l-82,14.9l-93.1,20.5l-89.5,18.6l-78.1,28l-61.5,48.4l-46.6,78.3
|
|
196
|
-
v78.2l18.6,93.1l52.2,70.7l83.8,52.2l130.4,9.4l139.7-22.4l128.5-61.4l70.8-80.2l28-96.8l-28-124.8l-9.3-78.3v-83.8L5664.4,4690.9z
|
|
197
|
-
"/>
|
|
198
155
|
</g>
|
|
199
156
|
</svg>
|