rapid-router 5.4.1__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 (354) hide show
  1. example_project/rapid_router_test_settings.py +164 -0
  2. example_project/settings.py +152 -0
  3. example_project/urls.py +15 -0
  4. example_project/{example_project/wsgi.py → wsgi.py} +2 -1
  5. game/__init__.py +1 -1
  6. game/admin.py +43 -4
  7. game/app_settings.py +3 -7
  8. game/character.py +26 -18
  9. game/decor.py +172 -97
  10. game/end_to_end_tests/base_game_test.py +44 -33
  11. game/end_to_end_tests/editor_page.py +17 -2
  12. game/end_to_end_tests/game_page.py +127 -45
  13. game/end_to_end_tests/selenium_test_case.py +1 -20
  14. game/end_to_end_tests/test_cow_crashes.py +3 -5
  15. game/end_to_end_tests/test_language_dropdown.py +14 -0
  16. game/end_to_end_tests/test_level_editor.py +290 -0
  17. game/end_to_end_tests/test_level_failures.py +1 -1
  18. game/end_to_end_tests/test_level_selection.py +79 -0
  19. game/end_to_end_tests/test_play_through.py +240 -102
  20. game/end_to_end_tests/test_python_levels.py +44 -13
  21. game/end_to_end_tests/test_saving_workspace.py +22 -0
  22. game/forms.py +9 -2
  23. game/level_management.py +38 -29
  24. game/messages.py +1218 -203
  25. game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
  26. game/migrations/0026_levels_pt2.py +13 -2
  27. game/migrations/0032_cannot_turn_left_level.py +13 -2
  28. game/migrations/0033_recursion_level.py +13 -2
  29. game/migrations/0034_joes_level.py +13 -2
  30. game/migrations/0035_disable_route_score_level_70.py +0 -2
  31. game/migrations/0036_level_score_73.py +0 -2
  32. game/migrations/0037_level_score_79.py +0 -2
  33. game/migrations/0038_level_score_40.py +0 -1
  34. game/migrations/0042_level_score_73.py +0 -2
  35. game/migrations/0048_add_cow_field_and_blocks.py +0 -2
  36. game/migrations/0049_level_score_34.py +0 -2
  37. game/migrations/0050_level_score_40.py +0 -2
  38. game/migrations/0051_level_score_49.py +0 -1
  39. game/migrations/0076_level_locked_for_class.py +19 -0
  40. game/migrations/0077_alter_level_next_level.py +52 -0
  41. game/migrations/0078_add_block_types.py +23 -0
  42. game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
  43. game/migrations/0080_level_disable_algorithm_score.py +18 -0
  44. game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
  45. game/migrations/0082_level_43_solution.py +16 -0
  46. game/migrations/0083_add_cows_to_existing_levels.py +195 -0
  47. game/migrations/0084_alter_block_block_type.py +18 -0
  48. game/migrations/0085_add_new_blocks.py +53 -0
  49. game/migrations/0086_loop_levels.py +482 -0
  50. game/migrations/0087_workspace_python_view_enabled.py +18 -0
  51. game/migrations/0088_rename_episodes.py +35 -0
  52. game/migrations/0089_episodes_in_development.py +30 -0
  53. game/migrations/0090_add_missing_model_solutions.py +144 -0
  54. game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
  55. game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
  56. game/migrations/0093_alter_level_character_name.py +18 -0
  57. game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
  58. game/migrations/0095_level_commands.py +18 -0
  59. game/migrations/0096_alter_level_commands.py +18 -0
  60. game/migrations/0097_add_python_den_levels.py +1515 -0
  61. game/migrations/0098_add_episode_link_fields.py +44 -0
  62. game/migrations/0099_python_episodes_links.py +103 -0
  63. game/migrations/0100_reorder_python_levels.py +179 -0
  64. game/migrations/0101_rename_episodes.py +45 -0
  65. game/migrations/0102_reoder_episodes_13_14.py +136 -0
  66. game/migrations/0103_level_1015_solution.py +26 -0
  67. game/migrations/0104_remove_level_direct_drive.py +17 -0
  68. game/migrations/0105_delete_invalid_attempts.py +18 -0
  69. game/migrations/0106_fields_to_snake_case.py +48 -0
  70. game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
  71. game/migrations/0108_episode_indy_worksheet_link.py +18 -0
  72. game/migrations/0109_create_episodes_23_and_24.py +99 -0
  73. game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
  74. game/migrations/0111_create_worksheets.py +149 -0
  75. game/migrations/0112_worksheet_locked_classes.py +21 -0
  76. game/migrations/0113_level_needs_approval.py +18 -0
  77. game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
  78. game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
  79. game/migrations/0116_update_worksheet_video_links.py +68 -0
  80. game/migrations/0117_update_solutions_to_if_else.py +61 -0
  81. game/models.py +157 -16
  82. game/permissions.py +34 -19
  83. game/python_den_urls.py +26 -0
  84. game/random_road.py +43 -127
  85. game/serializers.py +12 -17
  86. game/static/django_reverse_js/js/reverse.js +171 -0
  87. game/static/game/css/LilitaOne-Regular.ttf +0 -0
  88. game/static/game/css/backgrounds.css +14 -10
  89. game/static/game/css/dataTables.custom.css +4 -2
  90. game/static/game/css/dataTables.jqueryui.css +561 -320
  91. game/static/game/css/editor.css +47 -0
  92. game/static/game/css/game.css +43 -49
  93. game/static/game/css/game_screen.css +116 -53
  94. game/static/game/css/jquery.dataTables.css +455 -251
  95. game/static/game/css/level_editor.css +10 -1
  96. game/static/game/css/level_selection.css +32 -3
  97. game/static/game/css/level_share.css +6 -5
  98. game/static/game/css/skulpt/codemirror.css +1 -0
  99. game/static/game/image/Python_Den_hero_student.png +0 -0
  100. game/static/game/image/Python_levels_page.svg +1954 -0
  101. game/static/game/image/characters/front_view/Electric_van.svg +448 -0
  102. game/static/game/image/characters/top_view/Electric_van.svg +448 -0
  103. game/static/game/image/characters/top_view/Sleigh.svg +436 -0
  104. game/static/game/image/decor/city/solar_panel.svg +1200 -0
  105. game/static/game/image/decor/farm/solar_panel.svg +86 -0
  106. game/static/game/image/decor/grass/solar_panel.svg +86 -0
  107. game/static/game/image/decor/snow/barn.svg +1788 -0
  108. game/static/game/image/decor/snow/cfc.svg +1050 -147
  109. game/static/game/image/decor/snow/crops.svg +7370 -0
  110. game/static/game/image/decor/snow/hospital.svg +1220 -0
  111. game/static/game/image/decor/snow/house1.svg +971 -0
  112. game/static/game/image/decor/snow/house2.svg +1574 -0
  113. game/static/game/image/decor/snow/school.svg +1071 -0
  114. game/static/game/image/decor/snow/shop.svg +3211 -0
  115. game/static/game/image/decor/snow/solar_panel.svg +173 -0
  116. game/static/game/image/electric_van.svg +448 -0
  117. game/static/game/image/icons/add_house.svg +26 -0
  118. game/static/game/image/icons/delete_house.svg +26 -0
  119. game/static/game/image/icons/description.svg +1 -0
  120. game/static/game/image/icons/hint.svg +1 -0
  121. game/static/game/image/icons/if_else.svg +3 -0
  122. game/static/game/image/icons/python.svg +1 -1
  123. game/static/game/image/if_else_example.png +0 -0
  124. game/static/game/image/pigeon.svg +684 -0
  125. game/static/game/image/python_den_header.svg +19 -0
  126. game/static/game/js/animation.js +84 -28
  127. game/static/game/js/blockly/msg/js/bg.js +52 -1
  128. game/static/game/js/blockly/msg/js/ca.js +52 -1
  129. game/static/game/js/blockly/msg/js/en-gb.js +52 -1
  130. game/static/game/js/blockly/msg/js/en.js +52 -1
  131. game/static/game/js/blockly/msg/js/es.js +52 -1
  132. game/static/game/js/blockly/msg/js/fr.js +52 -1
  133. game/static/game/js/blockly/msg/js/hi.js +52 -1
  134. game/static/game/js/blockly/msg/js/it.js +52 -1
  135. game/static/game/js/blockly/msg/js/pl.js +52 -1
  136. game/static/game/js/blockly/msg/js/pt-br.js +52 -1
  137. game/static/game/js/blockly/msg/js/ru.js +52 -1
  138. game/static/game/js/blockly/msg/js/ur.js +52 -1
  139. game/static/game/js/blocklyCompiler.js +550 -392
  140. game/static/game/js/blocklyControl.js +335 -302
  141. game/static/game/js/blocklyCustomBlocks.js +691 -458
  142. game/static/game/js/blocklyCustomisations.js +3 -1
  143. game/static/game/js/button.js +12 -0
  144. game/static/game/js/cow.js +15 -130
  145. game/static/game/js/drawing.js +313 -201
  146. game/static/game/js/editor.js +23 -0
  147. game/static/game/js/game.js +148 -139
  148. game/static/game/js/jquery.dataTables.min.js +3 -159
  149. game/static/game/js/level_editor.js +823 -448
  150. game/static/game/js/level_moderation.js +33 -2
  151. game/static/game/js/level_selection.js +62 -25
  152. game/static/game/js/loadLanguages.js +21 -0
  153. game/static/game/js/map.js +106 -36
  154. game/static/game/js/model.js +55 -107
  155. game/static/game/js/pathFinder.js +73 -72
  156. game/static/game/js/program.js +184 -193
  157. game/static/game/js/pythonControl.js +14 -1
  158. game/static/game/js/scoreboard.js +0 -37
  159. game/static/game/js/scoreboardSharedLevels.js +48 -0
  160. game/static/game/js/sharing.js +22 -10
  161. game/static/game/js/skulpt/codemirror.js +5 -4
  162. game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
  163. game/static/game/js/sound.js +52 -5
  164. game/static/game/js/van.js +0 -7
  165. game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
  166. game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
  167. game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
  168. game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
  169. game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
  170. game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
  171. game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
  172. game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
  173. game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
  174. game/static/game/raphael_image/decor/snow/house1.svg +971 -0
  175. game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
  176. game/static/game/raphael_image/decor/snow/school.svg +1071 -0
  177. game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
  178. game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
  179. game/static/game/raphael_image/pigeon.svg +685 -0
  180. game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
  181. game/static/game/sass/game.scss +22 -6
  182. game/static/game/sound/clown_horn.mp3 +0 -0
  183. game/static/game/sound/clown_horn.ogg +0 -0
  184. game/static/game/sound/electric_van_starting.mp3 +0 -0
  185. game/static/game/sound/electric_van_starting.ogg +0 -0
  186. game/static/game/sound/pigeon.mp3 +0 -0
  187. game/static/game/sound/pigeon.ogg +0 -0
  188. game/static/game/sound/sleigh_bells.mp3 +0 -0
  189. game/static/game/sound/sleigh_bells.ogg +0 -0
  190. game/static/game/sound/sleigh_crash.mp3 +0 -0
  191. game/static/game/sound/sleigh_crash.ogg +0 -0
  192. game/templates/game/base.html +35 -15
  193. game/templates/game/basenonav.html +23 -17
  194. game/templates/game/game.html +236 -111
  195. game/templates/game/level_editor.html +353 -275
  196. game/templates/game/level_moderation.html +19 -6
  197. game/templates/game/level_selection.html +75 -62
  198. game/templates/game/python_den_level_selection.html +291 -0
  199. game/templates/game/python_den_worksheet.html +101 -0
  200. game/templates/game/scoreboard.html +88 -65
  201. game/tests/test_level_editor.py +210 -35
  202. game/tests/test_level_moderation.py +6 -20
  203. game/tests/test_level_selection.py +332 -11
  204. game/tests/test_python_den_worksheet.py +85 -0
  205. game/tests/test_scoreboard.py +258 -66
  206. game/tests/utils/level.py +43 -3
  207. game/tests/utils/teacher.py +2 -2
  208. game/theme.py +21 -21
  209. game/urls.py +125 -78
  210. game/views/language_code_conversions.py +90 -0
  211. game/views/level.py +201 -63
  212. game/views/level_editor.py +109 -48
  213. game/views/level_moderation.py +29 -6
  214. game/views/level_selection.py +179 -56
  215. game/views/level_solutions.py +600 -106
  216. game/views/scoreboard.py +181 -66
  217. game/views/worksheet.py +25 -0
  218. rapid_router-7.6.8.dist-info/METADATA +174 -0
  219. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
  220. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
  221. rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
  222. example_project/example_project/__init__.py +0 -1
  223. example_project/example_project/settings.py +0 -54
  224. example_project/example_project/urls.py +0 -16
  225. example_project/manage.py +0 -10
  226. game/autoconfig.py +0 -59
  227. game/csp_config.py +0 -23
  228. game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
  229. game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
  230. game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
  231. game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
  232. game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
  233. game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
  234. game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
  235. game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
  236. game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
  237. game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
  238. game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
  239. game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
  240. game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
  241. game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
  242. game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
  243. game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
  244. game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
  245. game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
  246. game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
  247. game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
  248. game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
  249. game/locale/de_DE/LC_MESSAGES/django.po +0 -405
  250. game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
  251. game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
  252. game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
  253. game/locale/el_GR/LC_MESSAGES/django.po +0 -405
  254. game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
  255. game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
  256. game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
  257. game/locale/en_GB/LC_MESSAGES/django.po +0 -405
  258. game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
  259. game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
  260. game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
  261. game/locale/es_ES/LC_MESSAGES/django.po +0 -405
  262. game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
  263. game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
  264. game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
  265. game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
  266. game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
  267. game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
  268. game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
  269. game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
  270. game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
  271. game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
  272. game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
  273. game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
  274. game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
  275. game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
  276. game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
  277. game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
  278. game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
  279. game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
  280. game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
  281. game/locale/id_ID/LC_MESSAGES/django.po +0 -405
  282. game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
  283. game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
  284. game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
  285. game/locale/it_IT/LC_MESSAGES/django.po +0 -405
  286. game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
  287. game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
  288. game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
  289. game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
  290. game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
  291. game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
  292. game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
  293. game/locale/lol_US/LC_MESSAGES/django.po +0 -405
  294. game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
  295. game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
  296. game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
  297. game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
  298. game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
  299. game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
  300. game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
  301. game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
  302. game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
  303. game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
  304. game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
  305. game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
  306. game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
  307. game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
  308. game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
  309. game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
  310. game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
  311. game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
  312. game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
  313. game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
  314. game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
  315. game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
  316. game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
  317. game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
  318. game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
  319. game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
  320. game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
  321. game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
  322. game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
  323. game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
  324. game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
  325. game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
  326. game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
  327. game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
  328. game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
  329. game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
  330. game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
  331. game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
  332. game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
  333. game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
  334. game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
  335. game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
  336. game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
  337. game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
  338. game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
  339. game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
  340. game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
  341. game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
  342. game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
  343. game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
  344. game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
  345. game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
  346. game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
  347. game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
  348. game/static/game/image/actions/go.svg +0 -18
  349. game/static/game/image/icons/destination.svg +0 -9
  350. game/static/game/js/pqselect.min.js +0 -9
  351. game/static/game/js/widget-scroller.js +0 -906
  352. rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
  353. rapid_router-5.4.1.dist-info/METADATA +0 -24
  354. {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1071 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
3
+ <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="354px"
4
+ height="394.2px" viewBox="0 0 354 394.2" style="enable-background:new 0 0 354 394.2;" xml:space="preserve">
5
+ <style type="text/css">
6
+ .st0{fill:url(#SVGID_1_);}
7
+ .st1{opacity:0.2;fill:#183049;enable-background:new ;}
8
+ .st2{fill:#A05547;stroke:#82291D;stroke-miterlimit:10;}
9
+ .st3{fill:none;stroke:#82291D;stroke-miterlimit:10;}
10
+ .st4{opacity:0.7;fill:#82291D;enable-background:new ;}
11
+ .st5{fill:#3B527A;stroke:#162842;stroke-miterlimit:10;}
12
+ .st6{fill:url(#SVGID_2_);}
13
+ .st7{fill:none;stroke:#162842;stroke-miterlimit:10;}
14
+ .st8{fill:url(#SVGID_3_);}
15
+ .st9{fill:url(#SVGID_4_);}
16
+ .st10{fill:url(#SVGID_5_);}
17
+ .st11{fill:url(#SVGID_6_);}
18
+ .st12{fill:url(#SVGID_7_);}
19
+ .st13{fill:url(#SVGID_8_);}
20
+ .st14{fill:url(#SVGID_9_);}
21
+ .st15{fill:url(#SVGID_10_);}
22
+ .st16{fill:url(#SVGID_11_);}
23
+ .st17{fill:url(#SVGID_12_);}
24
+ .st18{fill:url(#SVGID_13_);}
25
+ .st19{fill:url(#SVGID_14_);}
26
+ .st20{fill:url(#SVGID_15_);}
27
+ .st21{fill:url(#SVGID_16_);}
28
+ .st22{fill:url(#SVGID_17_);}
29
+ .st23{fill:url(#SVGID_18_);}
30
+ .st24{fill:url(#SVGID_19_);}
31
+ .st25{fill:url(#SVGID_20_);}
32
+ .st26{fill:url(#SVGID_21_);}
33
+ .st27{fill:url(#SVGID_22_);}
34
+ .st28{fill:url(#SVGID_23_);}
35
+ .st29{fill:#F2E140;stroke:#D19A4A;stroke-miterlimit:10;}
36
+ .st30{fill:#A58E2B;}
37
+ .st31{fill:none;stroke:#A82A2A;stroke-width:2;stroke-linecap:round;stroke-miterlimit:10;}
38
+ .st32{fill:#3A352E;stroke:#000000;stroke-linecap:round;stroke-miterlimit:10;}
39
+ .st33{opacity:0.6;fill:#FFFFFF;enable-background:new ;}
40
+ .st34{fill:#C1AE25;stroke:#F2E140;stroke-width:0.6;stroke-linecap:round;stroke-miterlimit:10;}
41
+ .st35{fill:url(#SVGID_24_);stroke:#8E1E03;stroke-miterlimit:10;}
42
+ .st36{opacity:0.6;fill:none;stroke:#8E1E03;stroke-miterlimit:10;enable-background:new ;}
43
+ .st37{fill:none;stroke:#F2E140;stroke-linecap:round;stroke-miterlimit:10;}
44
+ .st38{fill:none;stroke:#F2E140;stroke-width:0.6;stroke-linecap:round;stroke-miterlimit:10;}
45
+ .st39{fill:#E05D3F;stroke:#8E1E03;stroke-miterlimit:10;}
46
+ .st40{fill:url(#SVGID_25_);stroke:#6B0000;stroke-miterlimit:10;}
47
+ .st41{fill:#2F4A63;stroke:#0C2735;stroke-width:3;stroke-miterlimit:10;}
48
+ .st42{fill:#B6E7EF;}
49
+ .st43{fill:none;stroke:#0C2735;stroke-width:2;stroke-miterlimit:10;}
50
+ .st44{fill:none;stroke:#0C2735;stroke-miterlimit:10;}
51
+ .st45{opacity:0.4;}
52
+ .st46{fill:#0F3044;}
53
+ .st47{fill:#2F4A63;stroke:#0C2735;stroke-miterlimit:10;}
54
+ .st48{opacity:0.4;fill:#0F3044;enable-background:new ;}
55
+ .st49{fill:none;stroke:#0C2735;stroke-width:3;stroke-miterlimit:10;}
56
+ .st50{fill:url(#SVGID_26_);}
57
+ .st51{fill:none;stroke:#6979A8;stroke-miterlimit:10;}
58
+ .st52{fill:none;stroke:#D0E9F4;stroke-miterlimit:10;}
59
+ .st53{fill:#B0CAD6;}
60
+ .st54{opacity:0.6;}
61
+ .st55{opacity:0.5;fill:url(#SVGID_27_);enable-background:new ;}
62
+ .st56{fill:url(#SVGID_28_);}
63
+ .st57{fill:url(#SVGID_29_);}
64
+ .st58{opacity:0.5;fill:url(#SVGID_30_);enable-background:new ;}
65
+ .st59{fill:#C3E2ED;}
66
+ .st60{fill:url(#SVGID_31_);}
67
+ .st61{opacity:0.1;fill:#CAE6ED;enable-background:new ;}
68
+ .st62{fill:url(#SVGID_32_);}
69
+ .st63{fill:url(#SVGID_33_);}
70
+ .st64{opacity:0.4;fill:#14182B;enable-background:new ;}
71
+ .st65{fill:url(#SVGID_34_);}
72
+ .st66{fill:url(#SVGID_35_);}
73
+ .st67{opacity:0.1;fill:#14182B;enable-background:new ;}
74
+ .st68{fill:url(#SVGID_36_);}
75
+ .st69{fill:url(#SVGID_37_);}
76
+ .st70{fill:url(#SVGID_38_);}
77
+ .st71{fill:url(#SVGID_39_);}
78
+ .st72{fill:none;stroke:#DCF2F9;stroke-width:2;stroke-miterlimit:10;}
79
+ .st73{fill:url(#SVGID_40_);}
80
+ .st74{fill:url(#SVGID_41_);}
81
+ .st75{opacity:0.2;fill:url(#SVGID_42_);enable-background:new ;}
82
+ .st76{fill:url(#SVGID_43_);}
83
+ .st77{fill:url(#SVGID_44_);}
84
+ .st78{fill:url(#SVGID_45_);}
85
+ .st79{fill:url(#SVGID_46_);}
86
+ .st80{fill:url(#SVGID_47_);}
87
+ .st81{fill:url(#SVGID_48_);}
88
+ .st82{fill:url(#SVGID_49_);}
89
+ .st83{fill:url(#SVGID_50_);}
90
+ .st84{fill:url(#SVGID_51_);}
91
+ .st85{fill:url(#SVGID_52_);}
92
+ </style>
93
+ <g id="Layer_1">
94
+ <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="32.369" y1="91.831" x2="318.629" y2="91.831">
95
+ <stop offset="0" style="stop-color:#E5F7FF"/>
96
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
97
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
98
+ <stop offset="1" style="stop-color:#EEF7FF"/>
99
+ </linearGradient>
100
+ <rect x="32.4" y="14.2" class="st0" width="286.3" height="155.3"/>
101
+ <path class="st1" d="M26.4,161.2V5.6c0-2.6,3-5.6,7.6-5.6C36.5,0.1,142.3,0,142.3,0l3.7,3.9L36.3,14.2v147L26.4,161.2L26.4,161.2z"
102
+ />
103
+ <path class="st1" d="M144,17.4c0,0-91,1.3-94.7,6.7c-3,4.3-3.6,146.4-3.6,146.4H34.6V12.4h106.1L144,17.4L144,17.4z"/>
104
+ <polygon class="st2" points="146,8.2 36.3,8.2 36.3,170.1 44,170.1 44,16.9 144,16.9 "/>
105
+ <line class="st3" x1="44" y1="16.9" x2="41" y2="14.2"/>
106
+ <polygon class="st4" points="41,170.1 44,17.2 145,14.2 37.3,14.2 "/>
107
+ <path class="st5" d="M141.3,2.2H34c-2.8,0-5,2.2-5,5L29,170h12V14.2h100.3c2.8,0,5-2.2,5-5v-2C146.3,4.4,144.1,2.2,141.3,2.2
108
+ L141.3,2.2z"/>
109
+
110
+ <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="37.3599" y1="509.749" x2="154.6909" y2="509.749" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
111
+ <stop offset="0" style="stop-color:#294060"/>
112
+ <stop offset="0.155" style="stop-color:#294060;stop-opacity:0"/>
113
+ <stop offset="0.835" style="stop-color:#294060;stop-opacity:0"/>
114
+ <stop offset="1" style="stop-color:#294060"/>
115
+ </linearGradient>
116
+ <path class="st6" d="M141.3,2.2H34c-2.8,0-5,2.2-5,5L29,170h12V14.2h100.3c2.8,0,5-2.2,5-5v-2C146.3,4.4,144.1,2.2,141.3,2.2
117
+ L141.3,2.2z"/>
118
+ <g>
119
+ <line class="st7" x1="58.3" y1="14.2" x2="58.3" y2="2.2"/>
120
+ <line class="st7" x1="87.7" y1="14.2" x2="87.7" y2="2.2"/>
121
+ <line class="st7" x1="117" y1="14.2" x2="117" y2="2.2"/>
122
+ <line class="st7" x1="29" y1="170.1" x2="41" y2="170.1"/>
123
+ <line class="st7" x1="29" y1="144.1" x2="41" y2="144.1"/>
124
+ <line class="st7" x1="29" y1="118.1" x2="41" y2="118.1"/>
125
+ <line class="st7" x1="29" y1="92.1" x2="41" y2="92.1"/>
126
+ <line class="st7" x1="29" y1="66.1" x2="41" y2="66.1"/>
127
+ <line class="st7" x1="29" y1="40.1" x2="41" y2="40.1"/>
128
+ <line class="st7" x1="29" y1="14.2" x2="41" y2="14.2"/>
129
+ </g>
130
+
131
+ <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="34.769" y1="580.7493" x2="44.768" y2="580.4993" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
132
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
133
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
134
+ </linearGradient>
135
+ <rect x="30.3" y="145.7" class="st8" width="8.5" height="22.2"/>
136
+
137
+ <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="34.77" y1="554.8098" x2="44.769" y2="554.5598" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
138
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
139
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
140
+ </linearGradient>
141
+ <rect x="30.3" y="119.8" class="st9" width="8.5" height="22.3"/>
142
+
143
+ <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="34.7691" y1="528.8623" x2="44.7691" y2="528.6123" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
144
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
145
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
146
+ </linearGradient>
147
+ <rect x="30.3" y="93.9" class="st10" width="8.5" height="22.2"/>
148
+
149
+ <linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="34.771" y1="502.9188" x2="44.769" y2="502.6688" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
150
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
151
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
152
+ </linearGradient>
153
+ <rect x="30.3" y="67.9" class="st11" width="8.5" height="22.3"/>
154
+
155
+ <linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="34.7701" y1="476.9758" x2="44.7691" y2="476.7258" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
156
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
157
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
158
+ </linearGradient>
159
+ <rect x="30.3" y="42" class="st12" width="8.5" height="22.3"/>
160
+
161
+ <linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="34.77" y1="451.0313" x2="44.769" y2="450.7813" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
162
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
163
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
164
+ </linearGradient>
165
+ <rect x="30.3" y="16" class="st13" width="8.5" height="22.2"/>
166
+
167
+ <linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="-1908.7999" y1="4379.7935" x2="-1898.6998" y2="4379.4937" gradientTransform="matrix(0 1 -1 0 4452.1899 1908.7)">
168
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
169
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
170
+ </linearGradient>
171
+ <rect x="60.8" y="3.9" class="st14" width="23.6" height="8.5"/>
172
+
173
+ <linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="-1908.6997" y1="4409.1968" x2="-1898.6997" y2="4408.8965" gradientTransform="matrix(0 1 -1 0 4452.1899 1908.7)">
174
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
175
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
176
+ </linearGradient>
177
+ <path class="st15" d="M56,12.4H30.5l0.1-4.5c0-2.2,1.8-4,4-4H56V12.4z"/>
178
+
179
+ <linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="-1908.7004" y1="2327.6741" x2="-1898.7004" y2="2327.374" gradientTransform="matrix(0 1 1 0 -2195.3899 1908.7)">
180
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
181
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
182
+ </linearGradient>
183
+ <path class="st16" d="M119.3,12.4h25.5l-0.1-4.5c0-2.2-1.8-4-4-4h-21.4L119.3,12.4L119.3,12.4z"/>
184
+
185
+ <linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="-1908.8008" y1="4349.9556" x2="-1898.7007" y2="4349.7554" gradientTransform="matrix(0 1 -1 0 4452.1899 1908.7)">
186
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
187
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
188
+ </linearGradient>
189
+ <rect x="90.6" y="3.9" class="st17" width="23.6" height="8.5"/>
190
+ <path class="st1" d="M326.7,161.2V5.6c0-2.6-3-5.6-7.6-5.6C316.6,0.1,210.8,0,210.8,0l-3.7,3.9l109.7,10.2v147L326.7,161.2
191
+ L326.7,161.2z"/>
192
+ <path class="st1" d="M209.1,17.4c0,0,91,1.3,94.7,6.7c3,4.3,3.6,146.4,3.6,146.4h11.1V12.4H212.4L209.1,17.4L209.1,17.4z"/>
193
+ <polygon class="st2" points="207.1,8.2 316.8,8.2 316.8,170.1 309,170.1 309,16.9 209.1,16.9 "/>
194
+ <line class="st3" x1="309" y1="16.9" x2="312.1" y2="14.2"/>
195
+ <polygon class="st4" points="312.1,170.1 309,17.2 208.1,14.2 315.8,14.2 "/>
196
+ <path class="st5" d="M211.8,2.2h107.3c2.8,0,5,2.2,5,5l0,162.8h-12V14.2H211.8c-2.8,0-5-2.2-5-5v-2C206.8,4.4,209,2.2,211.8,2.2
197
+ L211.8,2.2z"/>
198
+
199
+ <linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="2170.9099" y1="509.749" x2="2288.241" y2="509.749" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
200
+ <stop offset="0" style="stop-color:#294060"/>
201
+ <stop offset="0.155" style="stop-color:#294060;stop-opacity:0"/>
202
+ <stop offset="0.835" style="stop-color:#294060;stop-opacity:0"/>
203
+ <stop offset="1" style="stop-color:#294060"/>
204
+ </linearGradient>
205
+ <path class="st18" d="M211.8,2.2h107.3c2.8,0,5,2.2,5,5l0,162.8h-12V14.2H211.8c-2.8,0-5-2.2-5-5v-2C206.8,4.4,209,2.2,211.8,2.2
206
+ L211.8,2.2z"/>
207
+ <g>
208
+ <line class="st7" x1="294.8" y1="14.2" x2="294.8" y2="2.2"/>
209
+ <line class="st7" x1="265.4" y1="14.2" x2="265.4" y2="2.2"/>
210
+ <line class="st7" x1="236.1" y1="14.2" x2="236.1" y2="2.2"/>
211
+ <line class="st7" x1="324.1" y1="170.1" x2="312.1" y2="170.1"/>
212
+ <line class="st7" x1="324.1" y1="144.1" x2="312.1" y2="144.1"/>
213
+ <line class="st7" x1="324.1" y1="118.1" x2="312.1" y2="118.1"/>
214
+ <line class="st7" x1="324.1" y1="92.1" x2="312.1" y2="92.1"/>
215
+ <line class="st7" x1="324.1" y1="66.1" x2="312.1" y2="66.1"/>
216
+ <line class="st7" x1="324.1" y1="40.1" x2="312.1" y2="40.1"/>
217
+ <line class="st7" x1="324.1" y1="14.2" x2="312.1" y2="14.2"/>
218
+ </g>
219
+
220
+ <linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="2168.3999" y1="580.7473" x2="2178.3999" y2="580.4973" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
221
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
222
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
223
+ </linearGradient>
224
+ <rect x="314.3" y="145.7" class="st19" width="8.5" height="22.2"/>
225
+
226
+ <linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="2168.3999" y1="554.8077" x2="2178.3999" y2="554.5577" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
227
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
228
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
229
+ </linearGradient>
230
+ <rect x="314.3" y="119.8" class="st20" width="8.5" height="22.3"/>
231
+
232
+ <linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="2168.3999" y1="528.8602" x2="2178.3999" y2="528.6102" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
233
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
234
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
235
+ </linearGradient>
236
+ <rect x="314.3" y="93.9" class="st21" width="8.5" height="22.2"/>
237
+
238
+ <linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="2168.3999" y1="502.9167" x2="2178.3999" y2="502.6667" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
239
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
240
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
241
+ </linearGradient>
242
+ <rect x="314.3" y="67.9" class="st22" width="8.5" height="22.3"/>
243
+
244
+ <linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="2168.3997" y1="476.9738" x2="2178.3997" y2="476.7238" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
245
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
246
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
247
+ </linearGradient>
248
+ <rect x="314.3" y="42" class="st23" width="8.5" height="22.3"/>
249
+
250
+ <linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="2168.3999" y1="451.0292" x2="2178.3999" y2="450.7792" gradientTransform="matrix(-1 0 0 1 2495 -423.67)">
251
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
252
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
253
+ </linearGradient>
254
+ <rect x="314.3" y="16" class="st24" width="8.5" height="22.2"/>
255
+
256
+ <linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="-1908.8002" y1="2246.1851" x2="-1898.7001" y2="2245.885" gradientTransform="matrix(0 1 1 0 -1965.49 1908.7)">
257
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
258
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
259
+ </linearGradient>
260
+ <rect x="268.6" y="3.9" class="st25" width="23.6" height="8.5"/>
261
+
262
+ <linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="-1908.7001" y1="2275.584" x2="-1898.7001" y2="2275.2839" gradientTransform="matrix(0 1 1 0 -1965.49 1908.7)">
263
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
264
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
265
+ </linearGradient>
266
+ <path class="st26" d="M297.1,12.4h25.5l-0.1-4.5c0-2.2-1.8-4-4-4h-21.4V12.4z"/>
267
+
268
+ <linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="-1908.7001" y1="4461.2847" x2="-1898.7001" y2="4460.9849" gradientTransform="matrix(0 1 -1 0 4682.0903 1908.7)">
269
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
270
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
271
+ </linearGradient>
272
+ <path class="st27" d="M233.8,12.4h-25.5l0.1-4.5c0-2.2,1.8-4,4-4h21.4V12.4z"/>
273
+
274
+ <linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="-1908.801" y1="2216.343" x2="-1898.7009" y2="2216.1431" gradientTransform="matrix(0 1 1 0 -1965.49 1908.7)">
275
+ <stop offset="0" style="stop-color:#FFFFFF;stop-opacity:0.4"/>
276
+ <stop offset="1" style="stop-color:#FFFFFF;stop-opacity:0"/>
277
+ </linearGradient>
278
+ <rect x="238.9" y="3.9" class="st28" width="23.6" height="8.5"/>
279
+ <circle class="st1" cx="263.7" cy="63.5" r="23.4"/>
280
+ <circle class="st29" cx="263.4" cy="63.6" r="21.7"/>
281
+ <path class="st30" d="M244.8,63.4l1.3,3.4l-0.4-0.2l17.1-2.5c0.2,0,0.3,0.1,0.4,0.3c0,0.2-0.1,0.3-0.3,0.4l-17.1,2.6l-0.2,0
282
+ l-0.2-0.2l-2.4-2.7c-0.4-0.4-0.3-1.1,0.1-1.4s1.1-0.3,1.4,0.1C244.7,63.2,244.8,63.3,244.8,63.4L244.8,63.4z"/>
283
+ <path class="st30" d="M263.7,44.8l-3.4,1.3l0.2-0.3l2.5,17.1c0,0.2-0.1,0.3-0.3,0.4s-0.3-0.1-0.4-0.3l-2.6-17.1l0-0.2l0.2-0.2
284
+ l2.7-2.4c0.4-0.4,1.1-0.3,1.4,0.1s0.3,1.1-0.1,1.4C263.9,44.7,263.8,44.8,263.7,44.8L263.7,44.8z"/>
285
+ <path class="st30" d="M262.6,84.3l-2.7-2.4l-0.2-0.2l0-0.2l2.6-17.1c0-0.2,0.2-0.3,0.4-0.3c0.2,0,0.3,0.2,0.3,0.4l-2.5,17.1
286
+ l-0.2-0.3l3.4,1.3c0.5,0.2,0.8,0.8,0.6,1.3c-0.2,0.5-0.8,0.8-1.3,0.6C262.8,84.5,262.7,84.4,262.6,84.3L262.6,84.3z"/>
287
+ <path class="st30" d="M283.9,64.4l-2.4,2.7l-0.2,0.2l-0.2,0L264,64.8c-0.2,0-0.3-0.2-0.3-0.4c0-0.2,0.2-0.3,0.4-0.3l17.1,2.5
288
+ l-0.4,0.2l1.3-3.4c0.2-0.5,0.8-0.8,1.3-0.6c0.5,0.2,0.8,0.8,0.6,1.3C284.1,64.2,284,64.3,283.9,64.4L283.9,64.4z"/>
289
+ <line class="st31" x1="263.4" y1="43.9" x2="263.4" y2="83.4"/>
290
+ <line class="st31" x1="283.1" y1="63.7" x2="243.6" y2="63.7"/>
291
+ <circle class="st32" cx="263.4" cy="63.6" r="3.3"/>
292
+ <circle class="st33" cx="263.2" cy="63.5" r="0.9"/>
293
+ <polygon class="st1" points="294.6,125.7 269.3,124.5 269.3,123.5 261.6,123.5 261.6,124.1 240,123 240,137.3 261.6,136.2
294
+ 261.6,136.8 269.3,136.8 269.3,135.8 294.6,134.5 "/>
295
+ <g>
296
+ <rect x="262.7" y="124.6" class="st34" width="5.4" height="11"/>
297
+ <polygon class="st34" points="265.2,126 263.7,125 267,125 "/>
298
+ <polygon class="st34" points="265.2,134.3 263.7,135.3 267,135.3 "/>
299
+ </g>
300
+ <g>
301
+
302
+ <linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="242.4399" y1="553.825" x2="301.9399" y2="553.825" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
303
+ <stop offset="0" style="stop-color:#C55A2A"/>
304
+ <stop offset="1" style="stop-color:#BC3F19"/>
305
+ </linearGradient>
306
+ <polygon class="st35" points="293.6,133.3 234.1,135.3 234.1,125 293.6,127 "/>
307
+ <path class="st36" d="M243.3,126.2c0.8,0,1.5,1.6,1.5,3.5v0.7c0,2-0.7,3.5-1.5,3.5"/>
308
+ <path class="st37" d="M243.3,126.2L243.3,126.2c1.6,0,2.9,1.6,2.9,3.5v0.7c0,2-1.3,3.5-2.9,3.5l0,0"/>
309
+ <path class="st36" d="M286.2,127.3c0.7,0,1.2,1.1,1.2,2.5v0.5c0,1.4-0.6,2.5-1.2,2.5"/>
310
+ <path class="st38" d="M286.2,127.3L286.2,127.3c1.4,0,2.5,1.1,2.5,2.5v0.5c0,1.4-1.1,2.5-2.5,2.5l0,0"/>
311
+ <polygon class="st39" points="236.1,135.2 234.1,135.3 234.1,125 236.1,125.1 "/>
312
+ </g>
313
+ <circle class="st1" cx="146.3" cy="69.3" r="3.5"/>
314
+
315
+ <radialGradient id="SVGID_25_" cx="153.46" cy="490.75" r="6.234" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)" gradientUnits="userSpaceOnUse">
316
+ <stop offset="2.500000e-02" style="stop-color:#DB0303"/>
317
+ <stop offset="1" style="stop-color:#770303"/>
318
+ </radialGradient>
319
+ <circle class="st40" cx="145.9" cy="67.7" r="3.5"/>
320
+ <polygon class="st1" points="0,232.5 21.8,161.2 29,161.2 29,163.8 40.8,163.8 44,161.2 308.9,161.2 312,163.5 324,163.5
321
+ 324,161.2 331.3,161.2 354,232.5 334,304.2 129.9,304.2 129.9,394.2 41.4,394.2 41.4,304.5 20.3,304.5 "/>
322
+ <rect x="47.8" y="283.9" class="st41" width="76.5" height="105"/>
323
+ <rect x="59.3" y="296.6" class="st42" width="53.6" height="80.5"/>
324
+ <line class="st43" x1="112.9" y1="377.2" x2="124.3" y2="388.9"/>
325
+ <line class="st43" x1="47.8" y1="388.9" x2="59.3" y2="377.2"/>
326
+ <line class="st43" x1="112.9" y1="296.6" x2="124.3" y2="283.9"/>
327
+ <line class="st43" x1="59.3" y1="296.6" x2="47.8" y2="283.9"/>
328
+ <polygon class="st41" points="326.8,297.5 26.3,297.5 16.3,232.5 26.3,167.5 326.8,167.5 336.8,232.5 "/>
329
+ <g>
330
+ <line class="st44" x1="335.9" y1="226.1" x2="326.8" y2="167.5"/>
331
+ <line class="st44" x1="320.7" y1="226.1" x2="312.5" y2="167.5"/>
332
+ <line class="st44" x1="305.5" y1="226.1" x2="298.2" y2="167.5"/>
333
+ <line class="st44" x1="290.4" y1="226.1" x2="283.9" y2="167.5"/>
334
+ <line class="st44" x1="275.2" y1="226.1" x2="269.6" y2="167.5"/>
335
+ <line class="st44" x1="260" y1="226.1" x2="255.3" y2="167.5"/>
336
+ <line class="st44" x1="244.9" y1="226.1" x2="241" y2="167.5"/>
337
+ <line class="st44" x1="229.7" y1="226.1" x2="226.6" y2="167.5"/>
338
+ <line class="st44" x1="214.5" y1="226.1" x2="212.4" y2="167.5"/>
339
+ <line class="st44" x1="199.3" y1="226.1" x2="198" y2="167.5"/>
340
+ <line class="st44" x1="184.2" y1="226.1" x2="183.7" y2="167.5"/>
341
+ <line class="st44" x1="169" y1="226.1" x2="169.4" y2="167.5"/>
342
+ <line class="st44" x1="153.8" y1="226.1" x2="155.1" y2="167.5"/>
343
+ <line class="st44" x1="138.7" y1="226.1" x2="140.8" y2="167.5"/>
344
+ <line class="st44" x1="123.5" y1="226.1" x2="126.5" y2="167.5"/>
345
+ <line class="st44" x1="108.3" y1="226.1" x2="112.2" y2="167.5"/>
346
+ <line class="st44" x1="93.1" y1="226.1" x2="97.9" y2="167.5"/>
347
+ <line class="st44" x1="78" y1="226.1" x2="83.6" y2="167.5"/>
348
+ <line class="st44" x1="62.8" y1="226.1" x2="69.3" y2="167.5"/>
349
+ <line class="st44" x1="47.6" y1="226.1" x2="55" y2="167.5"/>
350
+ <line class="st44" x1="32.5" y1="226.1" x2="40.7" y2="167.5"/>
351
+ <line class="st44" x1="17.3" y1="226.1" x2="26.4" y2="167.5"/>
352
+ </g>
353
+ <g>
354
+ <line class="st44" x1="335.9" y1="238.9" x2="326.8" y2="297.5"/>
355
+ <line class="st44" x1="320.7" y1="238.9" x2="312.5" y2="297.5"/>
356
+ <line class="st44" x1="305.5" y1="238.9" x2="298.2" y2="297.5"/>
357
+ <line class="st44" x1="290.4" y1="238.9" x2="283.9" y2="297.5"/>
358
+ <line class="st44" x1="275.2" y1="238.9" x2="269.6" y2="297.5"/>
359
+ <line class="st44" x1="260" y1="238.9" x2="255.3" y2="297.5"/>
360
+ <line class="st44" x1="244.9" y1="238.9" x2="241" y2="297.5"/>
361
+ <line class="st44" x1="229.7" y1="238.9" x2="226.6" y2="297.5"/>
362
+ <line class="st44" x1="214.5" y1="238.9" x2="212.4" y2="297.5"/>
363
+ <line class="st44" x1="199.3" y1="238.9" x2="198" y2="297.5"/>
364
+ <line class="st44" x1="184.2" y1="238.9" x2="183.7" y2="297.5"/>
365
+ <line class="st44" x1="169" y1="238.9" x2="169.4" y2="297.5"/>
366
+ <line class="st44" x1="153.8" y1="238.9" x2="155.1" y2="297.5"/>
367
+ <line class="st44" x1="138.7" y1="238.9" x2="140.8" y2="297.5"/>
368
+ <line class="st44" x1="123.5" y1="238.9" x2="126.5" y2="297.5"/>
369
+ <line class="st44" x1="108.3" y1="238.9" x2="112.2" y2="297.5"/>
370
+ <line class="st44" x1="93.1" y1="238.9" x2="97.9" y2="297.5"/>
371
+ <line class="st44" x1="78" y1="238.9" x2="83.6" y2="297.5"/>
372
+ <line class="st44" x1="62.8" y1="238.9" x2="69.3" y2="297.5"/>
373
+ <line class="st44" x1="47.6" y1="238.9" x2="55" y2="297.5"/>
374
+ <line class="st44" x1="32.5" y1="238.9" x2="40.7" y2="297.5"/>
375
+ <line class="st44" x1="17.3" y1="238.9" x2="26.4" y2="297.5"/>
376
+ </g>
377
+ <g class="st45">
378
+ <polygon class="st46" points="16.9,224.5 15.8,232.5 16.9,240.6 136.1,240.6 135,232.5 136.1,224.5 "/>
379
+ <polygon class="st46" points="336.3,224.5 217.1,224.5 218.2,232.5 217.1,240.6 336.3,240.6 337.3,232.5 "/>
380
+ </g>
381
+ <g>
382
+ <polygon class="st47" points="46.8,238.9 17.3,238.9 16.3,232.5 17.3,226.1 46.8,226.1 45.8,232.5 "/>
383
+ <polygon class="st47" points="76.4,238.9 46.8,238.9 45.8,232.5 46.8,226.1 76.4,226.1 75.3,232.5 "/>
384
+ <polygon class="st47" points="105.9,238.9 76.3,238.9 75.3,232.5 76.3,226.1 105.9,226.1 104.8,232.5 "/>
385
+ <polygon class="st47" points="135.5,238.9 106,238.9 105,232.5 106,226.1 135.5,226.1 134.5,232.5 "/>
386
+ </g>
387
+ <g>
388
+ <polygon class="st47" points="306.3,238.9 335.9,238.9 336.8,232.5 335.9,226.1 306.3,226.1 307.3,232.5 "/>
389
+ <polygon class="st47" points="276.8,238.9 306.3,238.9 307.3,232.5 306.3,226.1 276.8,226.1 277.8,232.5 "/>
390
+ <polygon class="st47" points="247.3,238.9 276.8,238.9 277.8,232.5 276.8,226.1 247.3,226.1 248.3,232.5 "/>
391
+ <polygon class="st47" points="217.7,238.9 247.2,238.9 248.2,232.5 247.2,226.1 217.7,226.1 218.7,232.5 "/>
392
+ </g>
393
+ <polygon class="st48" points="16.3,232.5 337,232.5 336,238.2 17.3,238.2 "/>
394
+ <polygon class="st49" points="326.8,297.5 30.9,291.8 16.3,232.5 26.3,167.5 326.8,167.5 336.8,232.5 "/>
395
+ <linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="127.46" y1="232.5005" x2="226.359" y2="232.5005">
396
+ <stop offset="0" style="stop-color:#E5F7FF"/>
397
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
398
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
399
+ <stop offset="1" style="stop-color:#EEF7FF"/>
400
+ </linearGradient>
401
+ <rect x="127.5" y="183" class="st50" width="98.9" height="98.9"/>
402
+ <g>
403
+ <rect x="128" y="183.5" class="st51" width="97.9" height="97.9"/>
404
+ <rect x="132.9" y="188.4" class="st51" width="88.1" height="88.1"/>
405
+ <rect x="137.8" y="193.3" class="st51" width="78.3" height="78.3"/>
406
+ <rect x="142.6" y="198.2" class="st51" width="68.5" height="68.5"/>
407
+ <rect x="147.5" y="203.1" class="st51" width="58.7" height="58.7"/>
408
+ <rect x="152.4" y="208" class="st51" width="49" height="49"/>
409
+ <rect x="157.3" y="212.9" class="st51" width="39.2" height="39.2"/>
410
+ <rect x="162.2" y="217.8" class="st51" width="29.4" height="29.4"/>
411
+ </g>
412
+ <g>
413
+ <rect x="127.5" y="183" class="st52" width="98.9" height="98.9"/>
414
+ <rect x="132.4" y="188" class="st52" width="89" height="89"/>
415
+ <rect x="137.4" y="192.9" class="st52" width="79.1" height="79.1"/>
416
+ <rect x="142.3" y="197.9" class="st52" width="69.2" height="69.2"/>
417
+ <rect x="147.2" y="202.8" class="st52" width="59.3" height="59.3"/>
418
+ <rect x="152.2" y="207.8" class="st52" width="49.4" height="49.4"/>
419
+ <rect x="157.1" y="212.7" class="st52" width="39.6" height="39.6"/>
420
+ <rect x="162.1" y="217.7" class="st52" width="29.7" height="29.7"/>
421
+ </g>
422
+ <path class="st53" d="M127.1,281.6c0,0,6.1-6.2,15.3-15.6c4.6-4.7,10-10.1,15.7-15.9c5.8-5.8,12-12,18.1-18.2
423
+ c6.2-6.2,12.4-12.3,18.2-18.1c5.8-5.8,11.3-11.1,15.9-15.8c9.4-9.2,15.6-15.3,15.6-15.3l0.7,0.7c0,0-6.1,6.2-15.3,15.6
424
+ c-4.6,4.7-10,10.1-15.7,15.9c-5.8,5.8-12,12-18.1,18.2c-6.2,6.2-12.4,12.3-18.2,18.1c-5.8,5.8-11.3,11.1-15.9,15.8
425
+ c-9.4,9.2-15.6,15.3-15.6,15.3L127.1,281.6L127.1,281.6z"/>
426
+ <path class="st53" d="M127.8,182.7c0,0,6.2,6.1,15.6,15.3c4.7,4.6,10.1,10,15.9,15.8c5.8,5.8,12,12,18.2,18.1
427
+ c6.2,6.2,12.3,12.4,18.1,18.2c5.8,5.8,11.1,11.3,15.8,15.9c9.2,9.4,15.3,15.6,15.3,15.6l-0.7,0.7c0,0-6.2-6.1-15.6-15.3
428
+ c-4.7-4.6-10.1-10-15.9-15.8c-5.8-5.8-12-12-18.2-18.1c-6.2-6.2-12.3-12.4-18.1-18.2c-5.8-5.8-11.1-11.3-15.8-15.9
429
+ c-9.2-9.4-15.3-15.6-15.3-15.6L127.8,182.7L127.8,182.7z"/>
430
+ <g class="st54">
431
+
432
+ <linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="17.86" y1="680.89" x2="114.18" y2="680.89" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
433
+ <stop offset="0" style="stop-color:#0F3044"/>
434
+ <stop offset="0.3" style="stop-color:#0F3044;stop-opacity:0"/>
435
+ <stop offset="0.7" style="stop-color:#0F3044;stop-opacity:0"/>
436
+ <stop offset="1" style="stop-color:#0F3044"/>
437
+ </linearGradient>
438
+ <polygon class="st55" points="9.2,208.1 9.2,306.3 58.3,257.2 "/>
439
+
440
+ <linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="17.86" y1="680.89" x2="114.17" y2="680.89" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
441
+ <stop offset="0" style="stop-color:#0F3044"/>
442
+ <stop offset="0.3" style="stop-color:#0F3044;stop-opacity:0"/>
443
+ <stop offset="0.7" style="stop-color:#0F3044;stop-opacity:0"/>
444
+ <stop offset="1" style="stop-color:#0F3044"/>
445
+ </linearGradient>
446
+ <polygon class="st56" points="107.4,208.1 107.4,306.3 58.3,257.2 "/>
447
+
448
+ <linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="4032.4802" y1="2464.1201" x2="4128.7798" y2="2464.1201" gradientTransform="matrix(0 -1 1 0 -2405.79 4338.5)">
449
+ <stop offset="0" style="stop-color:#14182B"/>
450
+ <stop offset="0.3" style="stop-color:#14182B;stop-opacity:0"/>
451
+ <stop offset="0.7" style="stop-color:#14182B;stop-opacity:0"/>
452
+ <stop offset="1" style="stop-color:#14182B"/>
453
+ </linearGradient>
454
+ <polygon class="st57" points="9.2,306.3 107.4,306.3 58.3,257.2 "/>
455
+
456
+ <linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="4032.4802" y1="2464.1201" x2="4128.7798" y2="2464.1201" gradientTransform="matrix(0 -1 1 0 -2405.79 4338.5)">
457
+ <stop offset="0" style="stop-color:#14182B"/>
458
+ <stop offset="0.3" style="stop-color:#14182B;stop-opacity:0"/>
459
+ <stop offset="0.7" style="stop-color:#14182B;stop-opacity:0"/>
460
+ <stop offset="1" style="stop-color:#14182B"/>
461
+ </linearGradient>
462
+ <polygon class="st58" points="9.2,208.1 107.4,208.1 58.3,257.2 "/>
463
+ </g>
464
+ <rect x="165.4" y="221" class="st59" width="23" height="23"/>
465
+ <polygon class="st42" points="188.4,244 165.4,244 176.9,232.5 "/>
466
+ <linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="165.41" y1="226.75" x2="188.41" y2="226.75">
467
+ <stop offset="0" style="stop-color:#E5F7FF"/>
468
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
469
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
470
+ <stop offset="1" style="stop-color:#EEF7FF"/>
471
+ </linearGradient>
472
+ <polygon class="st60" points="188.4,221 165.4,221 176.9,232.5 "/>
473
+ <polygon class="st59" points="165.4,221 165.4,244 176.9,232.5 "/>
474
+ <polygon class="st61" points="188.5,221 188.5,244 177,232.5 "/>
475
+ <rect x="165.4" y="221" class="st43" width="23" height="23"/>
476
+ <linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="63.299" y1="342.167" x2="108.332" y2="342.167">
477
+ <stop offset="0" style="stop-color:#E5F7FF"/>
478
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
479
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
480
+ <stop offset="1" style="stop-color:#EEF7FF"/>
481
+ </linearGradient>
482
+ <rect x="63.3" y="312.5" class="st62" width="45" height="59.3"/>
483
+ <path class="st42" d="M123.2,380.4c0.8-1.6,0.8-3.6-0.1-5.1c1.3-2.3,0.7-5.6-1.7-7c1.5-1.5,1.8-4,0.9-5.9c0.6-1.3,0.7-2.9,0.2-4.2
484
+ c2.9-1.6,3.1-6.1,0.7-8.1c1.4-1.9,1.3-4.8-0.3-6.5c2.4-2.2,2.1-6.7-1-8.2c2.7-1.3,3.3-5.1,1.7-7.4c1.3-1.9,1.2-4.8-0.5-6.5
485
+ c0.2-1.3-0.1-2.6-0.9-3.7c2.2-1.4,2.8-4.5,1.6-6.7c0.7-1.3,0.8-3,0.2-4.4c1.7-2.9,0.3-7.6-4.1-7.6c-4.1,0-5.6,4-4.5,6.9
486
+ c-0.9,1.5-0.9,3.6-0.1,5.1c-0.9,1.7-0.8,3.9,0.3,5.5c-2.6,1.6-2.9,5.7-0.9,7.8c-0.2,1.3,0.1,2.6,0.8,3.7c-1.6,2.3-1,6.1,1.7,7.4
487
+ c-2.9,1.4-3.4,5.6-1.3,7.9c-2.1,1.9-2.1,5.7,0,7.6c-1,1.4-1.2,3.4-0.6,5c-2.3,1.3-2.9,4.4-1.8,6.6c-1.1,2.3-0.4,5.3,1.9,6.6
488
+ c-1.6,1.6-1.8,4.3-0.7,6.2c-0.8,1.5-0.9,3.5-0.1,5c-0.6-0.3-1.3-0.4-2-0.4c-0.7,0-1.3,0.1-1.8,0.3c-0.5-0.2-1.1-0.3-1.8-0.3
489
+ c-1.9,0-3.2,0.8-4,2c-0.8-1-2-1.7-3.7-1.7c-1.4,0-2.4,0.4-3.2,1.1c-0.6,0.1-1.1,0.4-1.6,0.7c-0.6-0.7-1.4-1.2-2.5-1.4
490
+ c-0.7-0.5-1.6-0.8-2.7-0.8c-0.8,0-1.5,0.2-2.2,0.5c-0.6-0.3-1.3-0.5-2.2-0.5c-1.7,0-2.9,0.7-3.7,1.6c-0.8,0-1.6,0.2-2.2,0.5
491
+ c-0.2-0.3-0.4-0.5-0.6-0.7c-0.6-1.7-2.1-3.1-4.5-3.1c-2.4,0-4,1.4-4.5,3.2c-0.6,0.2-1,0.4-1.5,0.7c-0.8-0.6-1.8-1-3-1
492
+ c-0.8,0-1.5,0.2-2.2,0.4c-0.8-0.7-1.8-1.1-3.2-1.1c-0.5,0-0.9,0.1-1.3,0.2c-0.4-0.1-0.9-0.2-1.3-0.2c-0.3,0-0.7,0-1,0.1
493
+ c-0.7-0.4-1.5-0.7-2.5-0.7c0-0.6,0-1.2-0.2-1.8c0.6-2-0.1-4.4-1.9-5.6c3.7-1,4.4-5.8,2.1-8.2c0.3-0.8,0.4-1.7,0.2-2.5
494
+ c1.2-1.6,1.4-3.9,0.4-5.7c1-1.1,1.5-2.6,1.1-4.4c-0.6-2.9,2-6.9,0.1-9.5c-0.1-0.2-0.1-0.4-0.2-0.6c0.5-0.8,0.9-1.6,1.1-2.5
495
+ c0.6-2.4-0.5-4.8-0.1-7.1c0.4-2.4,1-4.1-0.5-6.4c0.2-0.5,0.4-0.9,0.5-1.1c0.2-0.5,0.6-3.4,0.4-5.3c0.1-0.1,0.3-0.3,0.4-0.5
496
+ c0.7-0.8,1.2-1.7,1.4-2.8c0.2-1.1,0-2.3-0.4-3.3c-0.1-0.1-0.1-0.3-0.2-0.6c0.2-0.6,0.3-1.3,0.3-2c0-0.8-1-2.7-1.3-3.7
497
+ c2.1-4.1-2.2-9.9-6.6-6.7c-1.6,1.1-2.6,2.1-3.2,3.9c-0.7,2.4,0.4,3.6,0.5,5.8c0.1,1.2-0.5,2.7-0.2,4.3c0,0.3,0.1,0.5,0.2,0.8
498
+ c-1.3,1.8-1.6,3.6-0.9,6.7c-0.3,0.3-0.6,0.6-0.8,1c-0.4,0.6-0.8,1.3-0.9,2c-0.5,2,0.1,4.2,1.4,5.8c0,0,0,0,0,0
499
+ c-0.2,0.7-0.3,1.4-0.3,1.5c-0.2,1.1-0.1,2,0.1,3.1c0,0.2,0.3,1.6,0.5,2.1c-0.3,0.3-0.9,1.2-1.1,1.5c-0.5,0.8-0.8,1.9-0.9,2.8
500
+ c-0.2,1.8,0.5,3.2,1.3,4.6c-0.6,3-0.8,5.7-0.1,9c0.1,0.4,0.2,0.8,0.4,1.2c-0.8,1.1-1.1,2.5-0.9,3.8c-1.5,1.9-1.4,4.9,0.2,6.7
501
+ c-0.7,2.1-0.1,4.7,1.8,5.9c-2.8,0.8-3.9,3.8-3.2,6.2c-0.8,2.8,0.7,6.3,4.5,6.4c-0.2,2.6,1.4,5.3,4.8,5.3c0.3,0,0.7,0,1-0.1
502
+ c0.7,0.5,1.6,0.7,2.7,0.7c0.5,0,0.9-0.1,1.3-0.2c0.4,0.1,0.9,0.2,1.3,0.2c0.8,0,1.5-0.2,2.2-0.4c0.8,0.7,1.8,1.1,3.2,1.1
503
+ c1.2,0,2.2-0.4,3-1c0.8,0.6,1.8,1,3,1c1.3,0,2.4-0.4,3.2-1.1c0.4,0.1,0.8,0.1,1.2,0.1c0.8,0,1.6-0.2,2.2-0.5
504
+ c0.8,1.1,2.1,1.8,3.8,1.8c1.7,0,2.9-0.7,3.7-1.6c0.8,0,1.5-0.2,2.1-0.5c0.3,0.2,0.7,0.3,1.1,0.4c0.7,0.5,1.6,0.8,2.7,0.8
505
+ c1.1,0,2.1-0.3,2.8-0.8c0.8,0.9,2,1.5,3.5,1.5c1.3,0,2.4-0.4,3.2-1.1c1.2-0.3,2.2-1,2.8-1.9c0.8,1,2,1.7,3.7,1.7
506
+ c0.7,0,1.3-0.1,1.8-0.3c0.5,0.2,1.1,0.3,1.8,0.3c0.9,0,1.7-0.2,2.4-0.6c0.8,0.6,1.7,0.9,2.9,0.9c1,0,1.9-0.3,2.6-0.7
507
+ C125.6,389.2,126.5,382.7,123.2,380.4z"/>
508
+ <linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="48.4397" y1="344.7928" x2="122.5607" y2="344.7928">
509
+ <stop offset="0" style="stop-color:#E5F7FF"/>
510
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
511
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
512
+ <stop offset="1" style="stop-color:#EEF7FF"/>
513
+ </linearGradient>
514
+ <path class="st63" d="M120.7,377.8c0.8-1.5,0.8-3.3-0.1-4.8c1.2-2.1,0.7-5.2-1.6-6.5c1.4-1.4,1.6-3.7,0.8-5.5
515
+ c0.6-1.2,0.6-2.7,0.1-3.9c2.7-1.5,2.9-5.6,0.7-7.6c1.3-1.8,1.2-4.5-0.3-6.1c2.3-2,2-6.3-0.9-7.7c2.5-1.2,3.1-4.7,1.6-6.9
516
+ c1.2-1.8,1.1-4.5-0.5-6.1c0.2-1.2-0.1-2.5-0.8-3.4c2.1-1.3,2.6-4.2,1.5-6.3c0.6-1.2,0.7-2.8,0.2-4.1c1.6-2.7,0.3-7.1-3.9-7.1
517
+ c-3.8,0-5.2,3.7-4.2,6.4c-0.8,1.4-0.9,3.3-0.1,4.8c-0.8,1.6-0.7,3.6,0.3,5.1c-2.5,1.5-2.7,5.3-0.8,7.3c-0.1,1.2,0.1,2.4,0.8,3.4
518
+ c-1.5,2.2-1,5.6,1.6,6.9c-2.7,1.3-3.1,5.3-1.2,7.4c-2,1.8-2,5.3,0,7.1c-1,1.3-1.2,3.2-0.6,4.7c-2.1,1.2-2.7,4.1-1.7,6.2
519
+ c-1,2.1-0.4,5,1.7,6.2c-1.5,1.5-1.7,4-0.7,5.8c-0.8,1.4-0.8,3.2-0.1,4.7c-0.6-0.2-1.2-0.4-1.9-0.4c-0.6,0-1.2,0.1-1.7,0.3
520
+ c-0.5-0.2-1.1-0.3-1.7-0.3c-1.7,0-3,0.8-3.7,1.9c-0.8-0.9-1.9-1.6-3.5-1.6c-1.3,0-2.3,0.4-3,1.1c-0.6,0.1-1.1,0.3-1.5,0.6
521
+ c-0.6-0.6-1.3-1.1-2.3-1.3c-0.7-0.4-1.5-0.7-2.5-0.7c-0.8,0-1.4,0.2-2,0.4c-0.6-0.3-1.2-0.4-2-0.4c-1.6,0-2.7,0.6-3.5,1.5
522
+ c-0.8,0-1.4,0.2-2,0.4c-0.2-0.2-0.4-0.5-0.6-0.7c-0.6-1.6-2-2.9-4.2-2.9c-2.3,0-3.7,1.3-4.2,3c-0.5,0.2-1,0.4-1.4,0.7
523
+ c-0.7-0.5-1.6-0.9-2.8-0.9c-0.8,0-1.4,0.2-2,0.4c-0.7-0.6-1.7-1-3-1c-0.5,0-0.9,0.1-1.2,0.2c-0.4-0.1-0.8-0.2-1.2-0.2
524
+ c-0.3,0-0.6,0-0.9,0.1c-0.6-0.4-1.4-0.7-2.4-0.7c0-0.6,0-1.2-0.2-1.7c0.5-1.9-0.1-4.1-1.7-5.2c3.4-0.9,4.1-5.4,2-7.7
525
+ c0.3-0.8,0.3-1.6,0.2-2.4c1.1-1.5,1.3-3.7,0.4-5.3c0.9-1,1.4-2.4,1.1-4.1c-0.6-2.7,1.8-6.4,0.1-8.9c0-0.2-0.1-0.4-0.1-0.6
526
+ c0.5-0.7,0.9-1.5,1.1-2.4c0.5-2.3-0.4-4.5-0.1-6.6c0.3-2.3,1-3.8-0.5-6c0.2-0.4,0.4-0.8,0.5-1c0.2-0.4,0.5-3.2,0.4-4.9
527
+ c0.1-0.1,0.3-0.3,0.4-0.5c0.7-0.8,1.1-1.6,1.3-2.6c0.1-1,0-2.1-0.4-3.1c-0.1-0.1-0.1-0.3-0.2-0.5c0.2-0.6,0.3-1.2,0.3-1.9
528
+ c0-0.8-0.9-2.5-1.2-3.5c2-3.8-2-9.2-6.2-6.2c-1.5,1-2.5,1.9-3,3.7c-0.7,2.2,0.4,3.3,0.5,5.4c0.1,1.1-0.5,2.5-0.2,4
529
+ c0,0.2,0.1,0.5,0.2,0.7c-1.2,1.6-1.5,3.4-0.9,6.2c-0.3,0.3-0.5,0.6-0.7,0.9c-0.3,0.5-0.7,1.2-0.9,1.8c-0.5,1.9,0.1,3.9,1.3,5.4
530
+ c0,0,0,0,0,0c-0.2,0.6-0.3,1.3-0.3,1.4c-0.2,1-0.1,1.9,0.1,2.9c0,0.2,0.3,1.5,0.5,2c-0.3,0.3-0.8,1.2-1,1.4
531
+ c-0.4,0.8-0.8,1.7-0.9,2.6c-0.2,1.7,0.5,2.9,1.2,4.3c-0.6,2.8-0.8,5.3-0.1,8.4c0.1,0.4,0.2,0.8,0.4,1.1c-0.7,1-1,2.3-0.8,3.6
532
+ c-1.4,1.8-1.3,4.6,0.2,6.2c-0.7,1.9-0.1,4.3,1.7,5.5c-2.6,0.7-3.6,3.5-3,5.8c-0.7,2.6,0.7,5.9,4.2,6c-0.1,2.4,1.4,4.9,4.5,4.9
533
+ c0.3,0,0.6,0,0.9-0.1c0.7,0.4,1.5,0.7,2.5,0.7c0.5,0,0.9-0.1,1.2-0.2c0.4,0.1,0.8,0.2,1.2,0.2c0.8,0,1.4-0.2,2-0.4
534
+ c0.7,0.6,1.7,1,3,1c1.2,0,2.1-0.3,2.8-0.9c0.7,0.5,1.6,0.9,2.8,0.9c1.2,0,2.2-0.4,3-1c0.3,0.1,0.7,0.1,1.1,0.1c0.8,0,1.5-0.2,2-0.4
535
+ c0.7,1,1.9,1.7,3.6,1.7c1.6,0,2.7-0.6,3.5-1.5c0.8,0,1.4-0.2,2-0.4c0.3,0.1,0.7,0.3,1,0.3c0.7,0.4,1.5,0.7,2.5,0.7
536
+ c1.1,0,1.9-0.3,2.6-0.7c0.8,0.8,1.9,1.4,3.3,1.4c1.3,0,2.2-0.4,3-1c1.2-0.3,2-0.9,2.6-1.7c0.8,0.9,1.9,1.5,3.5,1.5
537
+ c0.6,0,1.2-0.1,1.7-0.3c0.5,0.2,1.1,0.3,1.7,0.3c0.9,0,1.6-0.2,2.2-0.5c0.7,0.5,1.6,0.8,2.7,0.8c1,0,1.8-0.2,2.4-0.6
538
+ C123,386,123.8,380,120.7,377.8z"/>
539
+ <polygon class="st64" points="125.8,298.4 46.3,298.4 46.3,312.5 59.3,310.5 112.9,310.5 125.8,312 "/>
540
+ <linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="20.7485" y1="200.5657" x2="330.2495" y2="200.5657">
541
+ <stop offset="0" style="stop-color:#E5F7FF"/>
542
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
543
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
544
+ <stop offset="1" style="stop-color:#EEF7FF"/>
545
+ </linearGradient>
546
+ <polygon class="st65" points="31.3,172.2 20.7,226.1 119.1,226.1 121.5,182.7 224.9,183 228.4,231.9 330.2,230 325.6,169.3 "/>
547
+
548
+ <linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="22.431" y1="240.1591" x2="326.5551" y2="240.1591" gradientTransform="matrix(-1 0 0 -1 350.998 504.168)">
549
+ <stop offset="0" style="stop-color:#E5F7FF"/>
550
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
551
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
552
+ <stop offset="1" style="stop-color:#EEF7FF"/>
553
+ </linearGradient>
554
+ <polygon class="st66" points="318,293.8 328.6,239.9 230.2,239.9 227.8,283.3 124.4,283 120.9,234.2 24.4,237.3 34.2,293.4 "/>
555
+ <polygon class="st67" points="123.8,223.7 122.4,230.1 124.4,236.5 137.8,295.1 212.8,295.1 229.1,236.5 230.6,230.1 228.9,223.7
556
+ 212.9,165.1 136.8,165.1 "/>
557
+ <g>
558
+ <g>
559
+ <path class="st42" d="M326.1,170.8c-0.5-1.9-2.1-3.4-4.6-3.4c-0.9,0-1.7,0.2-2.3,0.5c-0.2,0-0.4,0-0.7,0c-1,0-1.8,0.2-2.5,0.6
560
+ c-0.3-0.1-0.7-0.1-1-0.1c-2.3,0-3.7,1.3-4.4,2.9c-0.6-1.9-2.1-3.4-4.6-3.4c-0.5,0-0.9,0.1-1.3,0.2c-0.8-0.7-1.9-1.2-3.2-1.2
561
+ c-2.4,0-3.9,1.4-4.5,3.1c-0.8-1.2-2.1-2.1-4-2.1c-0.9,0-1.6,0.2-2.2,0.5c-1.2-0.4-2.5-0.6-3.8-0.5c-0.1,0-0.3,0-0.4,0
562
+ c-0.8-0.6-1.8-1.1-3.1-1.1c-1.6,0-2.8,0.6-3.6,1.5c-0.1,0-0.3,0-0.4,0c-1.6,0-2.8,0.6-3.6,1.6c-0.7-0.4-1.4-0.6-2.4-0.6
563
+ c-0.8,0-1.5,0.2-2.1,0.4c-0.8-1.1-2.1-1.9-3.9-1.9c-1.5,0-2.7,0.6-3.5,1.4c-0.8-0.9-2-1.4-3.5-1.4c-1.3,0-2.3,0.4-3.1,1
564
+ c-2-1.2-4.2-1.7-6.4-1.2c-1.9-0.9-3.9-0.9-5.9-0.4c-0.7-0.4-1.4-0.6-2.1-0.7c-2.7-0.4-5.2,1.5-7.4,3.1c-0.5-0.2-1.1-0.3-1.7-0.3
565
+ c-1.6,0-2.7,0.6-3.6,1.5c-0.8-1.2-2.1-2-3.9-2c-1.9,0-3.2,0.9-4,2.1c-0.8-1.2-2.1-2.1-4-2.1c-0.5,0-1,0.1-1.5,0.2
566
+ c-0.5-0.1-1-0.2-1.5-0.2c-1.9,0-3.2,0.8-4,2c-0.8-0.6-1.8-1-3-1c-0.8,0-1.4,0.1-2,0.4c-0.8-0.8-2-1.4-3.5-1.4
567
+ c-0.8,0-1.4,0.1-2,0.4c-0.8-0.8-2-1.4-3.5-1.4c-1.3,0-2.3,0.4-3,1c-1.4,0-2.5,0.5-3.2,1.2c-0.8-1-2-1.7-3.7-1.7
568
+ c-1.9,0-3.2,0.9-4,2.1c-0.7-0.4-1.5-0.6-2.5-0.6c-1.6,0-2.7,0.6-3.5,1.5c-0.6-1.7-2.1-3-4.5-3c-1.6,0-2.8,0.6-3.6,1.5
569
+ c-0.7,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-0.3,0-0.6,0-0.9,0.1c-0.8-0.9-2-1.6-3.6-1.6c-1.3,0-2.3,0.4-3,1
570
+ c-2,0-3.3,1-4.1,2.3c-0.7-1.6-2.1-2.8-4.4-2.8c-0.5,0-0.9,0.1-1.3,0.2c-0.8-1-2-1.7-3.7-1.7c-1,0-1.8,0.2-2.5,0.6
571
+ c-0.7-0.4-1.5-0.6-2.5-0.6c-1.3,0-2.3,0.4-3,1h-4c-0.8,0-1.5,0.2-2.2,0.5c-0.6-0.3-1.4-0.5-2.3-0.5c-0.9,0-1.7,0.2-2.3,0.5
572
+ c-0.2,0-0.4,0-0.7,0c-1.5,0-2.7,0.6-3.5,1.4c-0.8-0.9-2-1.4-3.5-1.4c-2.8,0-4.4,1.9-4.7,4c-0.4-2.1-1.9-4-4.8-4
573
+ c-0.6,0-1.1,0.1-1.5,0.2c-0.5-0.1-0.9-0.2-1.5-0.2c-1.7,0-2.9,0.7-3.7,1.7c-0.1,0.1-0.2,0.1-0.3,0.2c-0.6-0.3-1.3-0.4-2-0.4
574
+ c-0.3,0-0.5,0-0.7,0.1c-0.7-1.5-2.1-2.6-4.3-2.6c-1.9,0-3.2,0.8-4,2c-0.8-0.6-1.8-1-3-1c-1.6,0-2.9,0.7-3.7,1.6
575
+ c-1.1,0.2-2,0.8-2.6,1.6c-0.8-1-2-1.7-3.8-1.7c-0.8,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-0.8,0-1.4,0.1-2,0.4
576
+ c-0.8-0.8-2-1.4-3.5-1.4c-0.2,0-0.3,0-0.4,0c-0.8-0.6-1.8-1-3.1-1c-1.3,0-2.3,0.4-3.1,1.1c-0.7-0.4-1.5-0.6-2.4-0.6
577
+ c-0.4,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-0.5,0-0.9,0.1-1.3,0.2c-0.8-1-2-1.7-3.7-1.7c-1.9,0-3.3,0.9-4.1,2.2
578
+ c-1,0-2,0.1-3,0.1c-0.3,0-0.7,0-1.1,0c-0.8-0.8-1.9-1.3-3.4-1.3c-0.8,0-1.5,0.2-2.1,0.4c-3.4-0.9-6.2,1.9-6.5,4.8
579
+ c-2.2,1.4-2.7,4.4-1.7,6.6c-2.2,1.5-2.6,4.9-1.2,7.1c-4,1.7-3.7,8.3,0.7,9.4c-1.7,0.6-2.7,2.2-2.9,3.8c-3,0.7-4.1,4-3.3,6.5
580
+ c-1,1.6-1,3.9,0,5.6c-1.7,2.9-0.4,7.7,4.1,7.7c4.5,0,5.8-4.8,4.1-7.8c0.8-1.3,0.9-3,0.5-4.5c0.4-0.6,0.6-1.3,0.7-1.9
581
+ c4.7-1.1,4.7-8.5,0.1-9.7c3-1.1,3.7-5.1,2.2-7.6c2.7-1.1,3.4-4.5,2.3-7c0.9-0.7,1.6-1.6,1.8-2.7c4.4,0.8,9,0.2,13.4,0.1
582
+ c1.1,0,2-0.3,2.7-0.8c0.5,0.2,1.1,0.3,1.8,0.3c0.4,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1c1.3,0,2.3-0.4,3.1-1.1
583
+ c0.7,0.4,1.5,0.6,2.4,0.6c0.2,0,0.3,0,0.4,0c0.8,0.6,1.8,1,3.1,1c0.8,0,1.4-0.1,2-0.4c0.8,0.8,2,1.4,3.5,1.4c0.8,0,1.4-0.1,2-0.4
584
+ c0.6,0.2,1.2,0.4,2,0.4c1.7,0,2.9-0.7,3.7-1.7c0.8,1,2,1.7,3.8,1.7c1.6,0,2.9-0.7,3.7-1.6c1.2-0.3,2.2-1,2.8-1.9
585
+ c0.8,0.6,1.8,1,3.1,1c0.3,0,0.5,0,0.7-0.1c0.7,1.5,2.1,2.6,4.3,2.6c1.5,0,2.7-0.6,3.5-1.4c0.6,0.3,1.3,0.4,2,0.4
586
+ c1,0,1.8-0.2,2.4-0.6c0.3,0.1,0.7,0.1,1.1,0.1c2.8,0,4.4-1.9,4.7-4c0.4,2.1,1.9,4,4.8,4c1.5,0,2.7-0.6,3.5-1.4
587
+ c0.8,0.9,2,1.4,3.5,1.4c0.9,0,1.7-0.2,2.3-0.5c0.2,0,0.4,0,0.7,0c0.9,0,1.7-0.2,2.3-0.5c0.7,0.3,1.4,0.5,2.2,0.5h5.5
588
+ c1.5,0,2.6-0.5,3.4-1.4c0.2-0.1,0.4-0.2,0.6-0.3c0.7,0.4,1.5,0.6,2.5,0.6c0.5,0,0.9-0.1,1.3-0.2c0.8,1,2,1.7,3.7,1.7
589
+ c2,0,3.4-1,4.1-2.3c0.7,1.6,2.1,2.8,4.4,2.8c1.3,0,2.3-0.4,3-1c0.3,0,0.6,0,0.8-0.1c0.8,0.9,2,1.6,3.6,1.6c0.8,0,1.4-0.1,2-0.4
590
+ c0.6,0.2,1.2,0.4,2,0.4c1.6,0,2.8-0.6,3.6-1.5c1.5,0,2.7-0.6,3.5-1.5c0.6,1.7,2.1,3,4.5,3c1.9,0,3.2-0.9,4-2.1
591
+ c0.7,0.4,1.5,0.6,2.5,0.6c1.4,0,2.5-0.5,3.3-1.2c0.8,1,2,1.7,3.7,1.7c1.3,0,2.3-0.4,3-1c0.8,0,1.4-0.1,2-0.4
592
+ c0.8,0.8,2,1.4,3.5,1.4c0.8,0,1.4-0.1,2-0.4c0.8,0.8,2,1.4,3.5,1.4c1.9,0,3.2-0.8,4-2c0.8,0.6,1.8,1,3,1c0.5,0,1-0.1,1.5-0.2
593
+ c0.5,0.1,1,0.2,1.5,0.2c1.9,0,3.2-0.9,4-2.1c0.8,1.2,2.1,2.1,4,2.1c1.6,0,2.7-0.6,3.6-1.5c0.8,1.2,2.1,2,3.9,2c0,0,0,0,0.1,0
594
+ c1.4,1,3.2,1.2,5.1,0c0.6-0.4,1.3-1,2-1.5c0.1,0.1,0.2,0.1,0.3,0.2c2,1.2,4.3,0.7,5.8-0.7c1.5,1.3,3.7,1.1,5.4,0.3
595
+ c0,0.3,0.3,0.6,1,0.9c2.5,2.5,5.8,1.4,7.5-0.8c1.2-0.2,2.1-0.7,2.8-1.4c0.8,0.9,2,1.4,3.5,1.4c0.8,0,1.5-0.2,2.1-0.4
596
+ c0.8,1.1,2.1,1.9,3.9,1.9c1.6,0,2.8-0.6,3.6-1.6c0.7,0.4,1.4,0.6,2.4,0.6c1.6,0,2.8-0.6,3.6-1.5c0.1,0,0.3,0,0.4,0
597
+ c0.2,0,0.3,0,0.5,0c0.9,0.6,1.9,1.1,3,1c0.2,0,0.5,0,0.7,0c0.3,0.1,0.5,0.2,0.8,0.3l-0.3-0.1c1,0.4,2,0.5,3.1,0.2
598
+ c0.3-0.1,0.6-0.2,0.9-0.4c0.2,0,0.5,0.1,0.7,0.1c2.4,0,3.9-1.4,4.5-3.1c0.8,1.2,2.1,2.1,4,2.1c0.5,0,0.9-0.1,1.3-0.2
599
+ c0.8,0.7,1.9,1.2,3.2,1.2c2.3,0,3.7-1.3,4.4-2.9c0.6,1.9,2.1,3.4,4.6,3.4c1,0,1.8-0.2,2.4-0.6c0.3,0.1,0.7,0.1,1.1,0.1
600
+ c0.4,0,0.8,0,1.2-0.1c0.7,1.5,2.1,2.6,4.3,2.6C329.6,180.4,330.3,172.7,326.1,170.8z"/>
601
+ <path class="st42" d="M335.8,217.1c0.1-1-0.1-2-0.6-2.8c0.3-0.9,0.4-1.9,0.1-2.8c-0.2-0.8-0.7-1.6-1.4-2.3c0-0.1,0-0.3,0-0.4
602
+ v-0.5c0,0,0-0.1,0-0.1c0.9-2.5,0-5.6-2.7-6.6c0.1-0.7,0.1-1.4-0.1-2.1c0.2-0.5,0.3-1.1,0.3-1.7v-1c0-1.3-0.6-2.6-1.5-3.5
603
+ c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.9-0.1-1.9-0.5-2.7c0.5-0.8,0.7-1.6,0.7-2.5v-0.4c2.6-2.8,1.4-8.6-3.5-8.6c-2.9,0-4.5,2-4.8,4.2
604
+ c-0.1,0.1-0.2,0.1-0.3,0.2c-0.9,1-1.5,2.2-1.5,3.5v1c0,0.9,0.3,1.8,0.7,2.6c-1,1.9-0.7,4.5,0.8,6.1c0,0.1,0,0.3,0,0.4v1
605
+ c0,0.6,0.1,1.1,0.3,1.7c-0.6,2.4,0.4,5.1,2.9,6c0,0.1,0,0.2,0,0.3c-0.4,0.7-0.7,1.6-0.7,2.5v0.5c0,1.2,0.5,2.5,1.3,3.4
606
+ c-0.3,1-0.4,2-0.1,3c0.2,0.6,0.5,1.3,1,1.9c0,1,0.3,2,0.9,2.8c0,0.2-0.1,0.3-0.1,0.5v1.5c0,1.3,0.6,2.6,1.5,3.5
607
+ c0.9,0.9,2.3,1.5,3.5,1.5c1.3-0.1,2.6-0.5,3.5-1.5c0.9-1,1.5-2.2,1.5-3.5v-1.5C337,219.2,336.5,218,335.8,217.1z"/>
608
+ </g>
609
+ <g>
610
+ <linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="23.8197" y1="196.8902" x2="323.8133" y2="196.8902">
611
+ <stop offset="0" style="stop-color:#E5F7FF"/>
612
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
613
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
614
+ <stop offset="1" style="stop-color:#EEF7FF"/>
615
+ </linearGradient>
616
+ <path class="st68" d="M321.1,174.2c-0.5-1.9-2-3.4-4.5-3.4c-0.9,0-1.6,0.2-2.3,0.5c-0.2,0-0.4,0-0.7,0c-0.9,0-1.7,0.2-2.4,0.6
617
+ c-0.3-0.1-0.7-0.1-1-0.1c-2.2,0-3.7,1.3-4.3,2.9c-0.5-1.9-2-3.4-4.5-3.4c-0.5,0-0.9,0.1-1.3,0.2c-0.8-0.7-1.8-1.2-3.2-1.2
618
+ c-2.3,0-3.8,1.4-4.4,3.1c-0.8-1.2-2.1-2.1-3.9-2.1c-0.8,0-1.6,0.2-2.2,0.5c-1.2-0.4-2.4-0.6-3.7-0.5c-0.1,0-0.3,0-0.4,0
619
+ c-0.8-0.6-1.8-1.1-3-1.1c-1.6,0-2.7,0.6-3.5,1.5c-0.1,0-0.3,0-0.4,0c-1.6,0-2.8,0.6-3.6,1.6c-0.6-0.4-1.4-0.6-2.3-0.6
620
+ c-0.8,0-1.5,0.2-2.1,0.4c-0.8-1.1-2.1-1.9-3.8-1.9c-1.5,0-2.6,0.6-3.4,1.4c-0.8-0.9-1.9-1.4-3.4-1.4c-1.3,0-2.3,0.4-3,1
621
+ c-2-1.2-4.1-1.7-6.3-1.2c-1.8-0.9-3.9-0.9-5.8-0.4c-0.6-0.4-1.3-0.6-2-0.7c-2.6-0.4-5.1,1.5-7.2,3.1c-0.5-0.2-1-0.3-1.6-0.3
622
+ c-1.5,0-2.7,0.6-3.5,1.5c-0.8-1.2-2.1-2-3.9-2c-1.8,0-3.2,0.9-3.9,2.1c-0.8-1.2-2.1-2.1-3.9-2.1c-0.5,0-1,0.1-1.5,0.2
623
+ c-0.4-0.1-0.9-0.2-1.5-0.2c-1.8,0-3.1,0.8-3.9,2c-0.8-0.6-1.7-1-3-1c-0.8,0-1.4,0.1-2,0.4c-0.8-0.8-1.9-1.4-3.4-1.4
624
+ c-0.8,0-1.4,0.1-2,0.4c-0.8-0.8-1.9-1.4-3.4-1.4c-1.2,0-2.2,0.4-3,1c-1.3,0-2.4,0.5-3.2,1.2c-0.8-1-2-1.7-3.7-1.7
625
+ c-1.9,0-3.2,0.9-3.9,2.1c-0.7-0.4-1.5-0.6-2.4-0.6c-1.5,0-2.7,0.6-3.5,1.5c-0.6-1.7-2.1-3-4.4-3c-1.5,0-2.7,0.6-3.5,1.5
626
+ c-0.7,0-1.4,0.1-1.9,0.4c-0.6-0.2-1.2-0.4-1.9-0.4c-0.3,0-0.6,0-0.9,0.1c-0.8-0.9-2-1.6-3.6-1.6c-1.2,0-2.2,0.4-3,1
627
+ c-1.9,0-3.3,1-4,2.3c-0.7-1.6-2.1-2.8-4.3-2.8c-0.5,0-0.9,0.1-1.3,0.2c-0.8-1-2-1.7-3.6-1.7c-1,0-1.8,0.2-2.5,0.6
628
+ c-0.7-0.4-1.5-0.6-2.4-0.6c-1.2,0-2.2,0.4-3,1h-3.9c-0.7,0-1.5,0.2-2.1,0.5c-0.6-0.3-1.4-0.5-2.3-0.5c-0.9,0-1.6,0.2-2.3,0.5
629
+ c-0.2,0-0.4,0-0.7,0c-1.5,0-2.6,0.6-3.4,1.4c-0.8-0.9-1.9-1.4-3.4-1.4c-2.7,0-4.3,1.9-4.7,4c-0.4-2.1-1.9-4-4.7-4
630
+ c-0.5,0-1,0.1-1.5,0.2c-0.4-0.1-0.9-0.2-1.5-0.2c-1.6,0-2.9,0.7-3.6,1.7c-0.1,0.1-0.2,0.1-0.2,0.2c-0.6-0.3-1.2-0.4-2-0.4
631
+ c-0.3,0-0.5,0-0.7,0.1c-0.7-1.5-2.1-2.6-4.2-2.6c-1.8,0-3.1,0.8-3.9,2c-0.8-0.6-1.7-1-3-1c-1.6,0-2.8,0.7-3.6,1.6
632
+ c-1.1,0.2-1.9,0.8-2.5,1.6c-0.8-1-2-1.7-3.7-1.7c-0.7,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-0.8,0-1.4,0.1-2,0.4
633
+ c-0.8-0.8-1.9-1.4-3.4-1.4c-0.1,0-0.3,0-0.4,0c-0.8-0.6-1.8-1-3-1c-1.3,0-2.3,0.4-3.1,1.1c-0.6-0.4-1.4-0.6-2.3-0.6
634
+ c-0.3,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-0.5,0-0.9,0.1-1.3,0.2c-0.8-1-2-1.7-3.6-1.7c-1.9,0-3.2,0.9-4,2.2c-1,0-2,0.1-3,0.1
635
+ c-0.3,0-0.7,0-1,0c-0.8-0.8-1.9-1.3-3.3-1.3c-0.8,0-1.5,0.2-2,0.4c-3.3-0.9-6.1,1.9-6.4,4.8c-2.1,1.4-2.7,4.4-1.7,6.6
636
+ c-2.1,1.5-2.5,4.9-1.2,7.1c-3.9,1.7-3.7,8.3,0.7,9.4c-1.7,0.6-2.6,2.2-2.9,3.8c-2.9,0.7-4,4-3.2,6.5c-1,1.6-1,3.9,0,5.6
637
+ c-1.7,2.9-0.3,7.7,4,7.7c4.4,0,5.7-4.8,4-7.8c0.8-1.3,0.9-3,0.4-4.5c0.3-0.6,0.6-1.3,0.7-1.9c4.6-1.1,4.7-8.5,0.1-9.7
638
+ c3-1.1,3.7-5.1,2.1-7.6c2.6-1.1,3.4-4.5,2.3-7c0.9-0.7,1.5-1.6,1.8-2.7c4.3,0.8,8.8,0.2,13.1,0.1c1.1,0,1.9-0.3,2.7-0.8
639
+ c0.5,0.2,1.1,0.3,1.7,0.3c0.3,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1c1.3,0,2.3-0.4,3.1-1.1c0.6,0.4,1.4,0.6,2.3,0.6
640
+ c0.1,0,0.3,0,0.4,0c0.8,0.6,1.8,1,3,1c0.8,0,1.4-0.1,2-0.4c0.8,0.8,1.9,1.4,3.4,1.4c0.7,0,1.4-0.1,2-0.4c0.6,0.2,1.2,0.4,2,0.4
641
+ c1.7,0,2.9-0.7,3.7-1.7c0.8,1,2,1.7,3.7,1.7c1.6,0,2.8-0.7,3.6-1.6c1.2-0.3,2.1-1,2.7-1.9c0.8,0.6,1.7,1,3,1c0.3,0,0.5,0,0.7-0.1
642
+ c0.7,1.5,2.1,2.6,4.2,2.6c1.5,0,2.6-0.6,3.4-1.4c0.6,0.3,1.2,0.4,2,0.4c0.9,0,1.7-0.2,2.4-0.6c0.3,0.1,0.7,0.1,1,0.1
643
+ c2.7,0,4.3-1.9,4.7-4c0.4,2.1,1.9,4,4.7,4c1.5,0,2.6-0.6,3.4-1.4c0.8,0.9,1.9,1.4,3.4,1.4c0.9,0,1.6-0.2,2.3-0.5
644
+ c0.2,0,0.4,0,0.7,0c0.9,0,1.6-0.2,2.3-0.5c0.6,0.3,1.4,0.5,2.1,0.5h5.4c1.5,0,2.6-0.5,3.4-1.4c0.2-0.1,0.4-0.2,0.5-0.3
645
+ c0.7,0.4,1.5,0.6,2.5,0.6c0.5,0,0.9-0.1,1.3-0.2c0.8,1,2,1.7,3.6,1.7c1.9,0,3.3-1,4-2.3c0.7,1.6,2.1,2.8,4.3,2.8
646
+ c1.2,0,2.2-0.4,3-1c0.3,0,0.6,0,0.8-0.1c0.8,0.9,2,1.6,3.6,1.6c0.7,0,1.4-0.1,2-0.4c0.6,0.2,1.2,0.4,2,0.4c1.5,0,2.7-0.6,3.5-1.5
647
+ c1.5,0,2.6-0.6,3.4-1.5c0.6,1.7,2.1,3,4.4,3c1.9,0,3.2-0.9,3.9-2.1c0.7,0.4,1.5,0.6,2.4,0.6c1.4,0,2.4-0.5,3.2-1.2
648
+ c0.8,1,2,1.7,3.7,1.7c1.2,0,2.2-0.4,3-1c0.7,0,1.4-0.1,2-0.4c0.8,0.8,1.9,1.4,3.4,1.4c0.8,0,1.4-0.1,2-0.4
649
+ c0.8,0.8,1.9,1.4,3.4,1.4c1.8,0,3.1-0.8,3.9-2c0.8,0.6,1.7,1,3,1c0.5,0,1-0.1,1.5-0.2c0.4,0.1,0.9,0.2,1.5,0.2
650
+ c1.8,0,3.2-0.9,3.9-2.1c0.8,1.2,2.1,2.1,3.9,2.1c1.5,0,2.7-0.6,3.5-1.5c0.8,1.2,2.1,2,3.9,2c0,0,0,0,0.1,0c1.3,1,3.1,1.2,5,0
651
+ c0.6-0.4,1.3-1,2-1.5c0.1,0.1,0.2,0.1,0.3,0.2c1.9,1.2,4.2,0.7,5.7-0.7c1.5,1.3,3.7,1.1,5.3,0.3c0,0.3,0.3,0.6,0.9,0.9
652
+ c2.5,2.5,5.7,1.4,7.4-0.8c1.2-0.2,2-0.7,2.7-1.4c0.8,0.9,1.9,1.4,3.4,1.4c0.8,0,1.5-0.2,2.1-0.4c0.8,1.1,2.1,1.9,3.8,1.9
653
+ c1.6,0,2.8-0.6,3.6-1.6c0.6,0.4,1.4,0.6,2.3,0.6c1.6,0,2.7-0.6,3.5-1.5c0.1,0,0.3,0,0.4,0c0.2,0,0.3,0,0.5,0
654
+ c0.8,0.6,1.9,1.1,2.9,1c0.2,0,0.4,0,0.7,0c0.3,0.1,0.5,0.2,0.8,0.3l-0.3-0.1c1,0.4,2,0.5,3.1,0.2c0.3-0.1,0.6-0.2,0.9-0.4
655
+ c0.2,0,0.5,0.1,0.7,0.1c2.3,0,3.8-1.4,4.4-3.1c0.8,1.2,2.1,2.1,3.9,2.1c0.5,0,0.9-0.1,1.3-0.2c0.8,0.7,1.8,1.2,3.2,1.2
656
+ c2.2,0,3.7-1.3,4.3-2.9c0.5,1.9,2,3.4,4.5,3.4c0.9,0,1.7-0.2,2.4-0.6c0.3,0.1,0.7,0.1,1,0.1c0.4,0,0.8,0,1.2-0.1
657
+ c0.7,1.5,2.1,2.6,4.2,2.6C324.6,183.8,325.3,176.1,321.1,174.2z"/>
658
+ <linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="315.1614" y1="206.2544" x2="331.8191" y2="206.2544">
659
+ <stop offset="0" style="stop-color:#E5F7FF"/>
660
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
661
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
662
+ <stop offset="1" style="stop-color:#EEF7FF"/>
663
+ </linearGradient>
664
+ <path class="st69" d="M330.7,220.6c0-1-0.1-2-0.6-2.8c0.3-0.9,0.3-1.9,0.1-2.8c-0.2-0.8-0.7-1.6-1.3-2.3c0-0.1,0-0.3,0-0.4v-0.5
665
+ c0,0,0-0.1,0-0.1c0.9-2.5,0-5.6-2.7-6.6c0.1-0.7,0.1-1.4-0.1-2.1c0.2-0.5,0.3-1.1,0.3-1.7v-1c0-1.3-0.5-2.6-1.4-3.5
666
+ c-0.1-0.1-0.1-0.1-0.2-0.2c0-0.9-0.1-1.9-0.5-2.7c0.4-0.8,0.7-1.6,0.7-2.5v-0.4c2.5-2.8,1.4-8.6-3.4-8.6c-2.8,0-4.4,2-4.7,4.2
667
+ c-0.1,0.1-0.2,0.1-0.3,0.2c-0.9,1-1.4,2.2-1.4,3.5v1c0,0.9,0.3,1.8,0.7,2.6c-0.9,1.9-0.7,4.5,0.8,6.1c0,0.1,0,0.3,0,0.4v1
668
+ c0,0.6,0.1,1.1,0.3,1.7c-0.5,2.4,0.4,5.1,2.8,6c0,0.1,0,0.2,0,0.3c-0.4,0.7-0.7,1.6-0.7,2.5v0.5c0,1.2,0.5,2.5,1.3,3.4
669
+ c-0.3,1-0.4,2-0.1,3c0.2,0.6,0.5,1.3,1,1.9c0,1,0.3,2,0.9,2.8c0,0.2-0.1,0.3-0.1,0.5v1.5c0,1.3,0.5,2.6,1.4,3.5
670
+ c0.8,0.9,2.2,1.5,3.5,1.5c1.3-0.1,2.6-0.5,3.5-1.5c0.9-1,1.4-2.2,1.4-3.5v-1.5C331.8,222.6,331.4,221.4,330.7,220.6z"/>
671
+ </g>
672
+ </g>
673
+ <g>
674
+ <g>
675
+ <path class="st42" d="M34.1,293.4c0.5,1.9,2,3.4,4.5,3.4c0.9,0,1.6-0.2,2.3-0.5c0.2,0,0.4,0,0.7,0c0.9,0,1.8-0.2,2.4-0.6
676
+ c0.3,0.1,0.7,0.1,1,0.1c2.2,0,3.7-1.3,4.3-2.9c0.5,1.9,2,3.4,4.5,3.4c0.5,0,0.9-0.1,1.3-0.2c0.8,0.7,1.8,1.2,3.2,1.2
677
+ c2.3,0,3.8-1.4,4.4-3.1c0.8,1.2,2.1,2.1,3.9,2.1c0.8,0,1.6-0.2,2.2-0.5c1.2,0.4,2.4,0.6,3.7,0.5c0.1,0,0.3,0,0.4,0
678
+ c0.8,0.6,1.8,1.1,3,1.1c1.6,0,2.7-0.6,3.5-1.5c0.1,0,0.3,0,0.4,0c1.6,0,2.8-0.6,3.6-1.6c0.6,0.4,1.4,0.6,2.3,0.6
679
+ c0.8,0,1.5-0.2,2.1-0.4c0.8,1.1,2.1,1.9,3.8,1.9c1.5,0,2.6-0.6,3.4-1.4c0.8,0.9,1.9,1.4,3.4,1.4c1.3,0,2.3-0.4,3-1
680
+ c2,1.2,4.1,1.7,6.3,1.2c1.8,0.9,3.9,0.9,5.8,0.4c0.6,0.4,1.3,0.6,2,0.7c2.6,0.4,5.1-1.5,7.3-3.1c0.5,0.2,1,0.3,1.6,0.3
681
+ c1.5,0,2.7-0.6,3.5-1.5c0.8,1.2,2.1,2,3.9,2c1.9,0,3.2-0.9,3.9-2.1c0.8,1.2,2.1,2.1,3.9,2.1c0.5,0,1-0.1,1.5-0.2
682
+ c0.4,0.1,0.9,0.2,1.5,0.2c1.8,0,3.1-0.8,3.9-2c0.8,0.6,1.8,1,3,1c0.8,0,1.4-0.1,2-0.4c0.8,0.8,1.9,1.4,3.4,1.4
683
+ c0.8,0,1.4-0.1,2-0.4c0.8,0.8,1.9,1.4,3.4,1.4c1.2,0,2.2-0.4,3-1c1.4,0,2.4-0.5,3.2-1.2c0.8,1,2,1.7,3.7,1.7c1.9,0,3.2-0.9,4-2.1
684
+ c0.7,0.4,1.5,0.6,2.4,0.6c1.5,0,2.7-0.6,3.5-1.5c0.6,1.7,2.1,3,4.4,3c1.5,0,2.7-0.6,3.5-1.5c0.7,0,1.4-0.1,1.9-0.4
685
+ c0.6,0.2,1.2,0.4,2,0.4c0.3,0,0.6,0,0.9-0.1c0.8,0.9,2,1.6,3.6,1.6c1.2,0,2.2-0.4,3-1c1.9,0,3.3-1,4-2.3c0.7,1.6,2.1,2.8,4.3,2.8
686
+ c0.5,0,0.9-0.1,1.3-0.2c0.8,1,2,1.7,3.6,1.7c1,0,1.8-0.2,2.5-0.6c0.7,0.4,1.5,0.6,2.4,0.6c1.2,0,2.2-0.4,3-1h3.9
687
+ c0.7,0,1.5-0.2,2.1-0.5c0.6,0.3,1.4,0.5,2.3,0.5c0.9,0,1.6-0.2,2.3-0.5c0.2,0,0.4,0,0.7,0c1.5,0,2.7-0.6,3.4-1.4
688
+ c0.8,0.9,1.9,1.4,3.4,1.4c2.8,0,4.3-1.9,4.7-4c0.4,2.1,1.9,4,4.7,4c0.5,0,1-0.1,1.5-0.2c0.4,0.1,0.9,0.2,1.5,0.2
689
+ c1.6,0,2.9-0.7,3.7-1.7c0.1-0.1,0.2-0.1,0.2-0.2c0.6,0.3,1.2,0.4,2,0.4c0.3,0,0.5,0,0.7-0.1c0.7,1.5,2.1,2.6,4.2,2.6
690
+ c1.8,0,3.1-0.8,3.9-2c0.8,0.6,1.7,1,3,1c1.6,0,2.8-0.7,3.6-1.6c1.1-0.2,1.9-0.8,2.5-1.6c0.8,1,2,1.7,3.7,1.7c0.7,0,1.4-0.1,2-0.4
691
+ c0.6,0.2,1.2,0.4,2,0.4c0.8,0,1.4-0.1,2-0.4c0.8,0.8,1.9,1.4,3.4,1.4c0.1,0,0.3,0,0.4,0c0.8,0.6,1.8,1,3,1c1.3,0,2.3-0.4,3.1-1.1
692
+ c0.7,0.4,1.4,0.6,2.3,0.6c0.3,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1c0.5,0,0.9-0.1,1.3-0.2c0.8,1,2,1.7,3.6,1.7
693
+ c1.9,0,3.2-0.9,4-2.2c1,0,2-0.1,3-0.1c0.3,0,0.7,0,1,0c0.8,0.8,1.9,1.3,3.3,1.3c0.8,0,1.5-0.2,2.1-0.4c3.3,0.9,6.1-1.9,6.4-4.8
694
+ c2.1-1.4,2.7-4.4,1.7-6.6c2.2-1.5,2.5-4.9,1.2-7.1c3.9-1.7,3.7-8.3-0.7-9.4c1.7-0.6,2.6-2.2,2.9-3.8c3-0.7,4-4,3.2-6.5
695
+ c1-1.6,1-3.9,0-5.6c1.7-2.9,0.4-7.7-4-7.7c-4.4,0-5.7,4.8-4,7.8c-0.8,1.3-0.9,3-0.4,4.5c-0.3,0.6-0.6,1.3-0.7,1.9
696
+ c-4.6,1.1-4.7,8.5-0.1,9.7c-3,1.1-3.7,5.1-2.1,7.6c-2.6,1.1-3.4,4.5-2.3,7c-0.9,0.7-1.5,1.6-1.8,2.7c-4.3-0.8-8.8-0.2-13.2-0.1
697
+ c-1.1,0-2,0.3-2.7,0.8c-0.5-0.2-1.1-0.3-1.7-0.3c-0.3,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-1.3,0-2.3,0.4-3.1,1.1
698
+ c-0.7-0.4-1.4-0.6-2.3-0.6c-0.1,0-0.3,0-0.4,0c-0.8-0.6-1.8-1-3-1c-0.8,0-1.4,0.1-2,0.4c-0.8-0.8-1.9-1.4-3.4-1.4
699
+ c-0.7,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-1.7,0-2.9,0.7-3.7,1.7c-0.8-1-2-1.7-3.7-1.7c-1.6,0-2.8,0.7-3.6,1.6
700
+ c-1.2,0.3-2.1,1-2.7,1.9c-0.8-0.6-1.8-1-3-1c-0.3,0-0.5,0-0.7,0.1c-0.7-1.5-2.1-2.6-4.2-2.6c-1.5,0-2.6,0.6-3.4,1.4
701
+ c-0.6-0.3-1.2-0.4-2-0.4c-0.9,0-1.7,0.2-2.4,0.6c-0.3-0.1-0.7-0.1-1-0.1c-2.8,0-4.3,1.9-4.7,4c-0.4-2.1-1.9-4-4.7-4
702
+ c-1.5,0-2.7,0.6-3.4,1.4c-0.8-0.9-1.9-1.4-3.4-1.4c-0.9,0-1.6,0.2-2.3,0.5c-0.2,0-0.4,0-0.7,0c-0.9,0-1.6,0.2-2.3,0.5
703
+ c-0.6-0.3-1.4-0.5-2.2-0.5h-5.4c-1.5,0-2.6,0.5-3.4,1.4c-0.2,0.1-0.4,0.2-0.5,0.3c-0.7-0.4-1.5-0.6-2.5-0.6
704
+ c-0.5,0-0.9,0.1-1.3,0.2c-0.8-1-2-1.7-3.6-1.7c-2,0-3.3,1-4.1,2.3c-0.7-1.6-2.1-2.8-4.3-2.8c-1.2,0-2.2,0.4-3,1
705
+ c-0.3,0-0.6,0-0.8,0.1c-0.8-0.9-2-1.6-3.6-1.6c-0.7,0-1.4,0.1-2,0.4c-0.6-0.2-1.2-0.4-2-0.4c-1.5,0-2.7,0.6-3.5,1.5
706
+ c-1.5,0-2.6,0.6-3.4,1.5c-0.6-1.7-2.1-3-4.4-3c-1.9,0-3.2,0.9-4,2.1c-0.7-0.4-1.5-0.6-2.4-0.6c-1.4,0-2.4,0.5-3.2,1.2
707
+ c-0.8-1-2-1.7-3.7-1.7c-1.2,0-2.2,0.4-3,1c-0.7,0-1.4,0.1-2,0.4c-0.8-0.8-1.9-1.4-3.4-1.4c-0.8,0-1.4,0.1-2,0.4
708
+ c-0.8-0.8-1.9-1.4-3.4-1.4c-1.8,0-3.1,0.8-3.9,2c-0.8-0.6-1.8-1-3-1c-0.5,0-1,0.1-1.5,0.2c-0.4-0.1-0.9-0.2-1.5-0.2
709
+ c-1.9,0-3.2,0.9-3.9,2.1c-0.8-1.2-2.1-2.1-3.9-2.1c-1.5,0-2.7,0.6-3.5,1.5c-0.8-1.2-2.1-2-3.9-2c0,0,0,0-0.1,0
710
+ c-1.3-1-3.1-1.2-5,0c-0.6,0.4-1.3,1-2,1.5c-0.1-0.1-0.2-0.1-0.3-0.2c-1.9-1.2-4.2-0.7-5.8,0.7c-1.5-1.3-3.7-1.1-5.3-0.3
711
+ c0-0.3-0.3-0.6-0.9-0.9c-2.5-2.5-5.7-1.4-7.4,0.8c-1.2,0.2-2,0.7-2.7,1.4c-0.8-0.9-1.9-1.4-3.5-1.4c-0.8,0-1.5,0.2-2.1,0.4
712
+ c-0.8-1.1-2.1-1.9-3.8-1.9c-1.6,0-2.8,0.6-3.6,1.6c-0.6-0.4-1.4-0.6-2.3-0.6c-1.6,0-2.7,0.6-3.5,1.5c-0.1,0-0.3,0-0.4,0
713
+ c-0.2,0-0.3,0-0.5,0c-0.8-0.6-1.9-1.1-3-1c-0.2,0-0.4,0-0.7,0c-0.3-0.1-0.5-0.2-0.8-0.3l0.3,0.1c-1-0.4-2-0.5-3.1-0.2
714
+ c-0.3,0.1-0.6,0.2-0.9,0.4c-0.2,0-0.5-0.1-0.7-0.1c-2.3,0-3.8,1.4-4.4,3.1c-0.8-1.2-2.1-2.1-3.9-2.1c-0.5,0-0.9,0.1-1.3,0.2
715
+ c-0.8-0.7-1.8-1.2-3.2-1.2c-2.2,0-3.7,1.3-4.3,2.9c-0.5-1.9-2-3.4-4.5-3.4c-0.9,0-1.7,0.2-2.4,0.6c-0.3-0.1-0.7-0.1-1.1-0.1
716
+ c-0.4,0-0.8,0-1.2,0.1c-0.7-1.5-2.1-2.6-4.2-2.6C30.6,283.8,29.9,291.5,34.1,293.4z"/>
717
+ <path class="st42" d="M24.5,247.1c0,1,0.1,2,0.6,2.8c-0.3,0.9-0.3,1.9-0.1,2.8c0.2,0.8,0.7,1.6,1.3,2.3c0,0.1,0,0.3,0,0.4v0.5
718
+ c0,0,0,0.1,0,0.1c-0.9,2.5,0,5.6,2.7,6.6c-0.1,0.7-0.1,1.4,0.1,2.1c-0.2,0.5-0.3,1.1-0.3,1.7v1c0,1.3,0.5,2.6,1.4,3.5
719
+ c0.1,0.1,0.1,0.1,0.2,0.2c0,0.9,0.1,1.9,0.5,2.7c-0.4,0.8-0.7,1.6-0.7,2.5v0.4c-2.5,2.8-1.4,8.6,3.4,8.6c2.8,0,4.4-2,4.7-4.2
720
+ c0.1-0.1,0.2-0.1,0.3-0.2c0.9-1,1.4-2.2,1.4-3.5v-1c0-0.9-0.3-1.8-0.7-2.6c0.9-1.9,0.7-4.5-0.8-6.1c0-0.1,0-0.3,0-0.4v-1
721
+ c0-0.6-0.1-1.1-0.3-1.7c0.5-2.4-0.4-5.1-2.9-6c0-0.1,0-0.2,0-0.3c0.4-0.7,0.7-1.6,0.7-2.5v-0.5c0-1.2-0.5-2.5-1.3-3.4
722
+ c0.3-1,0.4-2,0.1-3c-0.2-0.6-0.5-1.3-1-1.9c0-1-0.3-2-0.9-2.8c0-0.2,0.1-0.3,0.1-0.5v-1.5c0-1.3-0.5-2.6-1.4-3.5
723
+ c-0.9-0.9-2.3-1.5-3.5-1.5c-1.3,0.1-2.6,0.5-3.5,1.5c-0.9,1-1.4,2.2-1.4,3.5v1.5C23.4,245,23.8,246.2,24.5,247.1z"/>
724
+ </g>
725
+ <g>
726
+
727
+ <linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="31.6897" y1="295.5623" x2="323.3505" y2="295.5623" gradientTransform="matrix(-1 0 0 -1 359.6722 562.902)">
728
+ <stop offset="0" style="stop-color:#E5F7FF"/>
729
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
730
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
731
+ <stop offset="1" style="stop-color:#EEF7FF"/>
732
+ </linearGradient>
733
+ <path class="st70" d="M38.9,290c0.5,1.9,2,3.4,4.4,3.4c0.9,0,1.6-0.2,2.2-0.5c0.2,0,0.4,0,0.6,0c0.9,0,1.7-0.2,2.3-0.6
734
+ c0.3,0.1,0.6,0.1,1,0.1c2.2,0,3.6-1.3,4.2-2.9c0.5,1.9,2,3.4,4.4,3.4c0.4,0,0.8-0.1,1.2-0.2c0.7,0.7,1.8,1.2,3.1,1.2
735
+ c2.3,0,3.7-1.4,4.3-3.1c0.7,1.2,2,2.1,3.8,2.1c0.8,0,1.5-0.2,2.1-0.5c1.2,0.4,2.4,0.6,3.6,0.5c0.1,0,0.3,0,0.4,0
736
+ c0.7,0.6,1.7,1.1,3,1.1c1.5,0,2.6-0.6,3.4-1.5c0.1,0,0.3,0,0.4,0c1.5,0,2.7-0.6,3.5-1.6c0.6,0.4,1.4,0.6,2.3,0.6
737
+ c0.8,0,1.4-0.2,2-0.4c0.8,1.1,2,1.9,3.7,1.9c1.5,0,2.6-0.6,3.3-1.4c0.8,0.9,1.9,1.4,3.3,1.4c1.2,0,2.2-0.4,2.9-1
738
+ c1.9,1.2,4,1.7,6.1,1.2c1.8,0.9,3.8,0.9,5.6,0.4c0.6,0.4,1.3,0.6,2,0.7c2.5,0.4,4.9-1.5,7-3.1c0.5,0.2,1,0.3,1.6,0.3
739
+ c1.5,0,2.6-0.6,3.4-1.5c0.8,1.2,2,2,3.8,2c1.8,0,3.1-0.9,3.8-2.1c0.7,1.2,2,2.1,3.8,2.1c0.5,0,1-0.1,1.4-0.2
740
+ c0.4,0.1,0.9,0.2,1.4,0.2c1.8,0,3-0.8,3.8-2c0.7,0.6,1.7,1,2.9,1c0.7,0,1.4-0.1,1.9-0.4c0.8,0.8,1.9,1.4,3.3,1.4
741
+ c0.7,0,1.4-0.1,1.9-0.4c0.8,0.8,1.9,1.4,3.3,1.4c1.2,0,2.2-0.4,2.9-1c1.3,0,2.3-0.5,3.1-1.2c0.8,1,1.9,1.7,3.6,1.7
742
+ c1.8,0,3.1-0.9,3.8-2.1c0.6,0.4,1.4,0.6,2.4,0.6c1.5,0,2.6-0.6,3.4-1.5c0.6,1.7,2,3,4.2,3c1.5,0,2.6-0.6,3.4-1.5
743
+ c0.7,0,1.3-0.1,1.9-0.4c0.5,0.2,1.2,0.4,1.9,0.4c0.3,0,0.6,0,0.8-0.1c0.8,0.9,1.9,1.6,3.5,1.6c1.2,0,2.2-0.4,2.9-1
744
+ c1.9,0,3.2-1,3.9-2.3c0.7,1.6,2,2.8,4.2,2.8c0.4,0,0.9-0.1,1.2-0.2c0.8,1,1.9,1.7,3.5,1.7c0.9,0,1.7-0.2,2.4-0.6
745
+ c0.7,0.4,1.4,0.6,2.4,0.6c1.2,0,2.2-0.4,2.9-1h3.8c0.7,0,1.4-0.2,2.1-0.5c0.6,0.3,1.4,0.5,2.2,0.5c0.9,0,1.6-0.2,2.2-0.5
746
+ c0.2,0,0.4,0,0.6,0c1.5,0,2.6-0.6,3.3-1.4c0.8,0.9,1.9,1.4,3.3,1.4c2.7,0,4.2-1.9,4.5-4c0.3,2.1,1.8,4,4.5,4c0.5,0,1-0.1,1.4-0.2
747
+ c0.4,0.1,0.9,0.2,1.4,0.2c1.6,0,2.8-0.7,3.5-1.7c0.1-0.1,0.2-0.1,0.2-0.2c0.6,0.3,1.2,0.4,1.9,0.4c0.2,0,0.5,0,0.7-0.1
748
+ c0.7,1.5,2,2.6,4.1,2.6c1.8,0,3-0.8,3.8-2c0.7,0.6,1.7,1,2.9,1c1.6,0,2.7-0.7,3.5-1.6c1.1-0.2,1.9-0.8,2.5-1.6
749
+ c0.8,1,2,1.7,3.6,1.7c0.7,0,1.4-0.1,1.9-0.4c0.6,0.2,1.2,0.4,1.9,0.4c0.7,0,1.4-0.1,1.9-0.4c0.8,0.8,1.9,1.4,3.3,1.4
750
+ c0.1,0,0.3,0,0.4,0c0.7,0.6,1.7,1,2.9,1c1.2,0,2.2-0.4,3-1.1c0.6,0.4,1.4,0.6,2.3,0.6c0.3,0,0.7,0,1-0.1c0.3,0.1,0.6,0.1,1,0.1
751
+ c0.4,0,0.9-0.1,1.2-0.2c0.8,1,1.9,1.7,3.5,1.7c1.8,0,3.1-0.9,3.9-2.2c1,0,1.9-0.1,2.9-0.1c0.3,0,0.7,0,1,0
752
+ c0.8,0.8,1.8,1.3,3.2,1.3c0.8,0,1.4-0.2,2-0.4c3.2,0.9,5.9-1.9,6.2-4.8c2.1-1.4,2.6-4.4,1.6-6.6c2.1-1.5,2.5-4.9,1.1-7.1
753
+ c3.8-1.7,3.6-8.3-0.6-9.4c1.6-0.6,2.6-2.2,2.8-3.8c2.9-0.7,3.9-4,3.1-6.5c1-1.6,1-3.9,0-5.6c1.6-2.9,0.3-7.7-3.9-7.7
754
+ c-4.2,0-5.6,4.8-3.9,7.8c-0.7,1.3-0.9,3-0.4,4.5c-0.3,0.6-0.6,1.3-0.7,1.9c-4.5,1.1-4.5,8.5-0.1,9.7c-2.9,1.1-3.6,5.1-2.1,7.6
755
+ c-2.5,1.1-3.3,4.5-2.2,7c-0.9,0.7-1.5,1.6-1.7,2.7c-4.1-0.8-8.5-0.2-12.7-0.1c-1,0-1.9,0.3-2.6,0.8c-0.5-0.2-1.1-0.3-1.7-0.3
756
+ c-0.3,0-0.7,0-1,0.1c-0.3-0.1-0.6-0.1-1-0.1c-1.2,0-2.2,0.4-3,1.1c-0.6-0.4-1.4-0.6-2.3-0.6c-0.1,0-0.3,0-0.4,0
757
+ c-0.7-0.6-1.7-1-2.9-1c-0.7,0-1.4,0.1-1.9,0.4c-0.8-0.8-1.9-1.4-3.3-1.4c-0.7,0-1.4,0.1-1.9,0.4c-0.6-0.2-1.2-0.4-1.9-0.4
758
+ c-1.6,0-2.8,0.7-3.6,1.7c-0.8-1-2-1.7-3.6-1.7c-1.6,0-2.7,0.7-3.5,1.6c-1.2,0.3-2.1,1-2.6,1.9c-0.7-0.6-1.7-1-2.9-1
759
+ c-0.2,0-0.5,0-0.7,0.1c-0.7-1.5-2-2.6-4.1-2.6c-1.4,0-2.5,0.6-3.3,1.4c-0.6-0.3-1.2-0.4-1.9-0.4c-0.9,0-1.7,0.2-2.3,0.6
760
+ c-0.3-0.1-0.7-0.1-1-0.1c-2.7,0-4.2,1.9-4.5,4c-0.3-2.1-1.8-4-4.5-4c-1.5,0-2.6,0.6-3.3,1.4c-0.8-0.9-1.9-1.4-3.3-1.4
761
+ c-0.9,0-1.6,0.2-2.2,0.5c-0.2,0-0.4,0-0.6,0c-0.9,0-1.6,0.2-2.2,0.5c-0.6-0.3-1.3-0.5-2.1-0.5h-5.2c-1.4,0-2.5,0.5-3.3,1.4
762
+ c-0.2,0.1-0.4,0.2-0.5,0.3c-0.7-0.4-1.5-0.6-2.4-0.6c-0.4,0-0.9,0.1-1.2,0.2c-0.8-1-1.9-1.7-3.5-1.7c-1.9,0-3.2,1-3.9,2.3
763
+ c-0.7-1.6-2-2.8-4.2-2.8c-1.2,0-2.2,0.4-2.9,1c-0.3,0-0.5,0-0.8,0.1c-0.8-0.9-1.9-1.6-3.5-1.6c-0.7,0-1.3,0.1-1.9,0.4
764
+ c-0.6-0.2-1.2-0.4-1.9-0.4c-1.5,0-2.6,0.6-3.4,1.5c-1.5,0-2.6,0.6-3.3,1.5c-0.6-1.7-2-3-4.2-3c-1.8,0-3.1,0.9-3.8,2.1
765
+ c-0.6-0.4-1.4-0.6-2.4-0.6c-1.3,0-2.4,0.5-3.1,1.2c-0.8-1-1.9-1.7-3.6-1.7c-1.2,0-2.2,0.4-2.9,1c-0.7,0-1.4,0.1-1.9,0.4
766
+ c-0.8-0.8-1.9-1.4-3.3-1.4c-0.7,0-1.4,0.1-1.9,0.4c-0.8-0.8-1.9-1.4-3.3-1.4c-1.8,0-3,0.8-3.8,2c-0.7-0.6-1.7-1-2.9-1
767
+ c-0.5,0-1,0.1-1.4,0.2c-0.4-0.1-0.9-0.2-1.4-0.2c-1.8,0-3.1,0.9-3.8,2.1c-0.7-1.2-2-2.1-3.8-2.1c-1.5,0-2.6,0.6-3.4,1.5
768
+ c-0.8-1.2-2-2-3.8-2c0,0,0,0-0.1,0c-1.3-1-3-1.2-4.8,0c-0.6,0.4-1.2,1-1.9,1.5c-0.1-0.1-0.2-0.1-0.3-0.2
769
+ c-1.9-1.2-4.1-0.7-5.6,0.7c-1.5-1.3-3.6-1.1-5.2-0.3c0-0.3-0.3-0.6-0.9-0.9c-2.4-2.5-5.6-1.4-7.2,0.8c-1.1,0.2-2,0.7-2.6,1.4
770
+ c-0.8-0.9-1.9-1.4-3.3-1.4c-0.8,0-1.4,0.2-2,0.4c-0.8-1.1-2-1.9-3.7-1.9c-1.5,0-2.7,0.6-3.5,1.6c-0.6-0.4-1.4-0.6-2.3-0.6
771
+ c-1.5,0-2.6,0.6-3.4,1.5c-0.1,0-0.3,0-0.4,0c-0.2,0-0.3,0-0.5,0c-0.8-0.6-1.8-1.1-2.9-1c-0.2,0-0.4,0-0.6,0
772
+ c-0.3-0.1-0.5-0.2-0.8-0.3l0.3,0.1c-1-0.4-1.9-0.5-3-0.2c-0.3,0.1-0.6,0.2-0.9,0.4c-0.2,0-0.5-0.1-0.7-0.1
773
+ c-2.3,0-3.7,1.4-4.3,3.1c-0.7-1.2-2-2.1-3.8-2.1c-0.4,0-0.8,0.1-1.2,0.2c-0.7-0.7-1.8-1.2-3.1-1.2c-2.2,0-3.6,1.3-4.2,2.9
774
+ c-0.5-1.9-2-3.4-4.4-3.4c-0.9,0-1.7,0.2-2.3,0.6c-0.3-0.1-0.7-0.1-1-0.1c-0.4,0-0.8,0-1.1,0.1c-0.7-1.5-2-2.6-4.1-2.6
775
+ C35.6,280.4,34.9,288.1,38.9,290z"/>
776
+
777
+ <linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="314.8414" y1="304.9265" x2="331.2243" y2="304.9265" gradientTransform="matrix(-1 0 0 -1 359.6722 562.902)">
778
+ <stop offset="0" style="stop-color:#E5F7FF"/>
779
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
780
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
781
+ <stop offset="1" style="stop-color:#EEF7FF"/>
782
+ </linearGradient>
783
+ <path class="st71" d="M29.6,243.7c0,1,0.1,2,0.6,2.8c-0.3,0.9-0.3,1.9-0.1,2.8c0.2,0.8,0.7,1.6,1.3,2.3c0,0.1,0,0.3,0,0.4v0.5
784
+ c0,0,0,0.1,0,0.1c-0.8,2.5,0,5.6,2.6,6.6c-0.1,0.7-0.1,1.4,0.1,2.1c-0.2,0.5-0.3,1.1-0.3,1.7v1c0,1.3,0.5,2.6,1.4,3.5
785
+ c0.1,0.1,0.1,0.1,0.2,0.2c0,0.9,0.1,1.9,0.5,2.7c-0.4,0.8-0.7,1.6-0.7,2.5v0.4c-2.5,2.8-1.4,8.6,3.4,8.6c2.8,0,4.3-2,4.6-4.2
786
+ c0.1-0.1,0.2-0.1,0.3-0.2c0.9-1,1.4-2.2,1.4-3.5v-1c0-0.9-0.3-1.8-0.7-2.6c0.9-1.9,0.7-4.5-0.8-6.1c0-0.1,0-0.3,0-0.4v-1
787
+ c0-0.6-0.1-1.1-0.3-1.7c0.5-2.4-0.4-5.1-2.8-6c0-0.1,0-0.2,0-0.3c0.4-0.7,0.7-1.6,0.7-2.5V252c0-1.2-0.5-2.5-1.3-3.4
788
+ c0.3-1,0.4-2,0.1-3c-0.2-0.6-0.5-1.3-1-1.9c0-1-0.3-2-0.8-2.8c0-0.2,0.1-0.3,0.1-0.5V239c0-1.3-0.5-2.6-1.4-3.5
789
+ c-0.8-0.9-2.2-1.5-3.4-1.5c-1.2,0.1-2.5,0.5-3.4,1.5c-0.9,1-1.4,2.2-1.4,3.5v1.5C28.4,241.6,28.9,242.8,29.6,243.7z"/>
790
+ </g>
791
+ </g>
792
+ <g>
793
+ <line class="st72" x1="335.9" y1="226.1" x2="326.8" y2="167.5"/>
794
+ <line class="st72" x1="320.7" y1="226.1" x2="312.5" y2="167.5"/>
795
+ <line class="st72" x1="305.5" y1="226.1" x2="298.2" y2="167.5"/>
796
+ <line class="st72" x1="290.4" y1="226.1" x2="283.9" y2="167.5"/>
797
+ <line class="st72" x1="275.2" y1="226.1" x2="269.6" y2="167.5"/>
798
+ <line class="st72" x1="260" y1="226.1" x2="255.3" y2="167.5"/>
799
+ <line class="st72" x1="244.9" y1="226.1" x2="241" y2="167.5"/>
800
+ <line class="st72" x1="229.7" y1="226.1" x2="226.6" y2="167.5"/>
801
+ <path class="st72" d="M212.4,167.5"/>
802
+ <path class="st72" d="M214.5,226.1"/>
803
+ <path class="st72" d="M198,167.5"/>
804
+ <path class="st72" d="M199.3,226.1"/>
805
+ <path class="st72" d="M183.7,167.5"/>
806
+ <path class="st72" d="M184.2,226.1"/>
807
+ <path class="st72" d="M169.4,167.5"/>
808
+ <path class="st72" d="M169,226.1"/>
809
+ <path class="st72" d="M155.1,167.5"/>
810
+ <path class="st72" d="M153.8,226.1"/>
811
+ <path class="st72" d="M140.8,167.5"/>
812
+ <path class="st72" d="M138.7,226.1"/>
813
+ <line class="st72" x1="123.5" y1="226.1" x2="126.2" y2="173"/>
814
+ <line class="st72" x1="108.3" y1="226.1" x2="112.2" y2="175.1"/>
815
+ <line class="st72" x1="93.1" y1="226.1" x2="97.9" y2="174"/>
816
+ <line class="st72" x1="78" y1="226.1" x2="82.9" y2="174.9"/>
817
+ <line class="st72" x1="62.8" y1="226.1" x2="68.2" y2="172.8"/>
818
+ <line class="st72" x1="47.6" y1="226.1" x2="54.4" y2="172.2"/>
819
+ <line class="st72" x1="32.5" y1="226.1" x2="40.7" y2="171.8"/>
820
+ <line class="st72" x1="17.3" y1="226.1" x2="26.4" y2="167.5"/>
821
+ </g>
822
+ <g>
823
+ <line class="st72" x1="17.3" y1="238.2" x2="26.4" y2="296.9"/>
824
+ <line class="st72" x1="32.5" y1="238.2" x2="40.7" y2="296.9"/>
825
+ <line class="st72" x1="47.6" y1="238.2" x2="55" y2="296.9"/>
826
+ <line class="st72" x1="62.8" y1="238.2" x2="69.3" y2="296.9"/>
827
+ <line class="st72" x1="78" y1="238.2" x2="83.6" y2="296.9"/>
828
+ <line class="st72" x1="93.1" y1="238.2" x2="97.9" y2="296.9"/>
829
+ <line class="st72" x1="108.3" y1="238.2" x2="112.2" y2="296.9"/>
830
+ <line class="st72" x1="123.5" y1="238.2" x2="126.5" y2="296.9"/>
831
+ <path class="st72" d="M140.8,296.9"/>
832
+ <path class="st72" d="M138.7,238.2"/>
833
+ <path class="st72" d="M155.1,296.9"/>
834
+ <path class="st72" d="M153.8,238.2"/>
835
+ <path class="st72" d="M169.4,287"/>
836
+ <path class="st72" d="M169,281.3"/>
837
+ <path class="st72" d="M183.7,296.9"/>
838
+ <path class="st72" d="M184.2,283.9"/>
839
+ <path class="st72" d="M198,296.9"/>
840
+ <path class="st72" d="M199.3,281.5"/>
841
+ <path class="st72" d="M212.3,296.9"/>
842
+ <path class="st72" d="M212.8,283.3"/>
843
+ <line class="st72" x1="229.7" y1="238.2" x2="226.7" y2="296.9"/>
844
+ <line class="st72" x1="244.8" y1="238.2" x2="241" y2="296.9"/>
845
+ <line class="st72" x1="260" y1="238.2" x2="255.3" y2="296.9"/>
846
+ <line class="st72" x1="275.2" y1="238.2" x2="269.6" y2="296.9"/>
847
+ <line class="st72" x1="290.4" y1="238.2" x2="283.9" y2="296.9"/>
848
+ <line class="st72" x1="305.5" y1="238.2" x2="298.2" y2="296.9"/>
849
+ <line class="st72" x1="320.7" y1="238.2" x2="312.5" y2="296.9"/>
850
+ <line class="st72" x1="335.9" y1="238.2" x2="326.8" y2="296.9"/>
851
+ </g>
852
+ <path class="st42" d="M326.6,228.3c-7.5,2.3-15-0.7-22.4-1.3c-7.7-0.7-15.2,1.6-22.8,2.4c-15.2,1.6-30.7,0.4-45.9,0.3
853
+ c-6.4,0-6.4,12.8,0,12.8c15.8,0.1,32,1.5,47.8-0.6c7.6-1,15-3,22.7-2c7.9,1,15.3,3.1,23.3,0.7C335.5,238.8,332.9,226.4,326.6,228.3
854
+ z"/>
855
+ <linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="232.0786" y1="235.375" x2="334.2214" y2="235.375">
856
+ <stop offset="0" style="stop-color:#E5F7FF"/>
857
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
858
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
859
+ <stop offset="1" style="stop-color:#EEF7FF"/>
860
+ </linearGradient>
861
+ <path class="st73" d="M238.3,240.3c7.5-1.7,15,0.5,22.4,1c7.7,0.5,15.2-1.2,22.8-1.8c15.2-1.2,30.7-0.3,45.9-0.2
862
+ c6.4,0,6.4-9.4,0-9.5c-15.8-0.1-32-1.1-47.8,0.4c-7.6,0.7-15,2.2-22.7,1.5c-7.9-0.7-15.3-2.3-23.3-0.5
863
+ C229.4,232.6,232,241.7,238.3,240.3z"/>
864
+ <path class="st42" d="M24.4,239.6c7.5-2.5,15,0.7,22.4,1.5c7.7,0.7,15.2-1.8,22.8-2.7c15.2-1.7,30.7-0.4,45.9-0.4
865
+ c6.4,0,6.4-14,0-14c-15.8-0.1-32-1.6-47.8,0.6c-7.6,1.1-15,3.2-22.7,2.2c-7.9-1.1-15.3-3.4-23.3-0.7
866
+ C15.5,228.2,18.2,241.7,24.4,239.6z"/>
867
+ <linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="18.2166" y1="232.425" x2="120.3595" y2="232.425">
868
+ <stop offset="0" style="stop-color:#E5F7FF"/>
869
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
870
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
871
+ <stop offset="1" style="stop-color:#EEF7FF"/>
872
+ </linearGradient>
873
+ <path class="st74" d="M24.4,237.3c7.5-1.7,15,0.5,22.4,1c7.7,0.5,15.2-1.2,22.8-1.8c15.2-1.2,30.7-0.3,45.9-0.2
874
+ c6.4,0,6.4-9.4,0-9.5c-15.8-0.1-32-1.1-47.8,0.4c-7.6,0.7-15,2.2-22.7,1.5c-7.9-0.7-15.3-2.3-23.3-0.5
875
+ C15.5,229.7,18.2,238.8,24.4,237.3z"/>
876
+
877
+ <linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="185.3599" y1="590.67" x2="185.3599" y2="721.73" gradientTransform="matrix(1 0 0 1 -8.3599 -423.67)">
878
+ <stop offset="0" style="stop-color:#0F3044"/>
879
+ <stop offset="0.3" style="stop-color:#0F3044;stop-opacity:0"/>
880
+ <stop offset="0.7" style="stop-color:#0F3044;stop-opacity:0"/>
881
+ <stop offset="1" style="stop-color:#0F3044"/>
882
+ </linearGradient>
883
+ <polygon class="st75" points="327.2,297.5 26.8,297.5 16.8,232.5 26.8,167.5 327.2,167.5 337.2,232.5 "/>
884
+ </g>
885
+ <g id="snow">
886
+ <path class="st42" d="M323.9,66.7c2.2-2.6,1.4-7.5-2.5-8.3c0-0.6-0.1-1.2-0.2-1.8c0.8-1.2,1.1-2.8,0.8-4.3c2.9-1.5,3.2-5.9,1-8.1
887
+ c-0.1-0.4-0.2-0.8-0.3-1.2c0.4-1,0.5-2.2,0.3-3.3c0.3-1.2,0.1-2.6-0.5-3.7c0.5-0.9,0.7-2.1,0.6-3.1c1.1-1.9,0.9-4.7-0.6-6.3
888
+ c0-0.2,0-0.4,0-0.5c1.6-1.4,2.1-3.9,1.3-5.9c0.5-1.4,0.5-3.1-0.2-4.4c0.3-1.2,0.3-2.5-0.2-3.6c0.9-2.5,0.1-5.7-2.6-6.7
889
+ c-0.8-1.3-2.1-2.3-4.1-2.3c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5,0c-0.6,0-1.2,0.1-1.7,0.3c-0.8-0.6-1.7-0.9-3-0.9
890
+ c-1,0-1.9,0.3-2.6,0.7c-0.9,0.1-1.7,0.4-2.3,0.9c-0.8-0.8-1.9-1.3-3.4-1.3c-0.2,0-0.5,0-0.7,0c-0.7-0.4-1.6-0.7-2.6-0.7
891
+ c-1.1,0-1.9,0.3-2.6,0.7c-0.6-0.2-1.3-0.4-2-0.4c-0.8,0-1.5,0.2-2.1,0.4c-0.6-0.3-1.2-0.4-1.9-0.4h-0.3c-0.8-0.6-1.8-1-3-1
892
+ c-1.7,0-2.9,0.7-3.7,1.7c-0.5-0.2-1.1-0.3-1.7-0.4c-0.6-0.2-1.2-0.3-1.9-0.3c-1.2,0-2.2,0.4-3,1c-0.8-1-2-1.6-3.7-1.6
893
+ c-1.5,0-2.7,0.6-3.5,1.4c-0.9,0.1-1.6,0.4-2.2,0.9c-0.5-0.2-1.1-0.3-1.7-0.3c-0.2,0-0.4,0-0.6,0c-0.8-0.8-1.9-1.4-3.4-1.4
894
+ c-0.7,0-1.3,0.1-1.8,0.3c-0.7-0.4-1.5-0.6-2.5-0.6c-1.7,0-2.9,0.7-3.7,1.7c-0.2,0-0.4,0-0.6,0c-0.9,0-1.7,0.2-2.3,0.5
895
+ c-0.7-0.3-1.4-0.5-2.3-0.5c-0.2,0-0.5,0-0.7,0c-0.6-0.2-1.2-0.4-2-0.4c-0.5,0-1,0.1-1.4,0.2c-0.8-0.7-1.9-1.2-3.3-1.2
896
+ c-1.1,0-2,0.3-2.7,0.8c-1.2-0.5-2.6-0.4-4.1,0.6c1.4-0.9-2.7-1.2-3.6-1.1c-0.7,0.1-1.3,0.3-1.8,0.5c-0.4-0.1-0.8-0.2-1.3-0.3
897
+ c-1.6-0.1-3.3,1.3-4.6,1.5c0.5-0.2-0.9-1-1-1.1c-0.8-0.5-1.7-0.6-2.5-0.7c-2.3-0.3-4.4,0.4-6.6,0.5c-6.4,0.2-6.4,10.2,0,10
898
+ c1.6-0.1,3.8-0.9,5.3-0.7c1.1,0.2,2.3,1.3,3.5,1.5c1.5,0.3,3.7,0.4,5-0.5c0.1-0.1,0.2-0.2,0.3-0.2c1.1,0.4,2,0.7,3.4,0.4
899
+ c0.5-0.2,1-0.4,1.6-0.7c0.1,0,0.3,0.1,0.5,0.1c0.8,0.3,1.6,0.5,2.5,0.6c1.8,0.1,3.1-0.3,4.5-1.3c0.1-0.1,0.2-0.1,0.3-0.2
900
+ c0.5,0.1,1,0.2,1.5,0.2c0.5,0,1-0.1,1.4-0.2c0.8,0.7,1.9,1.2,3.3,1.2c0.2,0,0.5,0,0.7,0c0.6,0.2,1.2,0.4,2,0.4
901
+ c0.9,0,1.7-0.2,2.3-0.5c0.7,0.3,1.4,0.5,2.3,0.5c1.7,0,2.9-0.7,3.7-1.7c0.2,0,0.4,0,0.6,0c0.7,0,1.3-0.1,1.8-0.3
902
+ c0.7,0.4,1.5,0.6,2.5,0.6c0.2,0,0.4,0,0.6,0c0.8,0.8,1.9,1.4,3.4,1.4c1.2,0,2.2-0.4,3-0.9c0.5,0.2,1.1,0.3,1.7,0.3
903
+ c1.5,0,2.7-0.6,3.5-1.4c0.9-0.1,1.6-0.5,2.2-0.9c0.8,0.9,1.9,1.6,3.5,1.6c0.5,0.2,1.2,0.3,1.9,0.3c1.7,0,2.9-0.7,3.7-1.7
904
+ c0.6,0.2,1.2,0.4,1.9,0.4c0,0,0,0,0.1,0c0.9,0.6,1.8,1,2.9,1h0.3c0.7,0,1.3-0.1,1.9-0.4c0.6,0.3,1.3,0.4,2.1,0.4
905
+ c1.1,0,1.9-0.3,2.6-0.7c0.6,0.2,1.3,0.4,2,0.4c0.2,0,0.5,0,0.7,0c0.7,0.4,1.6,0.7,2.6,0.7c1.2,0,2.2-0.4,3-1
906
+ c0.8,0.8,1.9,1.3,3.4,1.3c1,0,1.9-0.3,2.6-0.7c0.4,0,0.8-0.1,1.1-0.2c0.4,0.3,1,0.6,1.6,0.8c-0.3,1.2-0.1,2.5,0.4,3.6
907
+ c-0.3,1-0.3,2.1,0,3.1c-0.4,0.4-0.7,0.8-1,1.3c-1.3,1.4-1.6,3.6-0.9,5.4c0.1,1.2,0.5,2.4,1.3,3.3c0,0.3,0,0.7,0,1
908
+ c-0.9,1.6-0.9,3.6-0.1,5.2c-0.6,1.1-0.7,2.4-0.5,3.7c-0.2,1.1-0.1,2.3,0.3,3.3c-0.8,1.9-0.5,4.3,1,5.8c0,0.1,0,0.2,0.1,0.2
909
+ c-2.2,1.1-2.9,3.8-2.2,6.1c-1.8,2.6-0.9,7.1,2.8,7.9c0,0.6,0.1,1.1,0.2,1.7c-1,1.2-1.4,2.9-1.1,4.5c-2.6,1.2-3.4,4.5-2.3,6.9
910
+ c-1,2.1-0.6,4.8,1.2,6.3c-0.6,1.5-0.5,3.2,0.2,4.6c-0.4,1.2-0.4,2.6,0.1,3.8c-1.8,1.9-1.8,5.3,0,7.2c0,0.1,0,0.2,0,0.4
911
+ c-0.7,1.9-0.4,4.3,1,5.7c-1.5,1.5-1.8,4-0.9,6c-2.2,1.8-2.4,5.4-0.6,7.5c-1,2-0.7,4.6,0.9,6.2c-1.6,2-1.5,5.2,0.3,7
912
+ c-0.9,0.8-1.5,1.9-1.7,3c-1.3,1.6-1.4,4-0.5,5.9c-1.8,2.5-1,6.9,2.3,7.9c0.1,0.2,0.3,0.4,0.5,0.6c-1.5,1.2-2.1,3.4-1.6,5.3
913
+ c-2.2,2.1-2,6.2,0.6,7.9c0.3,2.2,1.9,4.1,4.8,4.1c5.3,0,6.2-6.8,2.8-9.2c0-0.1,0-0.3-0.1-0.4c2-1.9,2-5.5,0-7.4
914
+ c2.6-2.2,2.3-7.1-1-8.6c0.3-0.6,0.6-1.2,0.7-1.8c1.5-2,1.4-5.2-0.4-6.9c2.2-1.8,2.4-5.7,0.3-7.7c1.5-1.9,1.5-5-0.1-6.8
915
+ c0.7-1.5,0.8-3.3,0.1-4.8c2.3-1.8,2.4-5.7,0.4-7.7c1.1-1.1,1.6-2.8,1.4-4.3c0.7-1.9,0.4-4.1-1-5.6c0-0.6-0.1-1.2-0.4-1.8
916
+ c1.5-1.6,1.8-4.2,0.8-6.2c0.6-2,0.2-4.4-1.4-5.7c0.6-1.4,0.5-3-0.1-4.4c0.5-1,0.6-2.3,0.4-3.4C323.8,71.8,324.6,69,323.9,66.7z"/>
917
+ <linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="212.7078" y1="81.603" x2="322.5522" y2="81.603">
918
+ <stop offset="0" style="stop-color:#E5F7FF"/>
919
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
920
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
921
+ <stop offset="1" style="stop-color:#EEF7FF"/>
922
+ </linearGradient>
923
+ <path class="st76" d="M321.4,65.7c2.1-2.4,1.3-7-2.3-7.8c0-0.6-0.1-1.1-0.2-1.6c0.8-1.1,1-2.6,0.7-4c2.7-1.4,3-5.5,1-7.6
924
+ c-0.1-0.4-0.2-0.8-0.3-1.1c0.4-1,0.5-2.1,0.3-3.1c0.2-1.2,0.1-2.4-0.4-3.5c0.5-0.9,0.6-1.9,0.5-2.9c1-1.8,0.8-4.4-0.6-5.9
925
+ c0-0.2,0-0.3,0-0.5c1.5-1.3,1.9-3.7,1.2-5.5c0.5-1.3,0.4-2.9-0.2-4.2c0.3-1.1,0.3-2.3-0.1-3.4c0.9-2.3,0.1-5.3-2.5-6.3
926
+ c-0.7-1.3-2-2.2-3.9-2.2c-0.2,0-0.3,0-0.5,0c-0.2,0-0.3,0-0.5,0c-0.6,0-1.1,0.1-1.6,0.3c-0.7-0.5-1.6-0.9-2.8-0.9
927
+ c-1,0-1.8,0.3-2.5,0.7c-0.9,0.1-1.6,0.4-2.2,0.8c-0.7-0.7-1.8-1.2-3.2-1.2c-0.2,0-0.4,0-0.7,0c-0.7-0.4-1.5-0.7-2.5-0.7
928
+ c-1,0-1.8,0.3-2.5,0.7c-0.5-0.2-1.2-0.4-1.9-0.4c-0.7,0-1.4,0.1-1.9,0.4c-0.6-0.2-1.2-0.4-1.8-0.4h-0.3c-0.7-0.6-1.7-0.9-2.9-0.9
929
+ c-1.6,0-2.7,0.6-3.5,1.6c-0.5-0.2-1-0.3-1.6-0.3c-0.5-0.2-1.1-0.3-1.8-0.3c-1.2,0-2.1,0.3-2.8,0.9c-0.8-0.9-1.9-1.5-3.4-1.5
930
+ c-1.4,0-2.5,0.5-3.2,1.3c-0.8,0.1-1.5,0.4-2,0.8c-0.5-0.2-1-0.3-1.6-0.3c-0.2,0-0.4,0-0.5,0c-0.8-0.8-1.8-1.3-3.2-1.3
931
+ c-0.6,0-1.2,0.1-1.7,0.3c-0.6-0.4-1.4-0.6-2.4-0.6c-1.6,0-2.7,0.6-3.5,1.6c-0.2,0-0.4,0-0.6,0c-0.9,0-1.6,0.2-2.2,0.5
932
+ c-0.6-0.3-1.3-0.5-2.2-0.5c-0.2,0-0.4,0-0.6,0c-0.5-0.2-1.2-0.4-1.9-0.4c-0.5,0-0.9,0.1-1.3,0.2c-0.7-0.7-1.8-1.1-3.1-1.1
933
+ c-1,0-1.9,0.3-2.6,0.7c-1.1-0.5-2.5-0.4-3.9,0.5c1.3-0.9-2.5-1.1-3.3-1c-0.7,0.1-1.2,0.3-1.7,0.5c-0.4-0.1-0.8-0.2-1.2-0.3
934
+ c-1.5-0.1-3.1,1.2-4.3,1.4c0.4-0.2-0.9-1-1-1c-0.7-0.5-1.6-0.5-2.4-0.6c-2.1-0.3-4.1,0.4-6.2,0.5c-6,0.2-6.1,9.6,0,9.4
935
+ c1.5-0.1,3.5-0.8,5-0.6c1.1,0.1,2.2,1.2,3.3,1.4c1.4,0.3,3.5,0.4,4.7-0.5c0.1-0.1,0.2-0.1,0.3-0.2c1,0.4,1.9,0.6,3.2,0.3
936
+ c0.5-0.2,1-0.4,1.5-0.6c0.1,0,0.3,0.1,0.4,0.1c0.7,0.3,1.5,0.5,2.3,0.5c1.7,0.1,2.9-0.3,4.3-1.2c0.1-0.1,0.2-0.1,0.2-0.2
937
+ c0.4,0.1,0.9,0.2,1.4,0.2c0.5,0,0.9-0.1,1.3-0.2c0.7,0.7,1.8,1.1,3.1,1.1c0.2,0,0.4,0,0.6,0c0.5,0.2,1.2,0.4,1.9,0.4
938
+ c0.9,0,1.6-0.2,2.2-0.5c0.6,0.3,1.3,0.5,2.2,0.5c1.6,0,2.7-0.6,3.5-1.6c0.2,0,0.4,0,0.6,0c0.6,0,1.2-0.1,1.7-0.3
939
+ c0.6,0.4,1.4,0.6,2.4,0.6c0.2,0,0.4,0,0.5,0c0.8,0.8,1.8,1.3,3.2,1.3c1.1,0,2.1-0.3,2.8-0.9c0.5,0.2,1,0.3,1.6,0.3
940
+ c1.4,0,2.5-0.5,3.2-1.3c0.8-0.1,1.5-0.4,2-0.9c0.7,0.9,1.8,1.5,3.3,1.5c0.5,0.2,1.1,0.3,1.8,0.3c1.6,0,2.7-0.6,3.5-1.6
941
+ c0.5,0.2,1.1,0.3,1.8,0.3c0,0,0,0,0,0c0.8,0.6,1.7,0.9,2.8,0.9h0.3c0.6,0,1.2-0.1,1.8-0.4c0.6,0.2,1.2,0.4,1.9,0.4
942
+ c1,0,1.8-0.3,2.5-0.7c0.5,0.2,1.2,0.4,1.9,0.4c0.2,0,0.4,0,0.7,0c0.7,0.4,1.5,0.7,2.5,0.7c1.2,0,2.1-0.3,2.8-0.9
943
+ c0.7,0.7,1.8,1.2,3.2,1.2c1,0,1.8-0.2,2.5-0.7c0.4,0,0.7-0.1,1-0.2c0.4,0.3,0.9,0.6,1.5,0.7c-0.2,1.1-0.1,2.4,0.4,3.4
944
+ c-0.3,0.9-0.3,2,0,2.9c-0.4,0.4-0.7,0.8-0.9,1.2c-1.2,1.3-1.5,3.4-0.9,5.1c0.1,1.2,0.5,2.3,1.3,3.1c0,0.3,0,0.6,0,1
945
+ c-0.8,1.5-0.9,3.4-0.1,4.9c-0.5,1-0.7,2.3-0.4,3.5c-0.2,1-0.1,2.1,0.3,3.1c-0.8,1.8-0.4,4.1,0.9,5.5c0,0.1,0,0.1,0.1,0.2
946
+ c-2,1.1-2.7,3.6-2.1,5.7c-1.7,2.5-0.8,6.7,2.6,7.4c0,0.5,0.1,1.1,0.2,1.6c-1,1.1-1.3,2.8-1,4.2c-2.5,1.1-3.2,4.2-2.1,6.5
947
+ c-0.9,1.9-0.5,4.5,1.1,5.9c-0.5,1.4-0.5,3,0.2,4.3c-0.4,1.2-0.3,2.5,0.1,3.6c-1.7,1.8-1.7,5,0,6.8c0,0.1,0,0.2,0,0.3
948
+ c-0.7,1.8-0.4,4,1,5.4c-1.4,1.4-1.7,3.8-0.9,5.6c-2.1,1.6-2.3,5.1-0.5,7.1c-0.9,1.8-0.7,4.3,0.8,5.8c-1.5,1.9-1.4,4.9,0.3,6.6
949
+ c-0.9,0.7-1.4,1.7-1.6,2.8c-1.2,1.5-1.3,3.8-0.4,5.5c-1.7,2.4-1,6.5,2.2,7.4c0.1,0.2,0.3,0.4,0.5,0.5c-1.4,1.2-1.9,3.2-1.5,4.9
950
+ c-2,2-1.8,5.8,0.5,7.4c0.3,2.1,1.8,3.9,4.5,3.9c5,0,5.9-6.4,2.6-8.6c0-0.1,0-0.3-0.1-0.4c1.8-1.8,1.8-5.1,0-7c2.5-2,2.2-6.6-0.9-8
951
+ c0.3-0.5,0.5-1.1,0.6-1.7c1.4-1.9,1.3-4.8-0.3-6.5c2.1-1.7,2.2-5.3,0.3-7.2c1.4-1.8,1.4-4.7-0.1-6.4c0.7-1.4,0.7-3.1,0.1-4.5
952
+ c2.1-1.7,2.3-5.3,0.4-7.2c1-1,1.5-2.6,1.3-4.1c0.7-1.7,0.4-3.9-0.9-5.2c0-0.6-0.1-1.2-0.4-1.7c1.4-1.5,1.7-4,0.7-5.8
953
+ c0.6-1.9,0.2-4.1-1.3-5.4c0.5-1.3,0.5-2.9-0.1-4.1c0.5-1,0.6-2.1,0.4-3.2C321.2,70.5,322,67.9,321.4,65.7z"/>
954
+ <path class="st42" d="M143.3,5.5c-2.8-2.2-5.8-3.1-8.9-2.1c-2.5-0.4-4.7,0.3-7.3,0.9c-3.2,0.8-6-0.7-9.3-0.8c-4-0.2-8,0.1-12,0.1
955
+ c-3.7,0-7.7,0.6-11.1-0.8c-0.9-0.4-2-0.3-3,0.1c-0.4-0.1-0.9-0.2-1.2-0.3c-1.2-0.4-2-0.5-3.3-0.3c-1.8,0.3-3.2,0.8-4.9,1
956
+ c-0.8-0.4-1.6-0.7-2.6-0.8c-0.8-0.1-1.7,0-2.5,0.2c-0.1,0-0.3,0.1-0.4,0.1c-1.5-1.1-3.7-1.2-5.5-0.3c-2.9,1.3-5.9,0.1-8.7,0.2
957
+ C60.8,2,58.8,2.2,56.9,3c-1.5-1-3.6-1.3-5.2-0.4c-1.5-1.2-4-1.4-5.6-0.3c-0.2,0.2-0.5,0.3-0.7,0.5c-1.7-0.8-3.6-0.7-5.1,0.5
958
+ c-2.3-0.7-5-0.4-7.4,0.8c-2.4,1.2-2.9,3.5-2.2,5.5c-1.6,2-1.5,5.2,0.3,7.1c-2.2,1.8-2.4,5.5-0.4,7.6c0.1,0.4,0.3,0.7,0.5,1
959
+ c-1.4,1.1-2,3-1.8,4.8c-1.3,1.7-1.4,4.4-0.2,6.2c-0.7,1.5-0.7,3.2,0,4.7c-0.9,1.9-0.6,4.3,0.8,5.8c-2.3,2.1-2.1,6.4,0.6,8.1
960
+ c-1.9,1.4-2.3,4.3-1.4,6.4c-0.4,1.7,0,3.7,1.2,5c-0.4,0.9-0.5,1.9-0.3,2.9c-0.7,1.7-0.5,3.8,0.6,5.3c-2.3,1.7-2.6,5.4-0.9,7.5
961
+ c-0.8,1.7-0.6,3.9,0.5,5.5c0,0.6,0.1,1.2,0.2,1.8c-0.5,1.5-0.3,3.3,0.6,4.7c-0.8,1.3-1.1,2.9-0.7,4.4c-1.2,1.9-1.1,4.6,0.3,6.3
962
+ c-0.8,1.8-0.6,4.1,0.7,5.7c-0.5,1-0.6,2.2-0.4,3.2c-1,1.7-1,4,0.1,5.7c-2.3,2.2-2,6.6,0.9,8.2c-3,1.3-3.5,5.6-1.6,8
963
+ c0,0.1,0,0.2,0,0.3v0.3c0,0.7,0.2,1.3,0.4,2c-1.6,2.3-1.1,5.9,1.4,7.4c-2.5,1.5-2.9,5.2-1.3,7.5c-0.7,0.9-1.2,2-1.2,3.2
964
+ c0,1,0.4,2.1,1,3c-0.3,1-0.4,2.1-0.1,3c0,0.2,0.1,0.3,0.2,0.5c0.5,1.9,2.1,3.5,4.6,3.5c2.3,0,3.8-1.3,4.5-3
965
+ c0.2-0.3,0.4-0.5,0.5-0.8c0.7-1,0.8-2.7,0.5-3.9c-0.2-0.6-0.5-1.2-0.9-1.8c0.1-0.3,0.1-0.6,0.1-0.9c0-1.1-0.5-2.4-1.2-3.3
966
+ c1.3-2.3,0.8-5.6-1.6-7.1c2.1-1.2,2.7-4,2-6.2c0.7-0.9,1.1-2,1.1-3.1v-0.3c0-1.3-0.6-2.6-1.5-3.5c0,0,0,0-0.1,0
967
+ c0-1.8-0.8-3.6-2.4-4.5c2.6-1.2,3.4-4.5,2.2-7c2.1-1.4,2.7-4.3,1.7-6.6c0.4-1.6,0.1-3.5-1-4.8c0.8-1.8,0.6-4.1-0.7-5.6
968
+ c0.5-1.1,0.6-2.5,0.3-3.7c1.1-1.7,1.1-4.2,0-5.9c0.9-1.3,1.1-3.1,0.6-4.7c0.5-1.6,0.2-3.5-0.8-4.8c0-1.3-0.3-2.6-1.1-3.5
969
+ c0.8-1.7,0.6-3.9-0.5-5.5c1.6-1.1,2.2-3.2,1.9-5.1c0.8-1.9,0.4-4.3-1-5.7c0.5-1.3,0.5-2.7,0-4c3.3-1.9,3.1-7.4-0.4-9
970
+ c0.3-1.6-0.1-3.4-1.1-4.6c1.7-1.5,2-4.2,1.1-6.2c0.8-1.7,0.7-3.8-0.3-5.3c0.5-1,0.6-2.1,0.5-3.1c1.3-1.7,1.4-4.4,0.2-6.2
971
+ c2.3-1.8,2.4-5.5,0.5-7.6c-0.2-0.7-0.6-1.3-1.1-1.8c0.7-0.6,1.2-1.3,1.5-2.1c1.8,0.9,4.1,0.4,5.7-1c1,0.2,2,0.1,2.9-0.4
972
+ c1.5,1.8,4.2,2.4,6.3,1.2c2.1,1.1,4.8,0.8,6.4-1.2c1.7,0.5,3.7,0.1,4.9-1.2c-0.9,1-0.7,0.4,1,0.7c1.1,0.2,2.4,0.3,3.5,0.3
973
+ c1.1-0.1,2.1-0.2,3.1-0.5c1,0.4,2.1,0.7,3.3,0.6c0.8-0.1,1.6-0.2,2.4-0.4c0.1,0,0.1,0,0.2,0c1.2,0.4,2.7,0.6,2.9,0.7
974
+ c1.7,0.1,3.5,0,5.1-0.4c0.8-0.2,1.6-0.5,2.4-0.8c-0.6,0.7-0.3,1.1,0.9,1.1c1.6,0.4,3.2,0.4,4.5-0.1c7.4,1.9,16.1-0.3,23.6,0.3
975
+ c3.8,0.3,6.7,1.8,10.6,0.8c1.8-0.4,3.1-0.9,4.9-0.9c0.9,0.2,1.8,0.2,2.7,0c0.5-0.1,0.8-0.2,1-0.3C142,15.8,148.1,9.3,143.3,5.5z"/>
976
+ <linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="30.8507" y1="80.1662" x2="141.072" y2="80.1662">
977
+ <stop offset="0" style="stop-color:#E5F7FF"/>
978
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
979
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
980
+ <stop offset="1" style="stop-color:#EEF7FF"/>
981
+ </linearGradient>
982
+ <path class="st77" d="M139.5,6.4c-2.6-2.1-5.4-2.9-8.4-2c-2.3-0.4-4.4,0.3-6.8,0.9c-3,0.8-5.7-0.6-8.8-0.7
983
+ c-3.8-0.2-7.6,0.1-11.3,0.1c-3.5,0-7.2,0.6-10.5-0.7c-0.9-0.3-1.9-0.3-2.8,0.1c-0.4-0.1-0.8-0.2-1.1-0.3c-1.2-0.4-1.9-0.4-3.1-0.2
984
+ c-1.7,0.2-3,0.8-4.6,0.9c-0.7-0.4-1.5-0.6-2.5-0.7c-0.8-0.1-1.6,0-2.4,0.2c-0.1,0-0.3,0.1-0.4,0.1c-1.4-1-3.5-1.1-5.2-0.3
985
+ c-2.8,1.3-5.5,0.1-8.2,0.2C61.6,3,59.7,3.2,57.9,4c-1.4-1-3.4-1.2-4.9-0.4c-1.4-1.1-3.7-1.3-5.2-0.3c-0.2,0.1-0.4,0.3-0.7,0.4
986
+ c-1.6-0.8-3.4-0.6-4.8,0.4c-2.2-0.7-4.7-0.4-7,0.8c-2.3,1.2-2.7,3.3-2.1,5.1c-1.6,1.9-1.5,4.9,0.3,6.7c-2.1,1.7-2.2,5.2-0.4,7.1
987
+ c0.1,0.3,0.3,0.7,0.5,1c-1.4,1-1.9,2.9-1.7,4.5c-1.3,1.6-1.3,4.1-0.2,5.8c-0.7,1.4-0.7,3.1,0,4.4c-0.8,1.8-0.6,4.1,0.7,5.5
988
+ c-2.2,2-2,6,0.6,7.6c-1.8,1.4-2.2,4-1.3,6c-0.4,1.6,0,3.5,1.2,4.7c-0.3,0.9-0.4,1.8-0.3,2.8c-0.7,1.6-0.5,3.6,0.6,5
989
+ c-2.2,1.6-2.5,5.1-0.8,7.1c-0.7,1.6-0.6,3.7,0.5,5.2c0,0.6,0.1,1.2,0.2,1.7c-0.4,1.5-0.2,3.1,0.6,4.4c-0.8,1.2-1,2.8-0.7,4.1
990
+ c-1.1,1.8-1,4.3,0.3,5.9c-0.8,1.7-0.6,3.9,0.6,5.3c-0.4,0.9-0.6,2-0.4,3.1c-0.9,1.6-0.9,3.8,0.1,5.3c-2.1,2.1-1.9,6.2,0.9,7.7
991
+ c-2.9,1.3-3.3,5.3-1.5,7.5c0,0.1,0,0.2,0,0.3v0.3c0,0.6,0.1,1.3,0.4,1.8c-1.5,2.1-1,5.6,1.3,7c-2.4,1.4-2.8,4.9-1.2,7.1
992
+ c-0.7,0.8-1.1,1.9-1.1,3c0,0.9,0.3,2,0.9,2.8c-0.3,0.9-0.3,2-0.1,2.9c0,0.2,0.1,0.3,0.2,0.5c0.5,1.8,1.9,3.3,4.4,3.3
993
+ c2.2,0,3.6-1.2,4.2-2.8c0.2-0.3,0.3-0.5,0.5-0.8c0.7-1,0.8-2.5,0.5-3.6c-0.2-0.6-0.5-1.2-0.9-1.7c0.1-0.3,0.1-0.6,0.1-0.8
994
+ c0-1-0.4-2.3-1.1-3.1c1.2-2.1,0.8-5.3-1.5-6.7c2-1.2,2.6-3.8,1.8-5.8c0.7-0.8,1.1-1.8,1.1-3V129c0-1.2-0.5-2.5-1.4-3.3c0,0,0,0,0,0
995
+ c0-1.7-0.7-3.4-2.3-4.2c2.5-1.1,3.2-4.3,2.1-6.6c2-1.3,2.5-4.1,1.6-6.2c0.4-1.5,0.1-3.3-0.9-4.5c0.8-1.7,0.6-3.9-0.6-5.3
996
+ c0.5-1.1,0.6-2.3,0.3-3.5c1.1-1.6,1.1-4,0-5.6c0.8-1.3,1-2.9,0.6-4.4c0.5-1.5,0.2-3.3-0.7-4.6c0-1.2-0.3-2.4-1.1-3.3
997
+ c0.7-1.6,0.6-3.7-0.5-5.2c1.5-1.1,2.1-3,1.8-4.8c0.7-1.8,0.4-4-0.9-5.4c0.5-1.2,0.5-2.6,0-3.8c3.1-1.8,2.9-7-0.4-8.5
998
+ c0.3-1.5-0.1-3.2-1.1-4.3c1.6-1.4,1.9-3.9,1-5.8c0.7-1.6,0.6-3.6-0.3-5c0.4-0.9,0.6-1.9,0.4-2.9c1.3-1.6,1.3-4.1,0.2-5.8
999
+ c2.1-1.7,2.3-5.2,0.5-7.1c-0.2-0.7-0.6-1.3-1.1-1.7c0.7-0.5,1.1-1.2,1.4-2c1.7,0.8,3.9,0.4,5.4-0.9c0.9,0.2,1.9,0.1,2.8-0.4
1000
+ c1.4,1.7,4,2.2,5.9,1.2c2,1.1,4.5,0.8,6-1.1c1.6,0.5,3.5,0.1,4.6-1.2c-0.8,1-0.6,0.4,0.9,0.7c1.1,0.2,2.3,0.3,3.3,0.3
1001
+ c1,0,2-0.2,2.9-0.5c0.9,0.4,2,0.6,3.1,0.6c0.8-0.1,1.5-0.2,2.3-0.4c0.1,0,0.1,0,0.2,0c1.1,0.3,2.5,0.6,2.7,0.6
1002
+ c1.6,0.1,3.3,0,4.8-0.4c0.8-0.2,1.5-0.5,2.3-0.8c-0.5,0.7-0.3,1,0.9,1.1c1.5,0.4,3,0.4,4.3-0.1c7,1.8,15.1-0.3,22.2,0.3
1003
+ c3.6,0.3,6.3,1.7,10,0.8c1.7-0.4,3-0.8,4.6-0.9c0.8,0.2,1.7,0.2,2.5,0c0.5-0.1,0.8-0.2,1-0.3C138.2,16.1,143.9,10,139.5,6.4z"/>
1004
+ <linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="246.1478" y1="53.9553" x2="260.1245" y2="53.9553">
1005
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1006
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1007
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1008
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1009
+ </linearGradient>
1010
+ <path class="st78" d="M259.7,52.6c0.7-1.8,0.3-4.3-1.1-5.6c-2.2-2-4.9-1.7-7.1,0c-1.7,1.3-3.2,3.1-4.2,5c-0.9,1.6-1.5,3.5-0.9,5.3
1011
+ c0.5,1.6,1.6,3,3.1,3.9c2.7,1.6,6.4,1.1,8.6-1.1C260.1,58.2,260.6,55.2,259.7,52.6z"/>
1012
+ <linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="265.6624" y1="52.1249" x2="281.911" y2="52.1249">
1013
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1014
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1015
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1016
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1017
+ </linearGradient>
1018
+ <path class="st79" d="M281.7,54.8c-0.8-2.4-1.9-4.2-3.5-6.2c-0.5-0.6-1.2-1-1.9-1.2c-0.3-2-1.6-3.8-3.6-4.3
1019
+ c-2.7-0.6-5.4,0.8-6.2,3.5c-0.9,3.3-1.4,7,0.4,10.1c2.1,3.6,6.1,4.6,10,4.4C279.9,61.1,282.7,58,281.7,54.8z"/>
1020
+ <linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="245.0382" y1="74.4882" x2="261.0337" y2="74.4882">
1021
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1022
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1023
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1024
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1025
+ </linearGradient>
1026
+ <path class="st80" d="M261,74c0-1.4,0-2.6-0.5-3.9c-0.8-2-2.8-3.2-5-3.3c-2.2,0-4.6,0.7-6.8,1.1c-2.6,0.5-4.3,3.7-3.5,6.2
1027
+ c0.5,1.5,1.4,2.5,2.6,3.1c0.4,0.7,1,1.4,1.7,1.9c2.2,1.6,4.6,3.8,7.5,2.8c1.8-0.6,3.2-2,3.7-3.9C261.1,76.7,261,75.3,261,74z"/>
1028
+ <linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="267.3221" y1="74.0958" x2="281.7551" y2="74.0958">
1029
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1030
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1031
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1032
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1033
+ </linearGradient>
1034
+ <path class="st81" d="M281.7,72c-0.3-3-2.1-5.5-5.1-6.3c-2.1-0.6-4.3-0.1-5.9,1.2c-2,0.7-3.5,2.4-3.5,4.7c0,2.1,0,4.2,0,6.2
1035
+ c0,3.2,3.2,5.8,6.3,4.8C278,81.3,282.1,76.7,281.7,72z"/>
1036
+ <linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="143.585" y1="68.2233" x2="148.415" y2="68.2233">
1037
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1038
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1039
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1040
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1041
+ </linearGradient>
1042
+ <path class="st82" d="M146,65.7c-3.2,0-3.2,5,0,5C149.2,70.7,149.2,65.7,146,65.7z"/>
1043
+ <linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="234.5035" y1="129.4597" x2="244.8477" y2="129.4597">
1044
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1045
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1046
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1047
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1048
+ </linearGradient>
1049
+ <path class="st83" d="M240.3,124c-1-0.2-1.9,0.1-2.4,0.8c-0.3,0-0.6,0-0.9,0.1c-1.3,0.4-2.1,1.7-1.7,3.1c0,0.2,0.1,0.3,0.1,0.5
1050
+ c0,0.2,0,0.5,0,0.7c-0.2,0.3-0.3,0.5-0.5,0.8c-0.5,1-0.7,2.1-0.2,3.2c1.2,2.8,4.4,2.1,6.3,0.6c1.7-1.4,3.9-2.9,3.8-5.3
1051
+ C244.8,125.8,242.5,124.5,240.3,124z"/>
1052
+ <linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="247.0824" y1="129.6834" x2="286.409" y2="129.6834">
1053
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1054
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1055
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1056
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1057
+ </linearGradient>
1058
+ <path class="st84" d="M284,127.1c-3,0.1-8.7,1.2-11.5,0c-0.8-0.3-1.8-0.5-2.6,0c-1-0.3-2.1-0.6-3.2-0.9c-1.1-0.3-2.2,0.2-2.8,1.1
1059
+ c-0.2,0.4-1.1,0.8-2,1.2c0-0.1-0.1-0.1-0.1-0.2c-0.6-1.3-1.9-1.5-3-1c-0.5-0.5-1.1-0.9-1.9-1.1c-1.5-0.4-2.4,0.3-3.5,0.8
1060
+ c-0.8-1.2-1.4-2.1-3.4-2c-1.2,0.1-2,0.7-2.4,1.8c-0.4,1.1-0.4,2.1-0.6,3.3c-0.3,2.4,2.5,3,4.1,1.7c0.3,0.3,0.7,0.5,0.9,0.5
1061
+ c0.9,0.3,3.7-1.1,4-0.3c0.5,1.3,1.9,2.1,3.1,1.7c0.8,0.5,1.9,0.5,2.7,0.1c2-1.1,3.5-1.3,4.8-2.3c0.6,0.3,1.1,0.6,1.8,0.8
1062
+ c0.1,0,1.3-0.1,1-0.2c0.8,0.4,1.9,0.5,2.7-0.1c3.8,0.9,8.1,0.1,11.9,0C287.2,132.1,287.2,127.1,284,127.1z"/>
1063
+ <linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="288.9184" y1="130.2233" x2="293.7483" y2="130.2233">
1064
+ <stop offset="0" style="stop-color:#E5F7FF"/>
1065
+ <stop offset="0.2704" style="stop-color:#EEF7FF"/>
1066
+ <stop offset="0.4286" style="stop-color:#E4F7FF"/>
1067
+ <stop offset="1" style="stop-color:#EEF7FF"/>
1068
+ </linearGradient>
1069
+ <path class="st85" d="M291.3,127.7c-3.2,0-3.2,5,0,5C294.6,132.7,294.6,127.7,291.3,127.7z"/>
1070
+ </g>
1071
+ </svg>