rapid-router 5.18.0__py2.py3-none-any.whl → 7.6.8__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. example_project/rapid_router_test_settings.py +19 -7
  2. example_project/settings.py +21 -8
  3. example_project/urls.py +5 -6
  4. game/__init__.py +1 -1
  5. game/admin.py +7 -2
  6. game/character.py +8 -0
  7. game/decor.py +40 -0
  8. game/end_to_end_tests/base_game_test.py +34 -27
  9. game/end_to_end_tests/editor_page.py +15 -0
  10. game/end_to_end_tests/game_page.py +88 -20
  11. game/end_to_end_tests/selenium_test_case.py +1 -20
  12. game/end_to_end_tests/test_cow_crashes.py +3 -5
  13. game/end_to_end_tests/test_level_editor.py +273 -10
  14. game/end_to_end_tests/test_level_selection.py +25 -3
  15. game/end_to_end_tests/test_play_through.py +222 -127
  16. game/end_to_end_tests/test_python_levels.py +41 -7
  17. game/end_to_end_tests/test_saving_workspace.py +2 -1
  18. game/forms.py +7 -1
  19. game/level_management.py +26 -11
  20. game/messages.py +899 -337
  21. game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
  22. game/migrations/0026_levels_pt2.py +13 -2
  23. game/migrations/0032_cannot_turn_left_level.py +13 -2
  24. game/migrations/0033_recursion_level.py +13 -2
  25. game/migrations/0034_joes_level.py +13 -2
  26. game/migrations/0035_disable_route_score_level_70.py +0 -2
  27. game/migrations/0036_level_score_73.py +0 -2
  28. game/migrations/0037_level_score_79.py +0 -2
  29. game/migrations/0038_level_score_40.py +0 -1
  30. game/migrations/0042_level_score_73.py +0 -2
  31. game/migrations/0048_add_cow_field_and_blocks.py +0 -2
  32. game/migrations/0049_level_score_34.py +0 -2
  33. game/migrations/0050_level_score_40.py +0 -2
  34. game/migrations/0051_level_score_49.py +0 -1
  35. game/migrations/0086_loop_levels.py +13 -2
  36. game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
  37. game/migrations/0093_alter_level_character_name.py +18 -0
  38. game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
  39. game/migrations/0095_level_commands.py +18 -0
  40. game/migrations/0096_alter_level_commands.py +18 -0
  41. game/migrations/0097_add_python_den_levels.py +1515 -0
  42. game/migrations/0098_add_episode_link_fields.py +44 -0
  43. game/migrations/0099_python_episodes_links.py +103 -0
  44. game/migrations/0100_reorder_python_levels.py +179 -0
  45. game/migrations/0101_rename_episodes.py +45 -0
  46. game/migrations/0102_reoder_episodes_13_14.py +136 -0
  47. game/migrations/0103_level_1015_solution.py +26 -0
  48. game/migrations/0104_remove_level_direct_drive.py +17 -0
  49. game/migrations/0105_delete_invalid_attempts.py +18 -0
  50. game/migrations/0106_fields_to_snake_case.py +48 -0
  51. game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
  52. game/migrations/0108_episode_indy_worksheet_link.py +18 -0
  53. game/migrations/0109_create_episodes_23_and_24.py +99 -0
  54. game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
  55. game/migrations/0111_create_worksheets.py +149 -0
  56. game/migrations/0112_worksheet_locked_classes.py +21 -0
  57. game/migrations/0113_level_needs_approval.py +18 -0
  58. game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
  59. game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
  60. game/migrations/0116_update_worksheet_video_links.py +68 -0
  61. game/migrations/0117_update_solutions_to_if_else.py +61 -0
  62. game/models.py +127 -17
  63. game/permissions.py +51 -19
  64. game/python_den_urls.py +26 -0
  65. game/random_road.py +9 -9
  66. game/serializers.py +12 -17
  67. game/static/django_reverse_js/js/reverse.js +171 -0
  68. game/static/game/css/LilitaOne-Regular.ttf +0 -0
  69. game/static/game/css/backgrounds.css +8 -12
  70. game/static/game/css/dataTables.custom.css +3 -2
  71. game/static/game/css/editor.css +47 -0
  72. game/static/game/css/game.css +37 -43
  73. game/static/game/css/game_screen.css +16 -0
  74. game/static/game/css/level_editor.css +5 -0
  75. game/static/game/css/level_selection.css +17 -2
  76. game/static/game/image/Python_Den_hero_student.png +0 -0
  77. game/static/game/image/Python_levels_page.svg +1954 -0
  78. game/static/game/image/characters/front_view/Electric_van.svg +448 -0
  79. game/static/game/image/characters/top_view/Electric_van.svg +448 -0
  80. game/static/game/image/decor/city/solar_panel.svg +1200 -0
  81. game/static/game/image/decor/farm/solar_panel.svg +86 -0
  82. game/static/game/image/decor/grass/solar_panel.svg +86 -0
  83. game/static/game/image/decor/snow/solar_panel.svg +173 -0
  84. game/static/game/image/electric_van.svg +448 -0
  85. game/static/game/image/icons/description.svg +1 -0
  86. game/static/game/image/icons/hint.svg +1 -0
  87. game/static/game/image/icons/python.svg +1 -1
  88. game/static/game/image/pigeon.svg +684 -0
  89. game/static/game/image/python_den_header.svg +19 -0
  90. game/static/game/js/animation.js +65 -24
  91. game/static/game/js/blockly/msg/js/bg.js +52 -1
  92. game/static/game/js/blockly/msg/js/ca.js +52 -1
  93. game/static/game/js/blockly/msg/js/en-gb.js +2 -0
  94. game/static/game/js/blockly/msg/js/en.js +2 -0
  95. game/static/game/js/blockly/msg/js/es.js +52 -1
  96. game/static/game/js/blockly/msg/js/fr.js +2 -0
  97. game/static/game/js/blockly/msg/js/hi.js +2 -0
  98. game/static/game/js/blockly/msg/js/it.js +52 -1
  99. game/static/game/js/blockly/msg/js/pl.js +52 -1
  100. game/static/game/js/blockly/msg/js/pt-br.js +52 -1
  101. game/static/game/js/blockly/msg/js/ru.js +52 -1
  102. game/static/game/js/blockly/msg/js/ur.js +52 -1
  103. game/static/game/js/blocklyCustomBlocks.js +93 -52
  104. game/static/game/js/button.js +12 -0
  105. game/static/game/js/cow.js +11 -7
  106. game/static/game/js/drawing.js +68 -29
  107. game/static/game/js/editor.js +23 -0
  108. game/static/game/js/game.js +74 -110
  109. game/static/game/js/level_editor.js +646 -274
  110. game/static/game/js/level_moderation.js +33 -2
  111. game/static/game/js/level_selection.js +1 -1
  112. game/static/game/js/loadLanguages.js +2 -2
  113. game/static/game/js/model.js +32 -2
  114. game/static/game/js/pythonControl.js +14 -1
  115. game/static/game/js/scoreboard.js +0 -37
  116. game/static/game/js/scoreboardSharedLevels.js +48 -0
  117. game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
  118. game/static/game/js/sound.js +52 -5
  119. game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
  120. game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
  121. game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
  122. game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
  123. game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
  124. game/static/game/raphael_image/pigeon.svg +685 -0
  125. game/static/game/sass/game.scss +2 -2
  126. game/static/game/sound/clown_horn.mp3 +0 -0
  127. game/static/game/sound/clown_horn.ogg +0 -0
  128. game/static/game/sound/electric_van_starting.mp3 +0 -0
  129. game/static/game/sound/electric_van_starting.ogg +0 -0
  130. game/static/game/sound/pigeon.mp3 +0 -0
  131. game/static/game/sound/pigeon.ogg +0 -0
  132. game/static/game/sound/sleigh_bells.mp3 +0 -0
  133. game/static/game/sound/sleigh_bells.ogg +0 -0
  134. game/static/game/sound/sleigh_crash.mp3 +0 -0
  135. game/static/game/sound/sleigh_crash.ogg +0 -0
  136. game/templates/game/base.html +34 -14
  137. game/templates/game/basenonav.html +11 -5
  138. game/templates/game/game.html +142 -38
  139. game/templates/game/level_editor.html +340 -236
  140. game/templates/game/level_moderation.html +19 -6
  141. game/templates/game/level_selection.html +18 -110
  142. game/templates/game/python_den_level_selection.html +291 -0
  143. game/templates/game/python_den_worksheet.html +101 -0
  144. game/templates/game/scoreboard.html +83 -64
  145. game/tests/test_level_editor.py +94 -26
  146. game/tests/test_level_selection.py +149 -46
  147. game/tests/test_python_den_worksheet.py +85 -0
  148. game/tests/test_scoreboard.py +34 -7
  149. game/tests/utils/level.py +32 -26
  150. game/theme.py +5 -5
  151. game/urls.py +199 -61
  152. game/views/language_code_conversions.py +86 -86
  153. game/views/level.py +155 -63
  154. game/views/level_editor.py +88 -55
  155. game/views/level_moderation.py +23 -0
  156. game/views/level_selection.py +116 -47
  157. game/views/level_solutions.py +491 -106
  158. game/views/scoreboard.py +76 -51
  159. game/views/worksheet.py +25 -0
  160. rapid_router-7.6.8.dist-info/METADATA +174 -0
  161. {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/RECORD +164 -104
  162. {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
  163. example_project/manage.py +0 -10
  164. game/static/game/image/actions/go.svg +0 -18
  165. game/static/game/js/js-reverse.js +0 -14
  166. game/static/game/js/pqselect.min.js +0 -9
  167. game/static/game/js/widget-scroller.js +0 -906
  168. rapid_router-5.18.0.dist-info/METADATA +0 -17
  169. {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info/licenses}/LICENSE.md +0 -0
  170. {rapid_router-5.18.0.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
@@ -6,6 +6,10 @@ ocargo.sound.startingSound = new Howl({
6
6
  urls: ['/static/game/sound/starting.mp3', '/static/game/sound/starting.ogg']
7
7
  });
8
8
 
9
+ ocargo.sound.electricVanStartingSound = new Howl({
10
+ urls: ['/static/game/sound/electric_van_starting.mp3', '/static/game/electric_van_starting.ogg']
11
+ })
12
+
9
13
  ocargo.sound.engineSound = new Howl({
10
14
  urls: ['/static/game/sound/moving.mp3', '/static/game/sound/moving.ogg'],
11
15
  loop: true
@@ -39,6 +43,29 @@ ocargo.sound.cowSound = new Howl({
39
43
  urls: ['/static/game/sound/cow.mp3', '/static/game/sound/cow.ogg']
40
44
  });
41
45
 
46
+ ocargo.sound.pigeonSound = new Howl({
47
+ urls: ['/static/game/sound/pigeon.mp3', '/static/game/sound/pigeon.ogg']
48
+ });
49
+
50
+ /// festive sounds ///**
51
+ ocargo.sound.clownHornSound = new Howl({
52
+ urls: ['/static/game/sound/clown_horn.mp3', '/static/game/sound/clown_horn.ogg']
53
+ });
54
+
55
+ ocargo.sound.sleighBellsSound = new Howl({
56
+ urls: ['/static/game/sound/sleigh_bells.mp3', '/static/game/sound/sleigh_bells.ogg']
57
+ });
58
+
59
+ ocargo.sound.sleighCrashSound = new Howl({
60
+ urls: ['/static/game/sound/sleigh_crash.mp3', '/static/game/sound/sleigh_crash.ogg']
61
+ });
62
+
63
+ function isDecember()
64
+ {
65
+ const currentMonth = new Date().getMonth();
66
+ return currentMonth === 11;
67
+ }
68
+
42
69
  function safePlay(sound) {
43
70
  try {
44
71
  sound.play();
@@ -55,13 +82,19 @@ function safeStop(sound) {
55
82
 
56
83
 
57
84
  ocargo.sound.starting = function() {
58
- if (CHARACTER_NAME === 'Van') {
59
- safePlay(ocargo.sound.startingSound);
85
+ if (!isDecember()) {
86
+ if (CHARACTER_NAME === 'Van') {
87
+ safePlay(ocargo.sound.startingSound);
88
+ } else if (CHARACTER_NAME === "Electric van") {
89
+ safePlay(ocargo.sound.electricVanStartingSound);
90
+ }
60
91
  }
61
92
  };
62
93
 
63
94
  ocargo.sound.start_engine = function() {
64
- if (CHARACTER_NAME === 'Van') {
95
+ if (isDecember()) {
96
+ safePlay(ocargo.sound.sleighBellsSound);
97
+ } else if (CHARACTER_NAME === 'Van') {
65
98
  safePlay(ocargo.sound.engineSound);
66
99
  }
67
100
  };
@@ -69,6 +102,8 @@ ocargo.sound.start_engine = function() {
69
102
  ocargo.sound.stop_engine = function() {
70
103
  if (CHARACTER_NAME === 'Van') {
71
104
  safeStop(ocargo.sound.engineSound);
105
+ } else if (CHARACTER_NAME === "Electric van") {
106
+ safeStop(ocargo.sound.electricVanStartingSound);
72
107
  }
73
108
  };
74
109
 
@@ -88,8 +123,16 @@ ocargo.sound.cow = function() {
88
123
  safePlay(ocargo.sound.cowSound);
89
124
  };
90
125
 
126
+ ocargo.sound.pigeon = function() {
127
+ safePlay(ocargo.sound.pigeonSound);
128
+ }
129
+
91
130
  ocargo.sound.sound_horn = function() {
131
+ if (isDecember()) {
132
+ safePlay(ocargo.sound.clownHornSound);
133
+ } else {
92
134
  safePlay(ocargo.sound.hornSound);
135
+ }
93
136
  };
94
137
 
95
138
  ocargo.sound.crash = function (animationDuration) {
@@ -101,11 +144,15 @@ ocargo.sound.crashIntoCow = function (animationDuration) {
101
144
  };
102
145
 
103
146
  ocargo.sound._crashSound = function () {
104
- if (CHARACTER_NAME === 'Van') {
105
- safePlay(ocargo.sound.crashSound);
147
+ if (isDecember()) {
148
+ safePlay(ocargo.sound.sleighCrashSound);
149
+ } else {
150
+ if (CHARACTER_NAME === 'Van') {
151
+ safePlay(ocargo.sound.crashSound);
106
152
  } else {
107
153
  safePlay(ocargo.sound.failureSound);
108
154
  }
155
+ }
109
156
  };
110
157
 
111
158
  ocargo.sound.tension = function() {
@@ -0,0 +1,448 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg id="Layer_2" data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 84.67 163.73">
3
+ <defs>
4
+ <style>
5
+ .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9, .cls-10, .cls-11, .cls-12, .cls-13, .cls-14 {
6
+ stroke-miterlimit: 10;
7
+ }
8
+
9
+ .cls-1, .cls-2, .cls-3, .cls-4, .cls-5, .cls-6, .cls-7, .cls-8, .cls-9, .cls-11, .cls-13, .cls-14 {
10
+ stroke-width: .32px;
11
+ }
12
+
13
+ .cls-1, .cls-3, .cls-15, .cls-10, .cls-12, .cls-14 {
14
+ fill: none;
15
+ }
16
+
17
+ .cls-1, .cls-6, .cls-8, .cls-9, .cls-13 {
18
+ stroke: #000;
19
+ }
20
+
21
+ .cls-2, .cls-3, .cls-11 {
22
+ stroke: #333;
23
+ }
24
+
25
+ .cls-2, .cls-16, .cls-17 {
26
+ fill: #fff;
27
+ }
28
+
29
+ .cls-18 {
30
+ fill: #6d6d6d;
31
+ }
32
+
33
+ .cls-18, .cls-19, .cls-20, .cls-15, .cls-21, .cls-22, .cls-23, .cls-24, .cls-25, .cls-26, .cls-27, .cls-28, .cls-29, .cls-30, .cls-31, .cls-32, .cls-33, .cls-34, .cls-35, .cls-36, .cls-37, .cls-38, .cls-39, .cls-40, .cls-41, .cls-42, .cls-16, .cls-43, .cls-17, .cls-44, .cls-45 {
34
+ stroke-width: 0px;
35
+ }
36
+
37
+ .cls-19 {
38
+ fill: #004f70;
39
+ }
40
+
41
+ .cls-4 {
42
+ fill: #b5b5b5;
43
+ stroke: #666;
44
+ }
45
+
46
+ .cls-20 {
47
+ fill: url(#linear-gradient-8);
48
+ opacity: .8;
49
+ }
50
+
51
+ .cls-46 {
52
+ clip-path: url(#clippath);
53
+ }
54
+
55
+ .cls-21 {
56
+ fill: #c5c5c5;
57
+ }
58
+
59
+ .cls-22 {
60
+ fill: url(#linear-gradient);
61
+ }
62
+
63
+ .cls-5 {
64
+ fill: url(#linear-gradient-7);
65
+ stroke: #232323;
66
+ }
67
+
68
+ .cls-6 {
69
+ fill: #cacaca;
70
+ }
71
+
72
+ .cls-23 {
73
+ fill: url(#linear-gradient-11);
74
+ }
75
+
76
+ .cls-24 {
77
+ fill: url(#linear-gradient-13);
78
+ }
79
+
80
+ .cls-25 {
81
+ fill: url(#linear-gradient-10);
82
+ }
83
+
84
+ .cls-7 {
85
+ fill: #0f0f0f;
86
+ stroke: #1e1e1e;
87
+ }
88
+
89
+ .cls-7, .cls-26, .cls-29, .cls-33, .cls-16 {
90
+ fill-rule: evenodd;
91
+ }
92
+
93
+ .cls-26 {
94
+ fill: #3f3f3f;
95
+ }
96
+
97
+ .cls-8 {
98
+ fill: url(#linear-gradient-6);
99
+ }
100
+
101
+ .cls-27 {
102
+ fill: #000;
103
+ }
104
+
105
+ .cls-28 {
106
+ fill: #a1a1a1;
107
+ }
108
+
109
+ .cls-29 {
110
+ fill: url(#linear-gradient-12);
111
+ opacity: .5;
112
+ }
113
+
114
+ .cls-30 {
115
+ fill: #b6e4ff;
116
+ }
117
+
118
+ .cls-9 {
119
+ fill: #191919;
120
+ }
121
+
122
+ .cls-31 {
123
+ fill: #232323;
124
+ }
125
+
126
+ .cls-10 {
127
+ stroke-width: 1.93px;
128
+ }
129
+
130
+ .cls-10, .cls-12 {
131
+ stroke: #055180;
132
+ }
133
+
134
+ .cls-11 {
135
+ fill: #999;
136
+ }
137
+
138
+ .cls-32 {
139
+ fill: #7f7f7f;
140
+ }
141
+
142
+ .cls-33 {
143
+ fill: #005a81;
144
+ }
145
+
146
+ .cls-12 {
147
+ stroke-width: .97px;
148
+ }
149
+
150
+ .cls-34 {
151
+ fill: #060d1c;
152
+ }
153
+
154
+ .cls-34, .cls-47, .cls-41 {
155
+ opacity: .4;
156
+ }
157
+
158
+ .cls-48 {
159
+ opacity: .3;
160
+ }
161
+
162
+ .cls-35 {
163
+ fill: #7a7a7a;
164
+ }
165
+
166
+ .cls-49 {
167
+ opacity: .9;
168
+ }
169
+
170
+ .cls-50 {
171
+ opacity: .7;
172
+ }
173
+
174
+ .cls-36 {
175
+ fill: #d9d9d9;
176
+ }
177
+
178
+ .cls-37 {
179
+ fill: url(#linear-gradient-4);
180
+ }
181
+
182
+ .cls-38 {
183
+ fill: url(#linear-gradient-2);
184
+ }
185
+
186
+ .cls-39 {
187
+ fill: url(#linear-gradient-9);
188
+ }
189
+
190
+ .cls-40 {
191
+ fill: url(#linear-gradient-5);
192
+ }
193
+
194
+ .cls-41 {
195
+ fill: url(#linear-gradient-3);
196
+ }
197
+
198
+ .cls-42 {
199
+ fill: #212121;
200
+ }
201
+
202
+ .cls-13 {
203
+ fill: #1e1e1e;
204
+ }
205
+
206
+ .cls-14 {
207
+ stroke: #111;
208
+ }
209
+
210
+ .cls-43 {
211
+ fill: #a3a3a3;
212
+ }
213
+
214
+ .cls-44 {
215
+ fill: #0c0c0c;
216
+ }
217
+
218
+ .cls-45 {
219
+ fill: #171d23;
220
+ }
221
+ </style>
222
+ <linearGradient id="linear-gradient" x1="40.81" y1=".88" x2="40.81" y2="86.17" gradientUnits="userSpaceOnUse">
223
+ <stop offset="0" stop-color="#c5c5c5"/>
224
+ <stop offset=".32" stop-color="#878787"/>
225
+ <stop offset=".93" stop-color="#666"/>
226
+ <stop offset=".97" stop-color="#333"/>
227
+ </linearGradient>
228
+ <linearGradient id="linear-gradient-2" x1="-4438.41" y1="25.13" x2="-4438.41" y2="7.95" gradientTransform="translate(-4397.58) rotate(-180) scale(1 -1)" gradientUnits="userSpaceOnUse">
229
+ <stop offset="0" stop-color="#f5f5f5" stop-opacity="0"/>
230
+ <stop offset=".36" stop-color="#f5f5f5"/>
231
+ <stop offset=".64" stop-color="#f5f5f5" stop-opacity=".78"/>
232
+ <stop offset="1" stop-color="#f5f5f5" stop-opacity="0"/>
233
+ </linearGradient>
234
+ <linearGradient id="linear-gradient-3" x1="13.76" y1="40.82" x2="67.87" y2="40.82" gradientUnits="userSpaceOnUse">
235
+ <stop offset="0" stop-color="#636668" stop-opacity="0"/>
236
+ <stop offset=".14" stop-color="#636668"/>
237
+ <stop offset=".83" stop-color="#636668"/>
238
+ <stop offset="1" stop-color="#636668" stop-opacity="0"/>
239
+ </linearGradient>
240
+ <clipPath id="clippath">
241
+ <path class="cls-15" d="M40.82,27.46c10.4,0,23.54.48,28.48,7.1-.21,7.57-1.89,19.09-2.1,20.14-.17.4-.84,0-.84,0,0,0-5.88-3.78-25.54-3.78s-25.54,3.78-25.54,3.78c0,0-.67.4-.84,0-.21-1.05-1.89-12.58-2.1-20.14,4.94-6.62,18.07-7.1,28.48-7.1Z"/>
242
+ </clipPath>
243
+ <linearGradient id="linear-gradient-4" x1="32.37" y1="28.39" x2="32.37" y2="50.45" gradientUnits="userSpaceOnUse">
244
+ <stop offset="0" stop-color="#fff" stop-opacity="0"/>
245
+ <stop offset=".48" stop-color="#fff"/>
246
+ <stop offset=".73" stop-color="#fff"/>
247
+ <stop offset="1" stop-color="#fff" stop-opacity="0"/>
248
+ </linearGradient>
249
+ <linearGradient id="linear-gradient-5" x1="36.38" x2="36.38" xlink:href="#linear-gradient-4"/>
250
+ <linearGradient id="linear-gradient-6" x1="23.34" y1="22.68" x2="23.5" y2="25.09" gradientUnits="userSpaceOnUse">
251
+ <stop offset="0" stop-color="#323232"/>
252
+ <stop offset="1" stop-color="#141414"/>
253
+ </linearGradient>
254
+ <linearGradient id="linear-gradient-7" x1="40.79" y1="81.09" x2="40.79" y2="54.81" gradientUnits="userSpaceOnUse">
255
+ <stop offset="0" stop-color="#d1d1d1"/>
256
+ <stop offset=".33" stop-color="#b0b0b0"/>
257
+ <stop offset="1" stop-color="#636162"/>
258
+ </linearGradient>
259
+ <linearGradient id="linear-gradient-8" x1="40.79" y1="81.95" x2="40.79" y2="60.8" gradientTransform="matrix(1,0,0,1,0,0)" xlink:href="#linear-gradient-2"/>
260
+ <linearGradient id="linear-gradient-9" x1="21.1" y1="57.39" x2="21.1" y2="53.32" gradientUnits="userSpaceOnUse">
261
+ <stop offset="0" stop-color="#a3a3a3"/>
262
+ <stop offset="1" stop-color="#a3a3a3" stop-opacity="0"/>
263
+ </linearGradient>
264
+ <linearGradient id="linear-gradient-10" x1="60.45" x2="60.45" xlink:href="#linear-gradient-9"/>
265
+ <linearGradient id="linear-gradient-11" x1="40.82" y1="86.03" x2="40.82" y2="151.17" gradientUnits="userSpaceOnUse">
266
+ <stop offset="0" stop-color="#4ba0dd"/>
267
+ <stop offset="1" stop-color="#006d9a"/>
268
+ </linearGradient>
269
+ <linearGradient id="linear-gradient-12" x1="40.76" y1="86.86" x2="40.76" y2="88.39" gradientUnits="userSpaceOnUse">
270
+ <stop offset="0" stop-color="#004f70" stop-opacity="0"/>
271
+ <stop offset="1" stop-color="#004f70"/>
272
+ </linearGradient>
273
+ <linearGradient id="linear-gradient-13" x1="25.8" y1="120.39" x2="57.41" y2="120.39" gradientUnits="userSpaceOnUse">
274
+ <stop offset="0" stop-color="#4ba0dd"/>
275
+ <stop offset="1" stop-color="#a5cade"/>
276
+ </linearGradient>
277
+ </defs>
278
+ <g id="Layer_1-2" data-name="Layer 1">
279
+ <g>
280
+ <g>
281
+ <path class="cls-34" d="M84.25,49.22c-.96-1.27-4.42-2.34-6.12-2.35-.07-5.2-.35-12.7-.93-19.43-.33-3.78-.72-6.87-1.15-9.17-.72-3.8-1.45-4.78-2.01-5.21l-.27-.21c-2.83-2.2-9.45-7.34-28.86-7.34s-26.03,5.14-28.85,7.34l-.27.21c-.56.43-1.29,1.41-2.01,5.21-.44,2.3-.82,5.39-1.15,9.17-.58,6.72-.86,14.23-.93,19.43-.02,0-.04,0-.06,0-1.69,0-5.19,1.07-6.15,2.35-.78,1.04-.3,2.17.06,2.63l.4.5.15-.04c.38.28,1,.53,1.95.53.59,0,1.27-.1,2.01-.3.79-.21,1.38-.42,1.83-.62.1.43.21.74.3.95l-.24,34.69c-.06.02-.13.05-.19.07h-.55v.4c-.3.32-.48.74-.48,1.21v72.72c0,.47.18.89.48,1.21v.08h.08c.32.3.74.48,1.21.48h64.85c.47,0,.89-.18,1.21-.48h.08v-.08c.3-.32.48-.74.48-1.21v-72.72c0-.47-.18-.89-.48-1.21v-.4h-.55c-.07-.03-.14-.06-.21-.08l-.24-34.68c.09-.2.19-.5.29-.91.44.19,1.01.38,1.75.58.74.2,1.42.3,2.01.3.95,0,1.57-.26,1.95-.53l.15.04.4-.5c.37-.45.85-1.59.07-2.63ZM83.33,49.65s-.02-.02-.03-.03c.01.01.02.02.03.03ZM79.98,50.69c1,.27,1.9.64,2.65,1.05,0,0-.01,0-.02,0-.97-.5-1.86-.83-2.63-1.05ZM7.12,51.74s-.01,0-.02,0c.74-.41,1.64-.77,2.65-1.05-.77.22-1.66.56-2.63,1.05ZM12.43,50.29s0,0,0-.01c0,0,0,0,0,.01ZM12.42,50.23s.06,0,.09,0c-.03,0-.06,0-.09,0ZM12.43,50.27s0,0,0,0c0,0,0,0,0,0ZM12.42,50.26s0,0,0,0c0,0,0,0,0,0ZM12.42,50.25s0,0,0,0c0,0,0,0,0,0ZM76.71,52.58s0,0,0,0c0,0,0,0,0,0ZM76.68,52.63s0,0,0,0c0,0,0,0,0,0ZM77.17,50.23h0s0,.02,0,.02c0,0,0-.02,0-.02ZM76.22,27.43s0,.07,0,.11c0-.04,0-.07,0-.11ZM76.27,28.01c0,.06.01.13.02.19,0-.06-.01-.13-.02-.19ZM76.32,28.63c0,.08.01.17.02.25,0-.08-.01-.17-.02-.25ZM76.37,29.29c0,.09.01.18.02.26,0-.09-.01-.18-.02-.26ZM76.43,29.96c0,.09.01.18.02.27,0-.09-.01-.18-.02-.27ZM76.47,30.63c0,.09.01.19.02.28,0-.1-.01-.19-.02-.28ZM76.52,31.32c0,.1.01.19.02.29,0-.1-.01-.19-.02-.29ZM76.57,31.99c0,.1.01.2.02.3,0-.1-.01-.2-.02-.3ZM76.61,32.67c0,.11.01.21.02.32,0-.11-.01-.21-.02-.32ZM76.65,33.37c0,.1.01.21.02.31,0-.1-.01-.21-.02-.31ZM76.7,34.06c0,.11.01.21.02.32,0-.11-.01-.21-.02-.32ZM76.73,34.75c0,.11.01.21.02.32,0-.11-.01-.21-.02-.32ZM76.77,35.45c0,.1.01.21.02.31,0-.1-.01-.21-.02-.31ZM76.81,36.13c0,.11.01.21.02.32,0-.11-.01-.21-.02-.32ZM76.84,36.82c0,.1.01.21.01.31,0-.1,0-.21-.01-.31ZM76.87,37.51c0,.1,0,.2.01.3,0-.1,0-.2-.01-.3ZM76.9,38.19c0,.11,0,.21.01.32,0-.11,0-.21-.01-.32ZM76.93,38.87c0,.1,0,.2.01.29,0-.1,0-.19-.01-.29ZM76.96,39.55c0,.1,0,.19.01.28,0-.09,0-.19-.01-.28ZM76.99,40.21c0,.1,0,.19.01.29,0-.1,0-.19-.01-.29ZM77.01,40.88c0,.09,0,.18,0,.27,0-.09,0-.18,0-.27ZM77.03,41.54c0,.08,0,.16,0,.24,0-.08,0-.16,0-.24ZM77.05,42.19c0,.06,0,.11,0,.17,0-.06,0-.11,0-.17ZM77.07,42.84s0,.07,0,.11c0-.04,0-.07,0-.11ZM77.09,43.47s0,.02,0,.03c0,0,0-.02,0-.03ZM74.8,17.06c.01.06.03.13.04.19-.01-.06-.03-.13-.04-.19ZM74.89,17.48c.01.06.03.13.04.2-.01-.07-.03-.13-.04-.2ZM74.98,17.91c.01.07.03.13.04.2-.01-.07-.03-.13-.04-.2ZM75.07,18.36c.01.07.03.14.04.21-.01-.07-.03-.14-.04-.21ZM75.16,18.83c.01.07.03.14.04.21-.01-.07-.03-.14-.04-.21ZM75.25,19.32c.01.07.02.14.04.21-.01-.07-.02-.14-.04-.21ZM75.33,19.83c.01.07.02.15.03.22-.01-.07-.02-.15-.03-.22ZM75.41,20.35c.01.07.02.15.03.22-.01-.07-.02-.15-.03-.22ZM75.49,20.89c.01.07.02.14.03.21-.01-.07-.02-.14-.03-.21ZM75.57,21.44c0,.07.02.14.03.21,0-.07-.02-.14-.03-.21ZM75.64,22c0,.07.02.14.03.21,0-.07-.02-.14-.03-.21ZM75.72,22.57c0,.07.02.14.03.21,0-.07-.02-.14-.03-.21ZM75.79,23.17c0,.06.01.12.02.18,0-.06-.01-.12-.02-.18ZM75.86,23.77c0,.05.01.11.02.16,0-.05-.01-.11-.02-.16ZM75.93,24.38s0,.06.01.09c0-.03,0-.06-.01-.09ZM75.99,25s0,.01,0,.02c0,0,0-.01,0-.02ZM13.92,24.17c.02-.15.03-.29.05-.44-.02.14-.03.29-.05.44ZM13.99,23.53c.02-.13.03-.27.05-.4-.02.13-.03.27-.05.4ZM14.06,22.92c.02-.13.03-.25.05-.38-.02.12-.03.25-.05.38ZM14.14,22.33c.02-.12.03-.24.05-.36-.02.12-.03.24-.05.36ZM14.21,21.75c.02-.12.03-.23.05-.35-.02.11-.03.23-.05.35ZM14.29,21.18c.02-.11.03-.22.05-.33-.02.11-.03.22-.05.33ZM14.37,20.63c.02-.1.03-.21.05-.31-.02.1-.03.2-.05.31ZM14.45,20.1c.02-.1.03-.2.05-.3-.02.1-.03.2-.05.3ZM14.53,19.58c.02-.1.03-.19.05-.29-.02.09-.03.19-.05.29ZM14.62,19.08c.02-.09.03-.18.05-.27-.02.09-.03.18-.05.27ZM14.7,18.6c.02-.09.03-.18.05-.26-.02.09-.03.17-.05.26ZM14.79,18.14c.02-.08.03-.17.05-.25-.02.08-.03.16-.05.25ZM14.88,17.69c.02-.08.03-.16.05-.24-.02.08-.03.16-.05.24ZM14.98,17.27c.02-.08.03-.15.05-.22-.02.07-.04.15-.05.22ZM13.11,52.58s0,0,0,0c0,0,0,0,0,0ZM13.15,52.65s0,0,0,0h0ZM13.14,52.62s0,0,0,0c0,0,0,0,0,0ZM77.2,50.23s.08,0,.11,0c-.04,0-.08,0-.11,0ZM77.31,50.28s0,.01,0,.02c0,0,0-.01,0-.02ZM77.31,50.24s0,0,0,0c0,0,0,0,0,0ZM77.31,50.25s0,0,0,0c0,0,0,0,0,0ZM77.31,50.26s0,0,0,.01c0,0,0,0,0-.01ZM78.14,47.84s-.04,0-.05,0c0,0,.01,0,.02,0,.01,0,.03,0,.04,0ZM83.11,49.46s-.03-.02-.04-.03c.01,0,.03.02.04.03ZM82.87,49.29s-.02-.02-.04-.02c.01,0,.03.02.04.02ZM82.58,49.12s-.04-.02-.06-.04c.02.01.04.02.06.04ZM82.23,48.93s-.02,0-.03-.01c0,0,.02,0,.03.01ZM81.91,48.79s-.05-.02-.07-.03c.03.01.05.02.07.03ZM81.52,48.62s-.05-.02-.08-.03c.03,0,.05.02.08.03ZM81.14,48.48s-.04-.01-.06-.02c.02,0,.04.01.06.02ZM80.74,48.35s-.06-.02-.09-.03c.03,0,.06.02.09.03ZM80.3,48.22s-.04-.01-.06-.02c.02,0,.04.01.06.02ZM79.94,48.12s-.05-.01-.08-.02c.03,0,.05.01.08.02ZM79.52,48.02s-.05-.01-.08-.02c.03,0,.05.01.08.02ZM79.14,47.95s-.03,0-.04,0c.01,0,.03,0,.04,0ZM78.79,47.89s-.05,0-.08,0c.03,0,.05,0,.08,0ZM78.42,47.85s-.03,0-.05,0c.02,0,.03,0,.05,0ZM77.86,47.85s-.03,0-.05,0c.02,0,.03,0,.05,0ZM77.64,47.88s-.02,0-.03,0c0,0,.02,0,.03,0ZM77.46,47.94s-.02.01-.03.02c.01,0,.02-.01.03-.02ZM74.75,16.85c-.01-.06-.03-.12-.04-.18.02.06.03.12.04.18ZM74.65,16.47c-.02-.06-.03-.12-.05-.17.02.06.03.11.05.17ZM74.55,16.11c-.02-.06-.03-.11-.05-.16.02.05.03.11.05.16ZM74.45,15.77c-.02-.05-.03-.1-.05-.16.02.05.03.1.05.16ZM74.35,15.46c-.02-.05-.03-.1-.05-.15.02.05.03.1.05.15ZM74.24,15.17s-.04-.09-.05-.14c.02.05.04.09.05.14ZM74.13,14.9s-.04-.09-.06-.13c.02.04.04.08.06.13ZM73.8,14.24s-.05-.07-.07-.1c.02.03.05.06.07.1ZM74.02,14.65s-.04-.08-.06-.12c.02.04.04.08.06.12ZM73.91,14.44s-.04-.07-.06-.11c.02.03.04.07.06.11ZM73.68,14.08s-.05-.06-.08-.09c.03.03.05.06.08.09ZM73.56,13.94s-.08-.08-.12-.11c.04.03.08.07.12.11ZM16.38,13.83s-.08.07-.12.11c.04-.04.08-.08.12-.11ZM16.09,14.14s-.05.07-.07.1c.02-.04.05-.07.07-.1ZM16.22,13.99s-.05.06-.08.09c.03-.03.05-.06.08-.09ZM15.07,16.86c.02-.07.04-.14.05-.21-.02.07-.04.14-.05.21ZM15.17,16.48c.02-.07.04-.13.05-.2-.02.07-.04.13-.05.2ZM15.27,16.12c.02-.06.04-.13.06-.19-.02.06-.04.12-.06.19ZM15.37,15.78c.02-.06.04-.12.06-.17-.02.06-.04.11-.06.17ZM15.47,15.46c.02-.06.04-.11.06-.16-.02.05-.04.11-.06.16ZM15.58,15.17c.02-.05.04-.1.06-.15-.02.05-.04.1-.06.15ZM15.69,14.9s.04-.09.06-.14c-.02.05-.04.09-.06.14ZM15.8,14.66s.04-.08.06-.13c-.02.04-.04.08-.06.13ZM15.91,14.44s.04-.08.07-.11c-.02.04-.04.07-.07.11ZM13.83,24.97c-.07.63-.13,1.28-.19,1.94.06-.66.12-1.31.19-1.94ZM13.9,24.35c-.02.17-.04.34-.05.52.02-.17.04-.35.05-.52ZM12.74,42.94s0-.07,0-.11c0,.04,0,.07,0,.11ZM12.76,42.31s0-.08,0-.11c0,.04,0,.08,0,.11ZM12.78,41.71c0-.05,0-.1,0-.16,0,.05,0,.11,0,.16ZM12.8,41.09c0-.07,0-.14,0-.2,0,.07,0,.14,0,.2ZM12.82,40.48c0-.09,0-.17,0-.26,0,.09,0,.17,0,.26ZM12.85,39.82c0-.09,0-.18.01-.27,0,.09,0,.18-.01.27ZM12.88,39.16c0-.1,0-.19.01-.29,0,.1,0,.19-.01.29ZM12.9,38.47c0-.09,0-.18.01-.27,0,.09,0,.18-.01.27ZM12.93,37.81c0-.1,0-.2.01-.31,0,.1,0,.2-.01.31ZM12.96,37.13c0-.1,0-.2.01-.3,0,.1,0,.2-.01.3ZM13,36.44c0-.1.01-.21.02-.31,0,.1-.01.21-.02.31ZM13.03,35.76c0-.11.01-.23.02-.34,0,.11-.01.23-.02.34ZM13.07,35.08c0-.12.01-.24.02-.35,0,.12-.01.23-.02.35ZM13.11,34.39c0-.12.01-.24.02-.36,0,.12-.01.24-.02.36ZM13.15,33.7c0-.12.01-.25.02-.37,0,.12-.02.25-.02.37ZM13.19,33.01c0-.12.02-.25.02-.37,0,.12-.02.25-.02.37ZM13.23,32.32c0-.13.02-.26.03-.38,0,.13-.02.26-.03.38ZM13.28,31.63c0-.13.02-.26.03-.39,0,.13-.02.26-.03.39ZM13.32,30.94c0-.13.02-.27.03-.4,0,.13-.02.27-.03.4ZM13.37,30.26c0-.14.02-.27.03-.41-.01.14-.02.27-.03.41ZM13.42,29.58c.01-.14.02-.28.03-.42-.01.14-.02.28-.03.42ZM13.48,28.9c.01-.15.02-.3.04-.45-.01.15-.02.3-.04.45ZM13.53,28.23c.01-.16.03-.31.04-.47-.01.16-.03.31-.04.47ZM13.59,27.57c.02-.18.03-.36.05-.54-.02.18-.03.36-.05.54ZM12.65,48.02h0c-.07,0-.15.01-.23.02.08,0,.15,0,.23-.02ZM12.31,47.96s-.02-.01-.03-.02c.01,0,.02.01.03.02ZM12.12,47.89s-.02,0-.03,0c0,0,.02,0,.03,0ZM11.92,47.86s-.03,0-.05,0c.02,0,.03,0,.05,0ZM11.65,47.84s-.04,0-.05,0c.01,0,.03,0,.04,0,0,0,.01,0,.02,0ZM6.62,49.46s.02-.02.04-.03c-.01,0-.03.02-.04.03ZM6.87,49.29s.02-.02.04-.02c-.01,0-.02.02-.04.02ZM7.16,49.12s.04-.02.06-.03c-.02.01-.04.02-.06.03ZM7.51,48.93s.02,0,.02-.01c0,0-.01,0-.02.01ZM7.83,48.79s.05-.02.07-.03c-.02.01-.05.02-.07.03ZM8.22,48.62s.05-.02.07-.03c-.02,0-.05.02-.07.03ZM8.6,48.48s.03-.01.05-.02c-.02,0-.03.01-.05.02ZM9,48.35s.06-.02.09-.03c-.03,0-.06.02-.09.03ZM9.43,48.22s.04,0,.05-.01c-.02,0-.04,0-.05.01ZM9.8,48.12s.05-.01.08-.02c-.03,0-.05.01-.08.02ZM10.21,48.02s.05-.01.08-.02c-.03,0-.05.01-.08.02ZM10.59,47.95s.03,0,.04,0c-.01,0-.03,0-.04,0ZM10.95,47.89s.05,0,.08-.01c-.03,0-.05,0-.08.01ZM11.31,47.85s.03,0,.05,0c-.02,0-.03,0-.05,0ZM6.44,49.61s-.02.02-.03.03c.01-.01.02-.02.03-.03ZM6.42,51.21h0l-.11.03.11-.03ZM9.82,51.61c1.62-.43,2.24-.81,2.47-1.06-.23.25-.86.63-2.47,1.06ZM12.43,50.3s0,.01,0,.02c0,0,0-.01,0-.02ZM12.42,50.32s0,.01,0,.02c0,0,0-.01,0-.02ZM12.42,50.34s0,.01,0,.02c0,0,0-.01,0-.02ZM12.41,50.37s0,.02-.01.03c0,0,0-.02.01-.03ZM12.4,50.4s-.01.02-.02.03c0-.01.01-.02.02-.03ZM12.38,50.43s-.01.02-.02.03c0-.01.02-.02.02-.03ZM12.35,50.47s-.02.02-.03.04c.01-.01.02-.03.03-.04ZM12.33,50.51s-.02.02-.03.04c.01-.01.02-.03.03-.04ZM77.33,50.37c.08.22.52.69,2.59,1.24-2.07-.55-2.51-1.02-2.59-1.24ZM77.31,50.3s0,.01,0,.02c0,0,0-.01,0-.02ZM77.31,50.32s0,.01,0,.02c0,0,0-.02,0-.02ZM77.32,50.34s0,.02,0,.03c0,0,0-.02,0-.03ZM83.31,51.21s0,0,0,0c0,0,0,0,0,0l.11.03-.11-.03Z"/>
282
+ <g>
283
+ <g>
284
+ <g>
285
+ <g>
286
+ <path class="cls-22" d="M72.81,83.08l-.24-34.98s.6-.94.51-3.51c-.03-10.64-1.09-33.27-3.74-35.3-2.65-2.04-8.82-7.35-28.53-7.35S14.92,7.24,12.27,9.28c-2.65,2.04-3.71,24.66-3.74,35.3-.08,2.57.51,3.51.51,3.51l-.24,34.98h64Z"/>
287
+ <path class="cls-26" d="M13.47,83.08s-4.32-2.1-4.75-7.94v7.94h4.75Z"/>
288
+ <path class="cls-26" d="M68.1,83.08s4.32-2.1,4.75-7.94v7.94h-4.75Z"/>
289
+ <path class="cls-3" d="M9.99,37.96s.69-18.07,1.07-21.34"/>
290
+ <path class="cls-3" d="M71.74,39.1s-.83-18.03-1.21-21.29"/>
291
+ <path class="cls-2" d="M10.98,18.74c-.08-2.09.56-6.51,1.85-7.96s11.36-6.13,10.1-5.09c-2.37,1.95-9.78,8.23-10.58,9.43s-.72,3.54-1.37,3.62Z"/>
292
+ <path class="cls-2" d="M70.51,18.74c.08-2.09-.56-6.51-1.85-7.96s-11.36-6.13-10.1-5.09c2.37,1.95,9.78,8.23,10.58,9.43.8,1.21.72,3.54,1.37,3.62Z"/>
293
+ <path class="cls-11" d="M40.82,27.04c10.27,0,23.15.8,28.54,6.98l.04-.23s-.54-16.5-1.19-19.63c-.69-.85-5.98-5.64-9.05-8.03-.18-.15-.37-.29-.56-.43-.11-.08-.22-.16-.32-.23h-.04c-4.37-2.78-11.79-2.89-17.43-2.89s-13.06.11-17.43,2.89h0s0,0,0,0c-.42.27-.82.56-1.18.88-.03.03-.06.05-.08.08-3.11,2.47-8,6.91-8.66,7.72-.64,3.13-1.18,19.86-1.18,19.86h0c5.39-6.17,18.27-6.98,28.54-6.98Z"/>
294
+ <path class="cls-32" d="M40.84,26.81c9.39,0,20.93,1.1,27.17,5.69.66-1.12-4.04-22.12-8.19-25.74-4.18-3.65-12.67-4.19-18.99-4.19s-14.8.54-18.99,4.19c-4.15,3.62-8.84,24.62-8.19,25.74,6.25-4.58,17.78-5.69,27.17-5.69Z"/>
295
+ <path class="cls-28" d="M40.84,26.81c9.21,0,20.52.65,26.64,5.23.64-1.12-3.96-22.07-8.03-25.69-4.1-3.65-12.42-3.78-18.61-3.78s-14.51.13-18.61,3.78c-4.07,3.62-8.67,24.57-8.03,25.69,6.12-4.58,17.43-5.23,26.64-5.23Z"/>
296
+ <g class="cls-49">
297
+ <path class="cls-38" d="M40.83,25.7c3.94,0,9.82.23,9.82.23,0,0-1.27-5.79-.07-6.1,3.01-.77,13.83,3.01,13.83,3.01,0,0-3.02-13.62-4.4-14.32s-13.35-1.93-19.18-1.93-17.81,1.22-19.18,1.93-4.4,14.32-4.4,14.32c0,0,10.91-3.7,13.92-2.92,1.18.31.02,6.01.02,6.01,0,0,5.7-.23,9.64-.23Z"/>
298
+ </g>
299
+ <g>
300
+ <g>
301
+ <path class="cls-27" d="M40.82,26.81c10.62,0,24.02.86,29.06,7.61-.21,7.72-1.93,19.95-2.15,21.02-.17.41-.86,0-.86,0,0,0-6-3.86-26.06-3.86s-26.06,3.86-26.06,3.86c0,0-.68.41-.86,0-.21-1.07-1.93-13.3-2.14-21.02,5.04-6.76,18.44-7.61,29.06-7.61Z"/>
302
+ <path class="cls-27" d="M40.82,27.46c10.4,0,23.54.48,28.48,7.1-.21,7.57-1.89,19.09-2.1,20.14-.17.4-.84,0-.84,0,0,0-5.88-3.78-25.54-3.78s-25.54,3.78-25.54,3.78c0,0-.67.4-.84,0-.21-1.05-1.89-12.58-2.1-20.14,4.94-6.62,18.07-7.1,28.48-7.1Z"/>
303
+ <path class="cls-41" d="M40.82,28.15c9.88,0,22.36.44,27.06,6.56-.2,7-1.8,17.65-2,18.62-.16.37-.8,0-.8,0,0,0-5.59-3.5-24.26-3.5s-24.26,3.5-24.26,3.5c0,0-.64.37-.8,0-.2-.97-1.8-11.63-2-18.62,4.69-6.12,17.17-6.56,27.05-6.56Z"/>
304
+ <g class="cls-46">
305
+ <g class="cls-50">
306
+ <rect class="cls-37" x="30.24" y="25.14" width="4.26" height="28.89"/>
307
+ <rect class="cls-40" x="35.69" y="25.14" width="1.38" height="28.89"/>
308
+ </g>
309
+ </g>
310
+ </g>
311
+ <g>
312
+ <path class="cls-27" d="M27.61,30.24s.31-.09.88-.2c.28-.06.63-.13,1.02-.2.39-.07.84-.15,1.32-.22.49-.06,1.02-.13,1.57-.2.56-.08,1.15-.13,1.76-.17.61-.05,1.25-.09,1.89-.14.64-.02,1.3-.04,1.95-.07.66-.01,1.31-.04,1.95-.04.64,0,1.28.03,1.89.04.61.02,1.21.04,1.77.05.56.02,1.09.08,1.58.11.98.08,1.79.17,2.36.22.57.06.89.1.89.1l-.02.32s-.33,0-.9,0c-.57,0-1.39,0-2.36-.01-.49,0-1.02-.02-1.58-.02-.56,0-1.15.01-1.76.02-.61,0-1.24.01-1.88,0-.64,0-1.29.04-1.94.05-.65.02-1.3.03-1.94.05-.64.03-1.27.07-1.87.1-.61.03-1.2.05-1.75.1-.56.04-1.08.07-1.57.11-.49.04-.93.08-1.32.11-.4.03-.74.07-1.02.1-.28.04-.5.05-.66.07-.15.02-.23.03-.23.03l-.06-.32Z"/>
313
+ <path class="cls-27" d="M21.45,29.91c.04.69.54.48,6.19.04,2.32-.18,5.5-.21,9.88-.54-15.05-.17-16.09.1-16.07.49Z"/>
314
+ <path class="cls-27" d="M38.97,29.78v-.77s-2.73.08-3.3.12v.83l3.3-.19Z"/>
315
+ </g>
316
+ <g>
317
+ <path class="cls-27" d="M48.55,29.32s.33,0,.9.02c.29.01.64.03,1.03.07.4.03.85.06,1.34.12.49.06,1.02.13,1.57.2.56.07,1.15.16,1.75.28.6.11,1.23.22,1.86.34.63.14,1.27.28,1.91.43.64.15,1.28.29,1.9.46.62.17,1.23.35,1.82.51.59.17,1.16.34,1.7.5.54.16,1.04.35,1.5.51.93.32,1.69.61,2.23.8.54.2.84.32.84.32l-.1.31s-.32-.07-.87-.22c-.55-.15-1.34-.34-2.28-.6-.47-.13-.98-.28-1.52-.42-.54-.13-1.11-.28-1.71-.42-.59-.15-1.2-.3-1.82-.47-.62-.16-1.26-.29-1.89-.43-.63-.15-1.26-.3-1.89-.44-.63-.13-1.24-.26-1.84-.38-.6-.12-1.17-.25-1.72-.34-.55-.1-1.07-.2-1.55-.29-.48-.08-.92-.16-1.31-.22-.39-.07-.73-.12-1.01-.16-.28-.04-.5-.08-.65-.1-.15-.02-.23-.03-.23-.03l.02-.32Z"/>
318
+ <path class="cls-27" d="M42.57,28.05c-.09.69.43.58,6.07,1.24,2.31.27,5.44.85,9.79,1.38-14.73-3.08-15.81-3.02-15.86-2.62Z"/>
319
+ <path class="cls-27" d="M59.66,31.73l.19-.74s-2.66-.61-3.22-.71l-.21.81,3.24.65Z"/>
320
+ </g>
321
+ </g>
322
+ <g>
323
+ <g>
324
+ <path class="cls-4" d="M15.64,28.39c.32-1.27,1.53-4.42,2.17-4.99s12.35-3.82,13.03-3.06.13,4.89-.27,5.37c-.22.26-3.87.56-7.55,1.43-3.13.73-6.08,2-6.42,2.15-.72.32-1.15-.19-.97-.91Z"/>
325
+ <path class="cls-8" d="M16.83,27.51c.28-1.01.83-3.14,1.4-3.59.57-.45,11.13-3.44,11.73-2.83.6.61.11,3.51-.24,3.89-.19.21-3.41.58-6.66,1.27-2.76.58-5.37,1.68-5.66,1.8-.64.26-.73.04-.57-.53Z"/>
326
+ </g>
327
+ <g>
328
+ <g>
329
+ <line class="cls-14" x1="17.29" y1="28.25" x2="18.56" y2="23.94"/>
330
+ <line class="cls-14" x1="18.1" y1="27.96" x2="19.37" y2="23.64"/>
331
+ <line class="cls-14" x1="18.87" y1="27.68" x2="20.14" y2="23.37"/>
332
+ <line class="cls-14" x1="19.74" y1="27.32" x2="20.92" y2="23.1"/>
333
+ <line class="cls-14" x1="20.61" y1="27" x2="21.69" y2="22.87"/>
334
+ <line class="cls-14" x1="21.43" y1="26.82" x2="22.51" y2="22.6"/>
335
+ <line class="cls-14" x1="22.2" y1="26.68" x2="23.38" y2="22.37"/>
336
+ <line class="cls-14" x1="23.11" y1="26.41" x2="24.06" y2="22.23"/>
337
+ <line class="cls-14" x1="23.94" y1="26.27" x2="24.7" y2="22.09"/>
338
+ <line class="cls-14" x1="24.8" y1="26.04" x2="25.34" y2="22"/>
339
+ <line class="cls-14" x1="29.69" y1="21.17" x2="29.58" y2="25.14"/>
340
+ <line class="cls-14" x1="29.1" y1="21.17" x2="28.85" y2="25.27"/>
341
+ <line class="cls-14" x1="28.42" y1="21.17" x2="28.16" y2="25.41"/>
342
+ <line class="cls-14" x1="27.69" y1="21.44" x2="27.39" y2="25.5"/>
343
+ <line class="cls-14" x1="26.91" y1="21.62" x2="26.52" y2="25.73"/>
344
+ <line class="cls-14" x1="26.09" y1="21.76" x2="25.7" y2="25.87"/>
345
+ </g>
346
+ <path class="cls-14" d="M16.87,27.67c.28-1.01.83-3.14,1.4-3.59.57-.45,11.13-3.44,11.73-2.83s.11,3.51-.24,3.89c-.19.21-3.41.58-6.66,1.27-2.76.58-5.37,1.68-5.66,1.8-.64.26-.73.04-.57-.53Z"/>
347
+ </g>
348
+ </g>
349
+ <g>
350
+ <g>
351
+ <path class="cls-4" d="M66.19,28.39c-.32-1.27-1.53-4.42-2.17-4.99s-12.35-3.82-13.03-3.06-.13,4.71.27,5.19c.22.26,3.87.56,7.55,1.43,3.13.73,6.08,2,6.42,2.15.72.32,1.15,0,.97-.72Z"/>
352
+ <path class="cls-13" d="M65.01,27.51c-.28-1.01-.83-3.14-1.4-3.59-.57-.45-11.13-3.44-11.73-2.83-.6.61-.11,3.51.24,3.89.19.21,3.41.58,6.66,1.27,2.76.58,5.37,1.68,5.66,1.8.64.26.73.04.57-.53Z"/>
353
+ </g>
354
+ <g>
355
+ <line class="cls-1" x1="64.59" y1="28.09" x2="63.32" y2="23.78"/>
356
+ <line class="cls-1" x1="63.78" y1="27.8" x2="62.51" y2="23.48"/>
357
+ <line class="cls-1" x1="63" y1="27.52" x2="61.74" y2="23.21"/>
358
+ <line class="cls-1" x1="62.14" y1="27.16" x2="60.96" y2="22.94"/>
359
+ <line class="cls-1" x1="61.27" y1="26.84" x2="60.19" y2="22.71"/>
360
+ <line class="cls-1" x1="60.45" y1="26.66" x2="59.37" y2="22.43"/>
361
+ <line class="cls-1" x1="59.68" y1="26.52" x2="58.5" y2="22.21"/>
362
+ <line class="cls-1" x1="58.77" y1="26.25" x2="57.82" y2="22.07"/>
363
+ <line class="cls-1" x1="57.94" y1="26.11" x2="57.18" y2="21.93"/>
364
+ <line class="cls-1" x1="57.08" y1="25.88" x2="56.54" y2="21.84"/>
365
+ <line class="cls-1" x1="52.19" y1="21.01" x2="52.3" y2="24.98"/>
366
+ <line class="cls-1" x1="52.78" y1="21.01" x2="53.03" y2="25.11"/>
367
+ <line class="cls-1" x1="53.46" y1="21.01" x2="53.72" y2="25.25"/>
368
+ <line class="cls-1" x1="54.19" y1="21.28" x2="54.49" y2="25.34"/>
369
+ <line class="cls-1" x1="54.97" y1="21.46" x2="55.36" y2="25.57"/>
370
+ <line class="cls-1" x1="55.79" y1="21.6" x2="56.18" y2="25.7"/>
371
+ </g>
372
+ </g>
373
+ <g>
374
+ <path class="cls-36" d="M59.45,6.35c-4.1-3.65-12.42-3.78-18.61-3.78s-14.51.13-18.61,3.78c-.26.23-.51.52-.77.88.84.56,9.2-1.62,19.38-1.52,10.19-.11,18.55,2.08,19.38,1.52-.26-.35-.51-.65-.77-.88Z"/>
375
+ <path class="cls-9" d="M58.34,5.54s0,0,0-.01c-4.36-2.84-11.84-2.95-17.52-2.95s-13.13.11-17.49,2.93c0,.01,0,.02,0,.03-1.23,1.38,7.08-1.14,17.5-1.03,10.42-.11,18.73,2.41,17.5,1.03Z"/>
376
+ <g>
377
+ <path class="cls-3" d="M25.03,5.23s6.5-1.85,15.81-1.85,15.7,1.85,15.7,1.85"/>
378
+ <line class="cls-3" x1="25.03" y1="5.86" x2="25.03" y2="4.6"/>
379
+ <line class="cls-3" x1="56.48" y1="5.86" x2="56.52" y2="4.6"/>
380
+ </g>
381
+ <path class="cls-1" d="M58.34,5.54s0,0,0-.01c-4.36-2.84-11.84-2.95-17.52-2.95s-13.13.11-17.49,2.93c0,.01,0,.02,0,.03-1.23,1.38,7.08-1.14,17.5-1.03,10.42-.11,18.73,2.41,17.5,1.03Z"/>
382
+ <ellipse class="cls-6" cx="40.84" cy="3.38" rx="1.69" ry=".48"/>
383
+ </g>
384
+ <g>
385
+ <path class="cls-27" d="M12.35,75.76c.32-.74.35-1.77.35-1.77,0,0,.4-14.32.4-16.73s-2.06-20.96-2.97-21.02c-.43.43-.42,6.89-.42,6.89,0,0,.48,28.61.48,30.66,0,.73,1.74,2.89,2.14,1.97Z"/>
386
+ <path class="cls-45" d="M12.05,74.9c.22-.69.24-1.7.24-1.7,0,0,.28-13.35.28-15.61s-1.69-20.1-2.31-20.15c-.29.4-.01,6.97-.01,6.97,0,0,.33,27.05.33,28.96,0,.69,1.2,2.37,1.47,1.52Z"/>
387
+ <polygon class="cls-27" points="12.57 57.85 10.75 56.38 10.75 55.16 12.52 56.6 12.57 57.85"/>
388
+ </g>
389
+ <g>
390
+ <path class="cls-27" d="M69.31,75.76c-.32-.74-.35-1.77-.35-1.77,0,0-.4-14.32-.4-16.73s2.06-20.96,2.97-21.02c.43.43.42,6.89.42,6.89,0,0-.48,28.61-.48,30.66,0,.73-1.74,2.89-2.14,1.97Z"/>
391
+ <path class="cls-45" d="M69.61,74.9c-.22-.69-.24-1.7-.24-1.7,0,0-.28-13.35-.28-15.61s1.69-20.1,2.31-20.15c.29.4.01,6.97.01,6.97,0,0-.33,27.05-.33,28.96,0,.69-1.2,2.37-1.47,1.52Z"/>
392
+ <polygon class="cls-27" points="69.09 57.85 70.91 56.38 70.91 55.16 69.14 56.6 69.09 57.85"/>
393
+ </g>
394
+ <g>
395
+ <path class="cls-27" d="M2.2,46.69s-.58-.73-.05-1.44c.89-1.17,5.49-2.46,6.16-1.77v1.51s-6.11,1.7-6.11,1.7Z"/>
396
+ <path class="cls-44" d="M10.3,42.5c1.12-.12,1.84,3.04,1.46,5.17-.38,1.61-1.06-2.04-2.47-2.04-2.61,0-4.99.76-6.55,1.69-.48-.08-.44-.64-.44-.64,0,0,.55-1.01,6.02-1.97v-1.24c1.38-.04,1.8-.95,1.98-.97Z"/>
397
+ <path class="cls-30" d="M2.74,47.33s.1.48,2.98-.28c2.88-.76,2.6-1.37,2.6-1.37,0,0-2.44-.04-5.58,1.65Z"/>
398
+ </g>
399
+ <path class="cls-21" d="M14.14,14.66c.41-.64,4.32-4.33,5.96-5.84-3.03,5.09-5.71,14.1-6.99,23.22l1.03-17.38Z"/>
400
+ <path class="cls-21" d="M67.54,14.66c-.41-.64-4.32-4.33-5.96-5.84,3.03,5.09,5.71,14.1,6.99,23.22l-1.03-17.38Z"/>
401
+ <g>
402
+ <path class="cls-27" d="M79.33,46.69s.58-.73.05-1.44c-.89-1.17-5.49-2.46-6.16-1.77v1.51s6.11,1.7,6.11,1.7Z"/>
403
+ <path class="cls-44" d="M71.23,42.5c-1.12-.12-1.84,3.04-1.46,5.17.38,1.61,1.06-2.04,2.47-2.04,2.61,0,4.99.76,6.55,1.69.48-.08.44-.64.44-.64,0,0-.55-1.01-6.02-1.97v-1.24c-1.38-.04-1.8-.95-1.98-.97Z"/>
404
+ <path class="cls-30" d="M78.79,47.33s-.1.48-2.98-.28c-2.88-.76-2.6-1.37-2.6-1.37,0,0,2.44-.04,5.58,1.65Z"/>
405
+ </g>
406
+ </g>
407
+ <g>
408
+ <path class="cls-35" d="M40.79,56.62c4.05,0,8.28.3,12.19.79v-4.34c-1.85-.24-5.23-.48-12.19-.48s-10.34.24-12.19.48v4.34h0c3.91-.5,8.15-.8,12.2-.8Z"/>
409
+ <path class="cls-43" d="M28.6,53.08s8.68.51,12.22.51c3.32,0,12.16-.51,12.16-.51-1.85-.24-5.23-.48-12.19-.48s-10.34.24-12.19.48Z"/>
410
+ <path class="cls-31" d="M28.6,53.08l.75,3.21s5.56-.67,11.37-.67,11.52.49,11.52.49l.74-3.04v4.34s-7.13-.8-12.19-.8-12.19.83-12.19.83v-4.37Z"/>
411
+ </g>
412
+ <path class="cls-5" d="M40.79,83.08h26.66s.29-22.01-.79-22.47c-4.51-2.13-15.77-3.99-25.87-3.99s-21.36,1.86-25.87,3.99c-1.07.46-.79,22.47-.79,22.47h26.66"/>
413
+ <path class="cls-20" d="M40.79,82.94h23.99s.26-19.81-.71-20.22c-4.06-1.91-14.19-3.59-23.28-3.59s-19.23,1.68-23.28,3.59c-.97.41-.71,20.22-.71,20.22h23.99"/>
414
+ <path class="cls-7" d="M53.04,83.08s-1.2-1.61-2.01-1.61h-20.43c-.8,0-2.01,1.61-2.01,1.61h24.44Z"/>
415
+ <g>
416
+ <path class="cls-39" d="M14.23,60.07v-3.87c1.97-1.04,8.42-2.92,13.65-3.26l.09,3.82s-8.87,1.1-13.74,3.32Z"/>
417
+ <path class="cls-25" d="M67.32,60.07v-3.87c-1.97-1.04-8.42-2.92-13.65-3.26l-.09,3.82s8.87,1.1,13.74,3.32Z"/>
418
+ </g>
419
+ <path class="cls-18" d="M12.57,15.73s-1.18,17.53-1.15,20.16c.02,2.63-.88,0-.88,0l.81-16.78c.58-.38,1.22-3.38,1.22-3.38Z"/>
420
+ <path class="cls-18" d="M68.98,15.73s1.18,17.53,1.15,20.16c-.02,2.63.88,0,.88,0l-.81-16.78c-.57-.38-1.22-3.38-1.22-3.38Z"/>
421
+ </g>
422
+ <path class="cls-42" d="M40.81,1.93c19.71,0,25.89,5.31,28.53,7.35,2.56,1.97,3.63,23.17,3.73,34.19.05,0,.09,0,.14,0,.13-.13.41-.19.78-.19,1.54,0,4.66,1.02,5.38,1.96.54.71-.05,1.44-.05,1.44l-.11-.03s.02.03.02.03c0,0-.3.63-1.65.63-.46,0-1.04-.07-1.77-.26-2.87-.76-2.6-1.37-2.6-1.37-.05,0-.1,0-.14,0-.08,1.75-.51,2.43-.51,2.43l.24,34.98H8.81l.24-34.98s-.42-.67-.51-2.43c-.08,0-.15,0-.23.01,0,0,.27.61-2.6,1.37-.73.19-1.31.26-1.77.26-1.35,0-1.65-.63-1.65-.63,0,0,0-.01.02-.03l-.11.03s-.58-.73-.05-1.44c.71-.95,3.83-1.96,5.37-1.96.37,0,.65.06.78.19.08,0,.15,0,.23-.02.1-11.03,1.18-32.22,3.73-34.19,2.65-2.04,8.82-7.35,28.53-7.35M40.81,0C21.07,0,14.27,5.29,11.36,7.54l-.26.2c-.83.64-2.38,1.84-3.53,15.06-.55,6.38-.83,13.45-.92,18.62-1.93.25-4.94,1.22-6.02,2.66-.99,1.31-.65,2.9.08,3.81l.8.99.36-.1c.54.28,1.23.46,2.09.46.67,0,1.43-.11,2.26-.33.33-.09.63-.17.91-.26l-.24,34.42v1.94s1.93,0,1.93,0h65.94v-1.94s-.25-34.39-.25-34.39c.26.08.53.16.82.24.83.22,1.59.33,2.26.33.86,0,1.55-.18,2.09-.46l.36.1.8-.99c.73-.91,1.07-2.5.08-3.81-1.07-1.42-4.01-2.38-5.94-2.65-.09-5.16-.37-12.24-.92-18.62-1.15-13.22-2.7-14.42-3.53-15.06l-.26-.2c-2.91-2.26-9.71-7.54-29.45-7.54h0Z"/>
423
+ </g>
424
+ <g>
425
+ <g>
426
+ <rect class="cls-23" x="7.11" y="83.4" width="67.42" height="75.29" rx="1.29" ry="1.29"/>
427
+ <rect class="cls-12" x="7.11" y="83.4" width="67.42" height="75.29" rx="1.29" ry="1.29"/>
428
+ </g>
429
+ <g class="cls-48">
430
+ <path class="cls-16" d="M10.12,153.22c.99-.97,2.44-62.42,2.44-64.51s-2.85-2.41-2.85-2.41l.4,66.92Z"/>
431
+ <path class="cls-16" d="M71.4,153.22c-.99-.97-2.44-62.42-2.44-64.51s2.85-2.41,2.85-2.41l-.4,66.92Z"/>
432
+ </g>
433
+ <path class="cls-29" d="M12.57,88.7c0,.05,0,.16,0,.32h56.4c0-.16,0-.27,0-.32,0-2.09,2.85-2.41,2.85-2.41H9.72s2.85.32,2.85,2.41Z"/>
434
+ <path class="cls-33" d="M7.82,157.73c-.39,0-.71-.58-.71-1.29v-72.08c0-.71.58-1.29,1.29-1.29h64.85c.71,0,1.29.58,1.29,1.29v72.08c0,.71-.32,1.29-.72,1.29s-.72-.58-.72-1.29v-70.18c0-.71-.58-1.29-1.29-1.29H9.81c-.71,0-1.29.58-1.29,1.29v70.18c0,.71-.32,1.29-.71,1.29Z"/>
435
+ <rect class="cls-10" x="7.11" y="83.4" width="67.42" height="75.29" rx="1.29" ry="1.29"/>
436
+ </g>
437
+ </g>
438
+ </g>
439
+ <g>
440
+ <path class="cls-19" d="M54.11,116.82h-12.9c-.49,0-.85-.46-.73-.93l4.37-18.19c.19-.81-.87-1.29-1.35-.61l-20.1,28.24c-.36.5,0,1.19.61,1.19h12.9c.49,0,.85.46.73.93l-4.37,18.19c-.19.81.87,1.29,1.35.61l20.1-28.24c.36-.5,0-1.19-.61-1.19Z"/>
441
+ <path class="cls-24" d="M56.66,115.55h-12.9c-.49,0-.85-.46-.73-.93l4.37-18.19c.19-.81-.87-1.29-1.35-.61l-20.1,28.24c-.36.5,0,1.19.61,1.19h12.9c.49,0,.85.46.73.93l-4.37,18.19c-.19.81.87,1.29,1.35.61l20.1-28.24c.36-.5,0-1.19-.61-1.19Z"/>
442
+ <g class="cls-47">
443
+ <path class="cls-17" d="M32.08,121.64c-.8,1.33-2.3,2.12-3.85,1.98-.1,0-.16-.02-.18-.03-.27-.2-.33-.57-.13-.84l11.52-15.76c.2-.27.57-.33.84-.13.27.2.33.57.13.84,0,0-5.72,9.62-8.33,13.94Z"/>
444
+ </g>
445
+ </g>
446
+ </g>
447
+ </g>
448
+ </svg>