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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "western-world",
3
- "version": "3.0.258",
3
+ "version": "3.0.261",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1 +1,104 @@
1
- // TODO
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
- // TODO
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="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
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:#FFFFFF;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
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:#4C4C4C;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
10
- .st4{fill:#514AD3;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
11
- .st5{fill:#201284;}
12
- .st6{fill:#FF1800;stroke:#2B0101;stroke-width:16.384;stroke-miterlimit:3.2768;}
13
- .st7{fill:#AF0000;stroke:#000000;stroke-width:16.384;stroke-miterlimit:3.2768;}
14
- .st8{opacity:0.1;enable-background:new ;}
15
- .st9{fill:#FFFFFF;stroke:#000000;stroke-width:8.192;stroke-miterlimit:3.2768;}
16
- .st10{fill:#BC0000;stroke:#000000;stroke-width:32.768;stroke-miterlimit:3.2768;}
17
- .st11{opacity:0.3;}
18
- .st12{fill:#FFFFFF;}
19
- .st13{fill-rule:evenodd;clip-rule:evenodd;fill:#51FF00;stroke:#003301;stroke-width:163.84;stroke-miterlimit:3.2768;}
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="7120.5269" cy="7277.3477" r="7473.0962" fx="8315.5508" fy="6955.8672" gradientTransform="matrix(0.8192 0 0 0.8192 -326.5248 -1806)" gradientUnits="userSpaceOnUse">
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
- <g id="main">
35
- <g id="jacket">
36
- <polygon class="st1" points="1655.4,5230.4 1631.8,5441.5 1587.1,5545.8 1502.7,5699.7 1369.2,5846.3 1251.9,5938.2
37
- 1135.2,6010.2 966.2,6067.3 802.4,6104.6 586.3,6104.6 320.6,6064.9 126.9,6000.2 0,5928.2 0,5210.5 1018.4,4692.7 "/>
38
- <path class="st2" d="M2615.3,5117.4l59.6,38.5l46,11.1l46,6.2l58.3-16.1l37.3-39.7l58.3-39.7l70.8-26.1l78.2-9.9l86.9,13.7
39
- l57.1,21.1l47.2,42.2l34.7,54.6l19.9,57.1l7.5,49.6l-8.7,34.7l-27.3,19.9h-37.3c0,0-28.6-14.9-28.6-18.6s-13.7-38.5-13.7-38.5
40
- l-1.2-43.5l2.5-53.4l-21.1-33.5l-6.2,57.1l-8.7,55.9l-3.7,37.3l6.2,28.6l9.9,34.7l1.2,34.7l1.2,34.7l-22.4,26.1l-41,19.9
41
- l-34.7-13.7l-24.8-24.8l-8.7-43.5l-2.5-52.2l9.9-31l5-29.8l-7.5-22.4l-37.3-7.5l-32.3,16.1l-49.6,28.6l-19.9,24.8l-13.7,13.7
42
- l17.4,23.6l43.5,22.4l29.8,26.1l12.5,28.6l-7.5,27.3l-34.7,6.2l-47.2-22.4l-17.4-28.6l-34.7-43.5l-38.5-28.6l-44.7-11.1h-72h-68.3
43
- l-55.9,11.1l-42.2-3.7l-26.1-29.8l-17.4-41l-24.8-74.5L2615.3,5117.4z"/>
44
- <polygon class="st2" points="2257.7,5601.7 2321.7,5642.6 2366.9,5650.1 2417.9,5635.2 2493.3,5588 2561.9,5542.1 2651.3,5517.2
45
- 2751.9,5507.3 2820.2,5507.3 2874.8,5529.7 2918.3,5565.6 2968,5624.1 2997.8,5667.5 3012.7,5712.2 3005.2,5735.8 2984.1,5763.1
46
- 2961.7,5763.1 2958,5725.9 2945.6,5684.8 2907.1,5648.9 2863.7,5617.8 2941.9,5703.5 2976.6,5790.4 2976.6,5830.2 2961.7,5863.7
47
- 2939.4,5873.6 2908.3,5873.6 2889.7,5863.7 2877.3,5835.1 2873.6,5795.3 2858.7,5753.2 2822.6,5728.3 2786.7,5702.3
48
- 2812.7,5763.1 2833.9,5817.7 2842.5,5873.6 2837.5,5922.1 2823.9,5965.5 2792.9,6009 2750.6,6025.1 2712.1,6025.1 2676.2,6017.7
49
- 2664.9,5980.4 2687.3,5933.2 2709.7,5888.5 2717.1,5842.5 2708.4,5796.7 2693.5,5766.2 2664.9,5745.7 2629,5746.9 2584.2,5766.2
50
- 2545.7,5791.7 2493.3,5830.2 2424.1,5863.7 2364.5,5888.5 2321.7,5904.6 2268.9,5903.4 2230.4,5873.6 2201.8,5833.9 2172,5783
51
- 2134.8,5709.7 "/>
52
- <polygon class="st1" points="2157.1,5420.4 2199.3,5461.4 2247.7,5507.3 2283.8,5549.5 2308.6,5581.8 2275.7,5632.7 2208,5709.7
53
- 2134.8,5768.1 2069,5826.4 2027.9,5856.2 2001.9,5863.7 1979.5,5863.7 1862.8,5715.9 1862.8,5560.7 2128.5,5406.7 "/>
54
- <polygon class="st1" points="2321.7,5213.3 2328.5,5275.1 2349.5,5321 2376.9,5334.7 2557,5183.2 2641.3,5126.1 2664.9,5114.9
55
- 2592.6,5026.8 2321.7,5191.9 "/>
56
- <polygon class="st3" points="165.1,5200.6 221.3,5354.5 263.5,5429.1 330.5,5512.2 342.9,5550.2 315.6,5578.1 149.2,5678.7
57
- 0,5791.7 0,5270.2 "/>
58
- <path class="st4" d="M1279.8,4056.9L1115.9,3947l-85.7-54l-70.8-35.4l-67.1-24.2h-85.6l-136,20.5L546,3880l-115.5,26l-203,39.1
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="face_1_">
92
- <polygon id="tongue" class="st6" points="2442.1,4689.6 2442.1,4653 2427.2,4634.4 2389.9,4626.9 2311.7,4626.9 2233.5,4620.4
93
- 2147.8,4597.1 2060.2,4558.9 1982.1,4523.9 1921.8,4482.6 1890.1,4464.2 1793,4388.5 1724,4412.7 1858.4,4518.9 1895.4,4554.9
94
- 1927.1,4579.1 1960.9,4600.9 2009,4625.9 2060.2,4653 2141.3,4683.7 2200,4703.3 2250.3,4725.6 2268.9,4743 2294,4755.5
95
- 2330.3,4762.9 2370.7,4762.9 2405.7,4749.8 2428.1,4727.5 2437.4,4707.6 "/>
96
- <polygon class="st7" points="2337.2,4448.1 2337.2,4492.8 2331,4523.9 2319.7,4531.9 2178.8,4515.2 2078.9,4490 1988.9,4464.2
97
- 1882.7,4430.7 1840.5,4415.8 1764.7,4397.2 1724,4435.7 1764.7,4547.5 1834.3,4628.2 1880.2,4670.3 1960.9,4721.3 2025.5,4762.9
98
- 2106.2,4788.5 2178.8,4803.2 2224.1,4803.2 2233.5,4819.4 2227.9,4839.3 2215.8,4862.9 2209.9,4882.7 1965.6,4859.1
99
- 1743.6,4689.6 1698.9,4441.3 1784,4362.4 "/>
100
- <polygon id="face" class="st2" points="2970.4,4296.6 2915.8,4222.1 2848.8,4165 2759.3,4130.2 2689.8,4117.8 2655,4117.8
101
- 2630.2,4075.6 2588,4008.5 2563.1,3975 1629.4,4174.9 1602,4296.6 1584.7,4346.3 1584.7,4405.9 1579.1,4454.3 1574.7,4495.3
102
- 1586.2,4531 1622.5,4589.6 1659.8,4654.9 1712.9,4732.1 1741.7,4772.2 1789.2,4816 1855.3,4879.3 1906.6,4932.4 1947.6,4970.6
103
- 1979.2,5004.1 2004.3,5010.6 2031.4,5010.6 2098.5,4983.6 2186.9,4930.5 2229.1,4898.2 2235.9,4883.3 2226,4870.9 2203.6,4869.7
104
- 2142.2,4867.2 2083.6,4860.6 2008.1,4842.9 1947.6,4817.8 1884.2,4770.4 1816.2,4710.7 1780,4658.5 1752,4606.4 1732.4,4532.9
105
- 1727.8,4475.1 1733.3,4449 1749.2,4419.3 1772.5,4407.1 1831.2,4397.8 1919.6,4402.5 1996,4415.5 2049.1,4431.3 2133.9,4446.2
106
- 2219.5,4454.6 2286.6,4461.1 2343.3,4463.9 2388.1,4458.3 2422.5,4456.4 2456,4456.4 2474.6,4465.8 2495.2,4492.8 2518.5,4512.4
107
- 2547.3,4526.3 2592.9,4540.3 2651.6,4549.6 2729.8,4553.4 2810.8,4550.6 2874.2,4544 2919.9,4521.7 2950.6,4488.2 2970.4,4444.4
108
- 2976.6,4387.6 2976.6,4339.1 "/>
109
- <polygon class="st8" points="2506,4119 2513.5,4145.2 2513.5,4197.3 2506,4240.8 2470.1,4284.2 2434,4312.8 2379.4,4335.1
110
- 2304.2,4341.4 2252.7,4348.7 2215.8,4327.7 2196.8,4284.2 2188.2,4224 2181.8,4190.1 2186.9,4146.4 2209.9,4085.5 2370.7,4016.2
111
- 2480,4096 "/>
112
- <polygon id="eye" class="st1" points="2240,4212.5 2252.1,4231.1 2275.7,4258.1 2294.9,4273.9 2321,4279.5 2361,4284.2
113
- 2393.6,4280.5 2417.9,4265.6 2435.6,4242.3 2446.7,4212.5 2451.4,4179 2451.4,4141.7 2444.9,4114.7 2433.7,4100.8 2393.6,4096
114
- 2360.1,4096 2325.6,4108.2 2291.2,4130.5 2259.5,4159.4 2244.6,4181.8 2240,4199.5 "/>
115
- <polygon id="eye_center" points="2388.1,4180.5 2376.9,4184.9 2370.7,4193.6 2370.7,4204.7 2370.7,4213.4 2379.4,4220.8
116
- 2398,4224 2409.8,4219 2417.9,4207.8 2421,4194.8 2416.6,4187.3 2408.5,4180.5 2398.6,4180.5 "/>
117
- <polygon id="nostril" points="2576.2,4371.7 2551.1,4378.2 2529.6,4393.1 2520.3,4409 2520.3,4420.2 2532.4,4423.9 2564.1,4423.9
118
- 2590.1,4423.9 2604.2,4433.2 2613.4,4441.3 2623.7,4441.3 2630.2,4431.3 2630.2,4410.8 2640.1,4406.5 2656.3,4406.5
119
- 2664.9,4400.9 2656.3,4388.5 2627.7,4379.8 2592.6,4371.7 "/>
120
- <g id="teeth">
121
- <polygon class="st9" points="2210.2,4819.7 2215.8,4789.9 2210.2,4761.9 2198.1,4749.8 2179.5,4749.8 2163.6,4764.7 2152.4,4789
122
- 2147.8,4810.3 2155.2,4819.7 2168.3,4827.1 2186,4827.1 2198.1,4827.1 "/>
123
- <polygon class="st9" points="2141.3,4755.5 2141.3,4742.4 2124.5,4735.9 2104.9,4741.4 2085.4,4761.9 2078.9,4781.5
124
- 2078.9,4792.6 2084.5,4805.8 2097.5,4814.1 2116.2,4814.1 2130.1,4808.5 2141.3,4775 "/>
125
- <polygon class="st9" points="2060.2,4731.2 2060.2,4719.4 2053.4,4711.4 2041,4707.6 2026.1,4713.8 2013.7,4726.9 2002.5,4749.8
126
- 2002.5,4759.1 2005,4767.8 2011.8,4775 2025.5,4778.4 2039.7,4775 2048.4,4767.8 "/>
127
- <polygon class="st9" points="1992.5,4707.6 1996.3,4691.5 1996.3,4673.5 1992.5,4662.9 1982.1,4660.4 1963.4,4664.2
128
- 1949.7,4678.5 1939.8,4693.9 1934.9,4707.6 1934.9,4718.8 1942.2,4731.2 1951.6,4735.9 1968.4,4738.7 1980.2,4735.9 "/>
129
- <polygon class="st9" points="1915.6,4658 1921.8,4639.3 1921.8,4626.9 1915.6,4620.7 1905,4616.4 1890.1,4620 1875.2,4631.3
130
- 1862.8,4649.3 1858.4,4660.4 1858.4,4668.5 1863.4,4679 1871.5,4685.3 1883.9,4689.6 1896.9,4689.6 1903.2,4685.3 "/>
131
- <polygon class="st9" points="1846.1,4579.1 1846.1,4562.4 1840.5,4551.8 1829.3,4547.5 1816.2,4547.5 1794.5,4563.3 1784,4579.1
132
- 1784,4589.6 1784,4602.7 1792.7,4610.1 1805.1,4616.4 1817.5,4616.4 1826.2,4616.4 1834.8,4606.4 "/>
133
- <polygon class="st9" points="2304.2,4528.2 2289.3,4567.3 2275.7,4576.6 2261.4,4579.1 2247.1,4579.1 2235.9,4565.5
134
- 2233.5,4553.7 2233.5,4539.4 2240,4518.9 2245.9,4513.3 2263.9,4510.2 2284.3,4510.2 2296.8,4513.9 2304.2,4521.3 "/>
135
- <polygon class="st9" points="2209.9,4518.3 2201.8,4534.4 2190,4551.1 2178.8,4554.9 2166.4,4554.9 2155.9,4554.9 2147.8,4541.2
136
- 2147.8,4525.1 2147.8,4510.2 2150.9,4499 2162,4492.8 2178.8,4492.8 2194.4,4496.5 2204.9,4504.6 "/>
137
- <polygon class="st9" points="2113,4503.4 2104.4,4523.9 2095.6,4531.9 2083.2,4531.9 2072,4531.9 2062.7,4523.9 2055.3,4510.2
138
- 2055.3,4492.8 2060.2,4481 2064,4472.3 2078.9,4469.8 2093.1,4469.8 2107.4,4476.7 2113,4486.6 "/>
139
- <polygon class="st9" points="2016.8,4464.9 2006.9,4480.4 1996.3,4487.3 1982.6,4487.3 1968.9,4481 1960.9,4469.8 1960.9,4458
140
- 1960.9,4445 1973.3,4441.3 1988.9,4441.3 2008.1,4448.7 2013.7,4454.9 "/>
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="hat">
144
- <polygon class="st4" points="2955.5,3926.6 2976.6,3871.9 2976.6,3804.9 2955.5,3749 2907.1,3693.1 2846.2,3644.7 2797.8,3619.9
145
- 2759.3,3612.4 2720.8,3612.4 2683.6,3633.6 2653.8,3667.1 2621.5,3713 2592.6,3750.2 2559.4,3780 2528.4,3789.9 2460.1,3783.8
146
- 2395.8,3769.5 2347.7,3738.4 2356.4,3563.4 2370.7,3464.6 2395.8,3325 2436.5,3198.3 2475.6,3118.2 2513.5,3047.4 2550.1,2984.1
147
- 2583.7,2920.8 2594.8,2868.6 2581.8,2812.7 2548.3,2755 2479.3,2708.4 2376.9,2663.7 2268.9,2637.7 2159,2626.4 2054.6,2626.4
148
- 1916.8,2626.4 1754.8,2643.2 1624.4,2667.5 1499.6,2708.4 1386,2762.4 1292.9,2814.6 1235.1,2876 1192.3,2928.2 1171.8,2982.2
149
- 1171.8,3040 1182.9,3097.7 1233.2,3166.6 1331.9,3259.8 1393.5,3328.7 1441.9,3405 1494,3501.9 1525.7,3602.5 1557.4,3723.5
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="blick_7_" class="st11">
160
- <polygon id="blick_6_" class="st12" points="1857.2,3725.4 1868.4,3509.4 1890.7,3315.6 1890.7,3228.1 1883.3,3185.3
161
- 1883.3,3149.9 1915,3112.6 1953.4,3105.2 1970.8,3135 1970.8,3189 2000.7,3243 2018,3295.1 2034.2,3328.7 2034.2,3367.8
162
- 2055.3,3399.4 2055.3,3455.3 2055.3,3526.1 2074.2,3566.5 2097.5,3628.6 2097.5,3664 2074.2,3695.6 2018,3725.4 1929.9,3745.9
163
- "/>
164
- <polygon id="blick_5_" class="st12" points="2298.7,3406.9 2259.5,3438.6 2252.1,3487 2275.4,3518.6 2298.7,3531.7 2315.4,3516.8
165
- 2345.7,3436.7 2326.6,3406.9 "/>
166
- <polygon id="blick_4_" class="st12" points="2347.7,3293.3 2317.3,3254.2 2317.3,3196.4 2332.4,3149.9 2370.7,3105.2
167
- 2382.5,3069.8 2395.8,3045.5 2421,3006.5 2440.2,2965.5 2440.2,2924.5 2451.4,2900.3 2477.5,2879.8 2505.4,2896.5 2527.7,2928.2
168
- 2527.7,2973 2488.6,3028.8 2451.4,3094 2430.9,3149.9 2406.7,3215 2395.8,3261.6 2378.7,3293.3 "/>
169
- <polygon id="blick_3_" class="st12" points="1218.3,3036.3 1246.2,3071.7 1291,3105.2 1359.9,3120.1 1484.7,3120.1 1656.1,3105.2
170
- 1836.7,3086.5 2008.1,3051.1 2145.9,3008.3 2263.3,2956.2 2345.7,2904 2388.1,2851.9 2408.5,2810.8 2397.4,2755 2362,2717.8
171
- 2309.8,2693.5 2252.1,2680.5 2203.6,2680.5 2155.2,2693.5 2144.1,2714 2157.1,2740.1 2188.7,2751.3 2222.3,2753.2 2244.6,2766.2
172
- 2252.1,2792.2 2235.4,2814.6 2177.6,2851.9 2037.9,2900.3 1926.1,2928.2 1823.7,2950.6 1691.5,2974.8 1596.5,2989.7
173
- 1510.8,3004.6 1438.1,3002.7 1382.2,2984.1 1348.7,2961.7 1333.8,2946.8 1311.5,2944.9 1276.1,2961.7 1231.4,2997.1 "/>
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>