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.
- example_project/rapid_router_test_settings.py +164 -0
- example_project/settings.py +152 -0
- example_project/urls.py +15 -0
- example_project/{example_project/wsgi.py → wsgi.py} +2 -1
- game/__init__.py +1 -1
- game/admin.py +43 -4
- game/app_settings.py +3 -7
- game/character.py +26 -18
- game/decor.py +172 -97
- game/end_to_end_tests/base_game_test.py +44 -33
- game/end_to_end_tests/editor_page.py +17 -2
- game/end_to_end_tests/game_page.py +127 -45
- game/end_to_end_tests/selenium_test_case.py +1 -20
- game/end_to_end_tests/test_cow_crashes.py +3 -5
- game/end_to_end_tests/test_language_dropdown.py +14 -0
- game/end_to_end_tests/test_level_editor.py +290 -0
- game/end_to_end_tests/test_level_failures.py +1 -1
- game/end_to_end_tests/test_level_selection.py +79 -0
- game/end_to_end_tests/test_play_through.py +240 -102
- game/end_to_end_tests/test_python_levels.py +44 -13
- game/end_to_end_tests/test_saving_workspace.py +22 -0
- game/forms.py +9 -2
- game/level_management.py +38 -29
- game/messages.py +1218 -203
- game/migrations/0001_squashed_0025_levels_ordering_pt1.py +19 -1
- game/migrations/0026_levels_pt2.py +13 -2
- game/migrations/0032_cannot_turn_left_level.py +13 -2
- game/migrations/0033_recursion_level.py +13 -2
- game/migrations/0034_joes_level.py +13 -2
- game/migrations/0035_disable_route_score_level_70.py +0 -2
- game/migrations/0036_level_score_73.py +0 -2
- game/migrations/0037_level_score_79.py +0 -2
- game/migrations/0038_level_score_40.py +0 -1
- game/migrations/0042_level_score_73.py +0 -2
- game/migrations/0048_add_cow_field_and_blocks.py +0 -2
- game/migrations/0049_level_score_34.py +0 -2
- game/migrations/0050_level_score_40.py +0 -2
- game/migrations/0051_level_score_49.py +0 -1
- game/migrations/0076_level_locked_for_class.py +19 -0
- game/migrations/0077_alter_level_next_level.py +52 -0
- game/migrations/0078_add_block_types.py +23 -0
- game/migrations/0079_populate_block_type_add_cow_blocks.py +60 -0
- game/migrations/0080_level_disable_algorithm_score.py +18 -0
- game/migrations/0081_first_12_levels_no_algo_score.py +29 -0
- game/migrations/0082_level_43_solution.py +16 -0
- game/migrations/0083_add_cows_to_existing_levels.py +195 -0
- game/migrations/0084_alter_block_block_type.py +18 -0
- game/migrations/0085_add_new_blocks.py +53 -0
- game/migrations/0086_loop_levels.py +482 -0
- game/migrations/0087_workspace_python_view_enabled.py +18 -0
- game/migrations/0088_rename_episodes.py +35 -0
- game/migrations/0089_episodes_in_development.py +30 -0
- game/migrations/0090_add_missing_model_solutions.py +144 -0
- game/migrations/0091_disable_algo_score_if_no_model_solution.py +46 -0
- game/migrations/0092_disable_algo_score_in_custom_levels.py +28 -0
- game/migrations/0093_alter_level_character_name.py +18 -0
- game/migrations/0094_add_hint_lesson_subtitle_to_levels.py +28 -0
- game/migrations/0095_level_commands.py +18 -0
- game/migrations/0096_alter_level_commands.py +18 -0
- game/migrations/0097_add_python_den_levels.py +1515 -0
- game/migrations/0098_add_episode_link_fields.py +44 -0
- game/migrations/0099_python_episodes_links.py +103 -0
- game/migrations/0100_reorder_python_levels.py +179 -0
- game/migrations/0101_rename_episodes.py +45 -0
- game/migrations/0102_reoder_episodes_13_14.py +136 -0
- game/migrations/0103_level_1015_solution.py +26 -0
- game/migrations/0104_remove_level_direct_drive.py +17 -0
- game/migrations/0105_delete_invalid_attempts.py +18 -0
- game/migrations/0106_fields_to_snake_case.py +48 -0
- game/migrations/0107_rename_worksheet_link_episode_student_worksheet_link.py +18 -0
- game/migrations/0108_episode_indy_worksheet_link.py +18 -0
- game/migrations/0109_create_episodes_23_and_24.py +99 -0
- game/migrations/0110_remove_episode_indy_worksheet_link_and_more.py +100 -0
- game/migrations/0111_create_worksheets.py +149 -0
- game/migrations/0112_worksheet_locked_classes.py +21 -0
- game/migrations/0113_level_needs_approval.py +18 -0
- game/migrations/0114_default_and_non_student_levels_no_approval.py +31 -0
- game/migrations/0115_level_level__default_does_not_need_approval.py +22 -0
- game/migrations/0116_update_worksheet_video_links.py +68 -0
- game/migrations/0117_update_solutions_to_if_else.py +61 -0
- game/models.py +157 -16
- game/permissions.py +34 -19
- game/python_den_urls.py +26 -0
- game/random_road.py +43 -127
- game/serializers.py +12 -17
- game/static/django_reverse_js/js/reverse.js +171 -0
- game/static/game/css/LilitaOne-Regular.ttf +0 -0
- game/static/game/css/backgrounds.css +14 -10
- game/static/game/css/dataTables.custom.css +4 -2
- game/static/game/css/dataTables.jqueryui.css +561 -320
- game/static/game/css/editor.css +47 -0
- game/static/game/css/game.css +43 -49
- game/static/game/css/game_screen.css +116 -53
- game/static/game/css/jquery.dataTables.css +455 -251
- game/static/game/css/level_editor.css +10 -1
- game/static/game/css/level_selection.css +32 -3
- game/static/game/css/level_share.css +6 -5
- game/static/game/css/skulpt/codemirror.css +1 -0
- game/static/game/image/Python_Den_hero_student.png +0 -0
- game/static/game/image/Python_levels_page.svg +1954 -0
- game/static/game/image/characters/front_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/image/characters/top_view/Sleigh.svg +436 -0
- game/static/game/image/decor/city/solar_panel.svg +1200 -0
- game/static/game/image/decor/farm/solar_panel.svg +86 -0
- game/static/game/image/decor/grass/solar_panel.svg +86 -0
- game/static/game/image/decor/snow/barn.svg +1788 -0
- game/static/game/image/decor/snow/cfc.svg +1050 -147
- game/static/game/image/decor/snow/crops.svg +7370 -0
- game/static/game/image/decor/snow/hospital.svg +1220 -0
- game/static/game/image/decor/snow/house1.svg +971 -0
- game/static/game/image/decor/snow/house2.svg +1574 -0
- game/static/game/image/decor/snow/school.svg +1071 -0
- game/static/game/image/decor/snow/shop.svg +3211 -0
- game/static/game/image/decor/snow/solar_panel.svg +173 -0
- game/static/game/image/electric_van.svg +448 -0
- game/static/game/image/icons/add_house.svg +26 -0
- game/static/game/image/icons/delete_house.svg +26 -0
- game/static/game/image/icons/description.svg +1 -0
- game/static/game/image/icons/hint.svg +1 -0
- game/static/game/image/icons/if_else.svg +3 -0
- game/static/game/image/icons/python.svg +1 -1
- game/static/game/image/if_else_example.png +0 -0
- game/static/game/image/pigeon.svg +684 -0
- game/static/game/image/python_den_header.svg +19 -0
- game/static/game/js/animation.js +84 -28
- game/static/game/js/blockly/msg/js/bg.js +52 -1
- game/static/game/js/blockly/msg/js/ca.js +52 -1
- game/static/game/js/blockly/msg/js/en-gb.js +52 -1
- game/static/game/js/blockly/msg/js/en.js +52 -1
- game/static/game/js/blockly/msg/js/es.js +52 -1
- game/static/game/js/blockly/msg/js/fr.js +52 -1
- game/static/game/js/blockly/msg/js/hi.js +52 -1
- game/static/game/js/blockly/msg/js/it.js +52 -1
- game/static/game/js/blockly/msg/js/pl.js +52 -1
- game/static/game/js/blockly/msg/js/pt-br.js +52 -1
- game/static/game/js/blockly/msg/js/ru.js +52 -1
- game/static/game/js/blockly/msg/js/ur.js +52 -1
- game/static/game/js/blocklyCompiler.js +550 -392
- game/static/game/js/blocklyControl.js +335 -302
- game/static/game/js/blocklyCustomBlocks.js +691 -458
- game/static/game/js/blocklyCustomisations.js +3 -1
- game/static/game/js/button.js +12 -0
- game/static/game/js/cow.js +15 -130
- game/static/game/js/drawing.js +313 -201
- game/static/game/js/editor.js +23 -0
- game/static/game/js/game.js +148 -139
- game/static/game/js/jquery.dataTables.min.js +3 -159
- game/static/game/js/level_editor.js +823 -448
- game/static/game/js/level_moderation.js +33 -2
- game/static/game/js/level_selection.js +62 -25
- game/static/game/js/loadLanguages.js +21 -0
- game/static/game/js/map.js +106 -36
- game/static/game/js/model.js +55 -107
- game/static/game/js/pathFinder.js +73 -72
- game/static/game/js/program.js +184 -193
- game/static/game/js/pythonControl.js +14 -1
- game/static/game/js/scoreboard.js +0 -37
- game/static/game/js/scoreboardSharedLevels.js +48 -0
- game/static/game/js/sharing.js +22 -10
- game/static/game/js/skulpt/codemirror.js +5 -4
- game/static/game/js/skulpt/skulpt-stdlib.js +1 -1
- game/static/game/js/sound.js +52 -5
- game/static/game/js/van.js +0 -7
- game/static/game/raphael_image/characters/top_view/Electric_van.svg +448 -0
- game/static/game/raphael_image/characters/top_view/Sleigh.svg +436 -0
- game/static/game/raphael_image/decor/city/solar_panel.svg +1200 -0
- game/static/game/raphael_image/decor/farm/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/grass/solar_panel.svg +86 -0
- game/static/game/raphael_image/decor/snow/barn.svg +1788 -0
- game/static/game/raphael_image/decor/snow/cfc.svg +1050 -147
- game/static/game/raphael_image/decor/snow/crops.svg +7370 -0
- game/static/game/raphael_image/decor/snow/hospital.svg +1220 -0
- game/static/game/raphael_image/decor/snow/house1.svg +971 -0
- game/static/game/raphael_image/decor/snow/house2.svg +1574 -0
- game/static/game/raphael_image/decor/snow/school.svg +1071 -0
- game/static/game/raphael_image/decor/snow/shop.svg +3211 -0
- game/static/game/raphael_image/decor/snow/solar_panel.svg +173 -0
- game/static/game/raphael_image/pigeon.svg +685 -0
- game/static/game/raphael_image/sleigh_wreckage.svg +430 -0
- game/static/game/sass/game.scss +22 -6
- game/static/game/sound/clown_horn.mp3 +0 -0
- game/static/game/sound/clown_horn.ogg +0 -0
- game/static/game/sound/electric_van_starting.mp3 +0 -0
- game/static/game/sound/electric_van_starting.ogg +0 -0
- game/static/game/sound/pigeon.mp3 +0 -0
- game/static/game/sound/pigeon.ogg +0 -0
- game/static/game/sound/sleigh_bells.mp3 +0 -0
- game/static/game/sound/sleigh_bells.ogg +0 -0
- game/static/game/sound/sleigh_crash.mp3 +0 -0
- game/static/game/sound/sleigh_crash.ogg +0 -0
- game/templates/game/base.html +35 -15
- game/templates/game/basenonav.html +23 -17
- game/templates/game/game.html +236 -111
- game/templates/game/level_editor.html +353 -275
- game/templates/game/level_moderation.html +19 -6
- game/templates/game/level_selection.html +75 -62
- game/templates/game/python_den_level_selection.html +291 -0
- game/templates/game/python_den_worksheet.html +101 -0
- game/templates/game/scoreboard.html +88 -65
- game/tests/test_level_editor.py +210 -35
- game/tests/test_level_moderation.py +6 -20
- game/tests/test_level_selection.py +332 -11
- game/tests/test_python_den_worksheet.py +85 -0
- game/tests/test_scoreboard.py +258 -66
- game/tests/utils/level.py +43 -3
- game/tests/utils/teacher.py +2 -2
- game/theme.py +21 -21
- game/urls.py +125 -78
- game/views/language_code_conversions.py +90 -0
- game/views/level.py +201 -63
- game/views/level_editor.py +109 -48
- game/views/level_moderation.py +29 -6
- game/views/level_selection.py +179 -56
- game/views/level_solutions.py +600 -106
- game/views/scoreboard.py +181 -66
- game/views/worksheet.py +25 -0
- rapid_router-7.6.8.dist-info/METADATA +174 -0
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/RECORD +222 -242
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/WHEEL +1 -1
- rapid_router-7.6.8.dist-info/licenses/LICENSE.md +3 -0
- example_project/example_project/__init__.py +0 -1
- example_project/example_project/settings.py +0 -54
- example_project/example_project/urls.py +0 -16
- example_project/manage.py +0 -10
- game/autoconfig.py +0 -59
- game/csp_config.py +0 -23
- game/locale/ar_SA/LC_MESSAGES/django.mo +0 -0
- game/locale/ar_SA/LC_MESSAGES/django.po +0 -405
- game/locale/ar_SA/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ar_SA/LC_MESSAGES/djangojs.po +0 -743
- game/locale/bg_BG/LC_MESSAGES/django.mo +0 -0
- game/locale/bg_BG/LC_MESSAGES/django.po +0 -405
- game/locale/bg_BG/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/bg_BG/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ca_ES/LC_MESSAGES/django.mo +0 -0
- game/locale/ca_ES/LC_MESSAGES/django.po +0 -405
- game/locale/ca_ES/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ca_ES/LC_MESSAGES/djangojs.po +0 -740
- game/locale/cs_CZ/LC_MESSAGES/django.mo +0 -0
- game/locale/cs_CZ/LC_MESSAGES/django.po +0 -405
- game/locale/cs_CZ/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/cs_CZ/LC_MESSAGES/djangojs.po +0 -741
- game/locale/cy_GB/LC_MESSAGES/django.mo +0 -0
- game/locale/cy_GB/LC_MESSAGES/django.po +0 -405
- game/locale/cy_GB/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/cy_GB/LC_MESSAGES/djangojs.po +0 -743
- game/locale/de_DE/LC_MESSAGES/django.mo +0 -0
- game/locale/de_DE/LC_MESSAGES/django.po +0 -405
- game/locale/de_DE/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/de_DE/LC_MESSAGES/djangojs.po +0 -739
- game/locale/el_GR/LC_MESSAGES/django.mo +0 -0
- game/locale/el_GR/LC_MESSAGES/django.po +0 -405
- game/locale/el_GR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/el_GR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/en_GB/LC_MESSAGES/django.mo +0 -0
- game/locale/en_GB/LC_MESSAGES/django.po +0 -405
- game/locale/en_GB/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/en_GB/LC_MESSAGES/djangojs.po +0 -739
- game/locale/es_ES/LC_MESSAGES/django.mo +0 -0
- game/locale/es_ES/LC_MESSAGES/django.po +0 -405
- game/locale/es_ES/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/es_ES/LC_MESSAGES/djangojs.po +0 -739
- game/locale/fi_FI/LC_MESSAGES/django.mo +0 -0
- game/locale/fi_FI/LC_MESSAGES/django.po +0 -405
- game/locale/fi_FI/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/fi_FI/LC_MESSAGES/djangojs.po +0 -739
- game/locale/fr_FR/LC_MESSAGES/django.mo +0 -0
- game/locale/fr_FR/LC_MESSAGES/django.po +0 -405
- game/locale/fr_FR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/fr_FR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/gu_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/gu_IN/LC_MESSAGES/django.po +0 -405
- game/locale/gu_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/gu_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/hi_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/hi_IN/LC_MESSAGES/django.po +0 -405
- game/locale/hi_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/hi_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/id_ID/LC_MESSAGES/django.mo +0 -0
- game/locale/id_ID/LC_MESSAGES/django.po +0 -405
- game/locale/id_ID/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/id_ID/LC_MESSAGES/djangojs.po +0 -738
- game/locale/it_IT/LC_MESSAGES/django.mo +0 -0
- game/locale/it_IT/LC_MESSAGES/django.po +0 -405
- game/locale/it_IT/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/it_IT/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ja_JP/LC_MESSAGES/django.mo +0 -0
- game/locale/ja_JP/LC_MESSAGES/django.po +0 -405
- game/locale/ja_JP/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ja_JP/LC_MESSAGES/djangojs.po +0 -738
- game/locale/lol_US/LC_MESSAGES/django.mo +0 -0
- game/locale/lol_US/LC_MESSAGES/django.po +0 -405
- game/locale/lol_US/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/lol_US/LC_MESSAGES/djangojs.po +0 -739
- game/locale/nb_NO/LC_MESSAGES/django.mo +0 -0
- game/locale/nb_NO/LC_MESSAGES/django.po +0 -405
- game/locale/nb_NO/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/nb_NO/LC_MESSAGES/djangojs.po +0 -739
- game/locale/nl_NL/LC_MESSAGES/django.mo +0 -0
- game/locale/nl_NL/LC_MESSAGES/django.po +0 -405
- game/locale/nl_NL/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/nl_NL/LC_MESSAGES/djangojs.po +0 -739
- game/locale/pl_PL/LC_MESSAGES/django.mo +0 -0
- game/locale/pl_PL/LC_MESSAGES/django.po +0 -405
- game/locale/pl_PL/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pl_PL/LC_MESSAGES/djangojs.po +0 -741
- game/locale/pt_BR/LC_MESSAGES/django.mo +0 -0
- game/locale/pt_BR/LC_MESSAGES/django.po +0 -405
- game/locale/pt_BR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pt_BR/LC_MESSAGES/djangojs.po +0 -739
- game/locale/pt_PT/LC_MESSAGES/django.mo +0 -0
- game/locale/pt_PT/LC_MESSAGES/django.po +0 -405
- game/locale/pt_PT/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/pt_PT/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ro_RO/LC_MESSAGES/django.mo +0 -0
- game/locale/ro_RO/LC_MESSAGES/django.po +0 -405
- game/locale/ro_RO/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ro_RO/LC_MESSAGES/djangojs.po +0 -740
- game/locale/ru_RU/LC_MESSAGES/django.mo +0 -0
- game/locale/ru_RU/LC_MESSAGES/django.po +0 -405
- game/locale/ru_RU/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ru_RU/LC_MESSAGES/djangojs.po +0 -741
- game/locale/sv_SE/LC_MESSAGES/django.mo +0 -0
- game/locale/sv_SE/LC_MESSAGES/django.po +0 -405
- game/locale/sv_SE/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/sv_SE/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tl_PH/LC_MESSAGES/django.mo +0 -0
- game/locale/tl_PH/LC_MESSAGES/django.po +0 -405
- game/locale/tl_PH/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tl_PH/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tlh_AA/LC_MESSAGES/django.mo +0 -0
- game/locale/tlh_AA/LC_MESSAGES/django.po +0 -405
- game/locale/tlh_AA/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tlh_AA/LC_MESSAGES/djangojs.po +0 -739
- game/locale/tr_TR/LC_MESSAGES/django.mo +0 -0
- game/locale/tr_TR/LC_MESSAGES/django.po +0 -405
- game/locale/tr_TR/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/tr_TR/LC_MESSAGES/djangojs.po +0 -740
- game/locale/ur_IN/LC_MESSAGES/django.mo +0 -0
- game/locale/ur_IN/LC_MESSAGES/django.po +0 -405
- game/locale/ur_IN/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ur_IN/LC_MESSAGES/djangojs.po +0 -739
- game/locale/ur_PK/LC_MESSAGES/django.mo +0 -0
- game/locale/ur_PK/LC_MESSAGES/django.po +0 -405
- game/locale/ur_PK/LC_MESSAGES/djangojs.mo +0 -0
- game/locale/ur_PK/LC_MESSAGES/djangojs.po +0 -739
- game/static/game/image/actions/go.svg +0 -18
- game/static/game/image/icons/destination.svg +0 -9
- game/static/game/js/pqselect.min.js +0 -9
- game/static/game/js/widget-scroller.js +0 -906
- rapid_router-5.4.1.dist-info/LICENSE.md +0 -577
- rapid_router-5.4.1.dist-info/METADATA +0 -24
- {rapid_router-5.4.1.dist-info → rapid_router-7.6.8.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,1788 @@
|
|
|
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" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
width="332.1px" height="300.8px" viewBox="0 0 332.1 300.8" style="enable-background:new 0 0 332.1 300.8;" xml:space="preserve"
|
|
5
|
+
>
|
|
6
|
+
<style type="text/css">
|
|
7
|
+
.st0{opacity:0.2;fill:#183049;enable-background:new ;}
|
|
8
|
+
.st1{fill:url(#SVGID_1_);stroke:#591919;stroke-width:2;stroke-miterlimit:10;}
|
|
9
|
+
.st2{fill:url(#SVGID_2_);stroke:#591919;stroke-width:2;stroke-miterlimit:10;}
|
|
10
|
+
.st3{opacity:0.7;}
|
|
11
|
+
.st4{fill:none;stroke:#EF4B62;stroke-miterlimit:10;}
|
|
12
|
+
.st5{fill:none;stroke:#591919;stroke-miterlimit:10;}
|
|
13
|
+
.st6{fill:url(#SVGID_3_);}
|
|
14
|
+
.st7{fill:url(#SVGID_4_);stroke:#591919;stroke-width:2;stroke-miterlimit:10;}
|
|
15
|
+
.st8{fill:#C42232;stroke:#591919;stroke-miterlimit:10;}
|
|
16
|
+
.st9{fill:#EF4B62;}
|
|
17
|
+
.st10{fill:url(#SVGID_5_);stroke:#D1A134;stroke-miterlimit:10;}
|
|
18
|
+
.st11{opacity:0.2;}
|
|
19
|
+
.st12{fill:#183049;}
|
|
20
|
+
.st13{fill:#754C24;stroke:#422C19;stroke-width:2;stroke-miterlimit:10;}
|
|
21
|
+
.st14{fill:#422C19;}
|
|
22
|
+
.st15{opacity:0.3;enable-background:new ;}
|
|
23
|
+
.st16{fill:none;}
|
|
24
|
+
.st17{opacity:0.5;}
|
|
25
|
+
.st18{fill:#C48E66;}
|
|
26
|
+
.st19{fill:#B72727;stroke:#E5E5E5;stroke-width:2;stroke-miterlimit:10;}
|
|
27
|
+
.st20{fill:url(#SVGID_6_);stroke:#591919;stroke-miterlimit:10;}
|
|
28
|
+
.st21{fill:url(#SVGID_7_);stroke:#591919;stroke-miterlimit:10;}
|
|
29
|
+
.st22{fill:url(#SVGID_8_);stroke:#591919;stroke-miterlimit:10;}
|
|
30
|
+
.st23{fill:url(#SVGID_9_);stroke:#591919;stroke-miterlimit:10;}
|
|
31
|
+
.st24{fill:url(#SVGID_10_);stroke:#591919;stroke-miterlimit:10;}
|
|
32
|
+
.st25{fill:url(#SVGID_11_);stroke:#591919;stroke-miterlimit:10;}
|
|
33
|
+
.st26{fill:url(#SVGID_12_);stroke:#591919;stroke-miterlimit:10;}
|
|
34
|
+
.st27{fill:url(#SVGID_13_);stroke:#591919;stroke-miterlimit:10;}
|
|
35
|
+
.st28{fill:url(#SVGID_14_);stroke:#591919;stroke-miterlimit:10;}
|
|
36
|
+
.st29{fill:url(#SVGID_15_);stroke:#591919;stroke-miterlimit:10;}
|
|
37
|
+
.st30{fill:url(#SVGID_16_);stroke:#591919;stroke-miterlimit:10;}
|
|
38
|
+
.st31{fill:url(#SVGID_17_);stroke:#591919;stroke-miterlimit:10;}
|
|
39
|
+
.st32{fill:url(#SVGID_18_);stroke:#591919;stroke-miterlimit:10;}
|
|
40
|
+
.st33{fill:url(#SVGID_19_);stroke:#591919;stroke-miterlimit:10;}
|
|
41
|
+
.st34{fill:url(#SVGID_20_);stroke:#591919;stroke-miterlimit:10;}
|
|
42
|
+
.st35{fill:url(#SVGID_21_);stroke:#591919;stroke-miterlimit:10;}
|
|
43
|
+
.st36{fill:url(#SVGID_22_);stroke:#591919;stroke-miterlimit:10;}
|
|
44
|
+
.st37{fill:url(#SVGID_23_);stroke:#591919;stroke-miterlimit:10;}
|
|
45
|
+
.st38{fill:url(#SVGID_24_);stroke:#591919;stroke-miterlimit:10;}
|
|
46
|
+
.st39{fill:url(#SVGID_25_);stroke:#591919;stroke-miterlimit:10;}
|
|
47
|
+
.st40{fill:url(#SVGID_26_);stroke:#591919;stroke-miterlimit:10;}
|
|
48
|
+
.st41{fill:url(#SVGID_27_);stroke:#591919;stroke-miterlimit:10;}
|
|
49
|
+
.st42{fill:url(#SVGID_28_);stroke:#591919;stroke-miterlimit:10;}
|
|
50
|
+
.st43{fill:url(#SVGID_29_);stroke:#591919;stroke-miterlimit:10;}
|
|
51
|
+
.st44{fill:url(#SVGID_30_);stroke:#591919;stroke-miterlimit:10;}
|
|
52
|
+
.st45{fill:url(#SVGID_31_);stroke:#591919;stroke-miterlimit:10;}
|
|
53
|
+
.st46{fill:url(#SVGID_32_);stroke:#591919;stroke-miterlimit:10;}
|
|
54
|
+
.st47{fill:url(#SVGID_33_);stroke:#591919;stroke-miterlimit:10;}
|
|
55
|
+
.st48{fill:url(#SVGID_34_);stroke:#591919;stroke-miterlimit:10;}
|
|
56
|
+
.st49{fill:url(#SVGID_35_);stroke:#591919;stroke-miterlimit:10;}
|
|
57
|
+
.st50{fill:url(#SVGID_36_);stroke:#591919;stroke-miterlimit:10;}
|
|
58
|
+
.st51{fill:url(#SVGID_37_);stroke:#591919;stroke-miterlimit:10;}
|
|
59
|
+
.st52{fill:url(#SVGID_38_);stroke:#591919;stroke-miterlimit:10;}
|
|
60
|
+
.st53{fill:url(#SVGID_39_);stroke:#591919;stroke-miterlimit:10;}
|
|
61
|
+
.st54{fill:url(#SVGID_40_);stroke:#591919;stroke-miterlimit:10;}
|
|
62
|
+
.st55{fill:url(#SVGID_41_);stroke:#591919;stroke-miterlimit:10;}
|
|
63
|
+
.st56{fill:url(#SVGID_42_);stroke:#591919;stroke-miterlimit:10;}
|
|
64
|
+
.st57{fill:url(#SVGID_43_);stroke:#591919;stroke-miterlimit:10;}
|
|
65
|
+
.st58{fill:url(#SVGID_44_);stroke:#591919;stroke-miterlimit:10;}
|
|
66
|
+
.st59{fill:url(#SVGID_45_);stroke:#591919;stroke-miterlimit:10;}
|
|
67
|
+
.st60{fill:url(#SVGID_46_);stroke:#591919;stroke-miterlimit:10;}
|
|
68
|
+
.st61{fill:url(#SVGID_47_);stroke:#591919;stroke-miterlimit:10;}
|
|
69
|
+
.st62{fill:url(#SVGID_48_);stroke:#591919;stroke-miterlimit:10;}
|
|
70
|
+
.st63{fill:url(#SVGID_49_);stroke:#591919;stroke-miterlimit:10;}
|
|
71
|
+
.st64{fill:url(#SVGID_50_);stroke:#591919;stroke-miterlimit:10;}
|
|
72
|
+
.st65{fill:url(#SVGID_51_);stroke:#591919;stroke-miterlimit:10;}
|
|
73
|
+
.st66{fill:url(#SVGID_52_);stroke:#591919;stroke-miterlimit:10;}
|
|
74
|
+
.st67{fill:url(#SVGID_53_);stroke:#591919;stroke-miterlimit:10;}
|
|
75
|
+
.st68{fill:url(#SVGID_54_);stroke:#591919;stroke-miterlimit:10;}
|
|
76
|
+
.st69{fill:url(#SVGID_55_);stroke:#591919;stroke-miterlimit:10;}
|
|
77
|
+
.st70{fill:url(#SVGID_56_);stroke:#591919;stroke-miterlimit:10;}
|
|
78
|
+
.st71{fill:url(#SVGID_57_);stroke:#591919;stroke-miterlimit:10;}
|
|
79
|
+
.st72{fill:url(#SVGID_58_);stroke:#591919;stroke-miterlimit:10;}
|
|
80
|
+
.st73{fill:url(#SVGID_59_);stroke:#591919;stroke-miterlimit:10;}
|
|
81
|
+
.st74{fill:url(#SVGID_60_);stroke:#591919;stroke-miterlimit:10;}
|
|
82
|
+
.st75{fill:url(#SVGID_61_);stroke:#591919;stroke-miterlimit:10;}
|
|
83
|
+
.st76{fill:url(#SVGID_62_);stroke:#591919;stroke-miterlimit:10;}
|
|
84
|
+
.st77{fill:url(#SVGID_63_);stroke:#591919;stroke-miterlimit:10;}
|
|
85
|
+
.st78{fill:url(#SVGID_64_);stroke:#591919;stroke-miterlimit:10;}
|
|
86
|
+
.st79{fill:url(#SVGID_65_);stroke:#591919;stroke-miterlimit:10;}
|
|
87
|
+
.st80{fill:url(#SVGID_66_);stroke:#591919;stroke-miterlimit:10;}
|
|
88
|
+
.st81{fill:url(#SVGID_67_);stroke:#591919;stroke-miterlimit:10;}
|
|
89
|
+
.st82{fill:url(#SVGID_68_);stroke:#591919;stroke-miterlimit:10;}
|
|
90
|
+
.st83{fill:url(#SVGID_69_);stroke:#591919;stroke-miterlimit:10;}
|
|
91
|
+
.st84{fill:url(#SVGID_70_);stroke:#591919;stroke-miterlimit:10;}
|
|
92
|
+
.st85{fill:url(#SVGID_71_);stroke:#591919;stroke-miterlimit:10;}
|
|
93
|
+
.st86{fill:url(#SVGID_72_);stroke:#591919;stroke-miterlimit:10;}
|
|
94
|
+
.st87{fill:url(#SVGID_73_);stroke:#591919;stroke-miterlimit:10;}
|
|
95
|
+
.st88{fill:url(#SVGID_74_);stroke:#591919;stroke-miterlimit:10;}
|
|
96
|
+
.st89{fill:url(#SVGID_75_);stroke:#591919;stroke-miterlimit:10;}
|
|
97
|
+
.st90{fill:url(#SVGID_76_);stroke:#591919;stroke-miterlimit:10;}
|
|
98
|
+
.st91{fill:url(#SVGID_77_);stroke:#591919;stroke-miterlimit:10;}
|
|
99
|
+
.st92{fill:url(#SVGID_78_);stroke:#591919;stroke-miterlimit:10;}
|
|
100
|
+
.st93{fill:url(#SVGID_79_);stroke:#591919;stroke-miterlimit:10;}
|
|
101
|
+
.st94{fill:url(#SVGID_80_);stroke:#591919;stroke-miterlimit:10;}
|
|
102
|
+
.st95{fill:url(#SVGID_81_);stroke:#591919;stroke-miterlimit:10;}
|
|
103
|
+
.st96{fill:url(#SVGID_82_);stroke:#591919;stroke-miterlimit:10;}
|
|
104
|
+
.st97{fill:url(#SVGID_83_);stroke:#591919;stroke-miterlimit:10;}
|
|
105
|
+
.st98{fill:url(#SVGID_84_);stroke:#591919;stroke-miterlimit:10;}
|
|
106
|
+
.st99{fill:url(#SVGID_85_);stroke:#591919;stroke-miterlimit:10;}
|
|
107
|
+
.st100{fill:url(#SVGID_86_);stroke:#591919;stroke-miterlimit:10;}
|
|
108
|
+
.st101{fill:url(#SVGID_87_);stroke:#591919;stroke-miterlimit:10;}
|
|
109
|
+
.st102{fill:url(#SVGID_88_);stroke:#591919;stroke-miterlimit:10;}
|
|
110
|
+
.st103{fill:url(#SVGID_89_);stroke:#591919;stroke-miterlimit:10;}
|
|
111
|
+
.st104{fill:url(#SVGID_90_);stroke:#591919;stroke-miterlimit:10;}
|
|
112
|
+
.st105{fill:url(#SVGID_91_);stroke:#591919;stroke-miterlimit:10;}
|
|
113
|
+
.st106{fill:url(#SVGID_92_);stroke:#591919;stroke-miterlimit:10;}
|
|
114
|
+
.st107{fill:url(#SVGID_93_);stroke:#591919;stroke-miterlimit:10;}
|
|
115
|
+
.st108{fill:url(#SVGID_94_);stroke:#591919;stroke-miterlimit:10;}
|
|
116
|
+
.st109{fill:url(#SVGID_95_);stroke:#591919;stroke-miterlimit:10;}
|
|
117
|
+
.st110{fill:url(#SVGID_96_);stroke:#591919;stroke-miterlimit:10;}
|
|
118
|
+
.st111{fill:url(#SVGID_97_);stroke:#591919;stroke-miterlimit:10;}
|
|
119
|
+
.st112{opacity:0.2;fill:#140D0D;enable-background:new ;}
|
|
120
|
+
.st113{opacity:0.4;fill:#140D0D;enable-background:new ;}
|
|
121
|
+
.st114{opacity:0.4;}
|
|
122
|
+
.st115{fill:#E07E7E;}
|
|
123
|
+
.st116{fill:none;stroke:#591919;stroke-width:2;stroke-miterlimit:10;}
|
|
124
|
+
.st117{fill:url(#SVGID_98_);}
|
|
125
|
+
.st118{fill:url(#SVGID_99_);}
|
|
126
|
+
.st119{fill:#B6E7EF;}
|
|
127
|
+
.st120{fill:#EEF7FF;}
|
|
128
|
+
.st121{fill:#FFFFFF;}
|
|
129
|
+
.st122{fill:#728E2E;}
|
|
130
|
+
.st123{fill:none;stroke:#B6E7EF;stroke-width:1.798;stroke-miterlimit:10;}
|
|
131
|
+
.st124{fill:url(#SVGID_100_);}
|
|
132
|
+
.st125{fill:url(#SVGID_101_);}
|
|
133
|
+
.st126{fill:url(#SVGID_102_);}
|
|
134
|
+
.st127{fill:url(#SVGID_103_);}
|
|
135
|
+
.st128{fill:#B9D5D6;}
|
|
136
|
+
.st129{opacity:0.11;fill:#000202;}
|
|
137
|
+
.st130{fill:#000202;}
|
|
138
|
+
.st131{opacity:5.000000e-02;fill:#000202;}
|
|
139
|
+
</style>
|
|
140
|
+
<ellipse class="st0" cx="47" cy="226.8" rx="48.5" ry="43.2"/>
|
|
141
|
+
<radialGradient id="SVGID_1_" cx="2456.2322" cy="2275.9336" r="37.908" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)" gradientUnits="userSpaceOnUse">
|
|
142
|
+
<stop offset="0.9153" style="stop-color:#84142A"/>
|
|
143
|
+
<stop offset="1" style="stop-color:#C42232"/>
|
|
144
|
+
</radialGradient>
|
|
145
|
+
<path class="st1" d="M89.5,226.9c0,20.9-19,37.9-42.5,37.9s-42.5-17-42.5-37.9S23.5,189,47,189C70.5,188.9,89.5,205.9,89.5,226.9z"
|
|
146
|
+
/>
|
|
147
|
+
<radialGradient id="SVGID_2_" cx="2456.2322" cy="2275.9941" r="34.0869" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)" gradientUnits="userSpaceOnUse">
|
|
148
|
+
<stop offset="0.1118" style="stop-color:#C42232"/>
|
|
149
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
150
|
+
</radialGradient>
|
|
151
|
+
<path class="st2" d="M85.3,226.9c0,18.8-17.1,34.1-38.3,34.1S8.7,245.7,8.7,226.8s17.1-34.1,38.3-34.1S85.3,208,85.3,226.9
|
|
152
|
+
L85.3,226.9z"/>
|
|
153
|
+
<g>
|
|
154
|
+
<g class="st3">
|
|
155
|
+
<path class="st4" d="M23.8,248.2c-13.4-11.2-14-30-1.4-42c12.6-11.9,33.7-12.5,47-1.2"/>
|
|
156
|
+
<path class="st4" d="M27.4,244.7c-11.2-9.4-11.8-25.2-1.2-35.2s28.3-10.5,39.5-1"/>
|
|
157
|
+
<path class="st4" d="M31.1,241.3c-9.1-7.6-9.5-20.4-1-28.5s22.9-8.5,32-0.8"/>
|
|
158
|
+
<path class="st4" d="M34.9,237.6c-6.9-5.8-7.2-15.4-0.7-21.5s17.3-6.4,24.1-0.6"/>
|
|
159
|
+
<path class="st4" d="M38.2,234.5c-4.9-4.1-5.1-11-0.5-15.4s12.3-4.6,17.2-0.5"/>
|
|
160
|
+
</g>
|
|
161
|
+
<g>
|
|
162
|
+
<ellipse class="st5" cx="47" cy="226.8" rx="33.3" ry="29.7"/>
|
|
163
|
+
<ellipse class="st5" cx="47" cy="226.8" rx="28" ry="24.9"/>
|
|
164
|
+
<ellipse class="st5" cx="47" cy="226.8" rx="22.6" ry="20.2"/>
|
|
165
|
+
<ellipse class="st5" cx="47" cy="226.8" rx="17.1" ry="15.2"/>
|
|
166
|
+
<ellipse class="st5" cx="47" cy="226.8" rx="12.2" ry="10.9"/>
|
|
167
|
+
</g>
|
|
168
|
+
</g>
|
|
169
|
+
<radialGradient id="SVGID_3_" cx="2463.1321" cy="2289.1338" r="35.78" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)" gradientUnits="userSpaceOnUse">
|
|
170
|
+
<stop offset="0.6894" style="stop-color:#EF4B62;stop-opacity:0"/>
|
|
171
|
+
<stop offset="1" style="stop-color:#EF4B62;stop-opacity:0.39"/>
|
|
172
|
+
</radialGradient>
|
|
173
|
+
<path class="st6" d="M82.6,226.8c0,17.5-15.9,31.7-35.6,31.7c-19.6,0-35.6-14.2-35.6-31.7s15.9-31.7,35.6-31.7
|
|
174
|
+
S82.6,209.3,82.6,226.8z"/>
|
|
175
|
+
<radialGradient id="SVGID_4_" cx="2456.2322" cy="2275.9443" r="6.8187" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)" gradientUnits="userSpaceOnUse">
|
|
176
|
+
<stop offset="0.9153" style="stop-color:#84142A"/>
|
|
177
|
+
<stop offset="1" style="stop-color:#C42232"/>
|
|
178
|
+
</radialGradient>
|
|
179
|
+
<ellipse class="st7" cx="47" cy="226.8" rx="7.7" ry="6.8"/>
|
|
180
|
+
<ellipse class="st8" cx="47" cy="226.8" rx="4.2" ry="3.8"/>
|
|
181
|
+
<path class="st9" d="M44,227.6c0-1.8,1.6-3.3,3.7-3.3c1,0,1.8,0.3,2.5,0.9c-0.6-1-1.8-1.7-3.2-1.7c-2,0-3.7,1.5-3.7,3.3
|
|
182
|
+
c0,0.9,0.5,1.8,1.2,2.4C44.2,228.7,44,228.2,44,227.6L44,227.6z"/>
|
|
183
|
+
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="281.266" y1="527.2592" x2="135.1369" y2="561.7092" gradientTransform="matrix(-4.294800e-04 1 1.1213 4.814800e-04 -423.4265 -155.3364)">
|
|
184
|
+
<stop offset="0" style="stop-color:#E8C842"/>
|
|
185
|
+
<stop offset="0.2602" style="stop-color:#E8E371"/>
|
|
186
|
+
<stop offset="0.7194" style="stop-color:#D8A61A"/>
|
|
187
|
+
<stop offset="1" style="stop-color:#E8C842"/>
|
|
188
|
+
</linearGradient>
|
|
189
|
+
<path class="st10" d="M199,11.1c-1.1,2.8-2.3,5.6-3.4,8.4c0-0.2-0.6-6.2-0.6-5.8c-1.7,5.1-3.4,8.9-5,14.6c1-5.3,1-9.6,1.2-14.8
|
|
190
|
+
c-0.5,0-3.3-0.2-3.4-0.2c-0.4,3-0.7,5.9-1.1,8.9c-0.5-3.7-0.6-8.3-2.7-7.4c-0.7-0.1-0.1-2.8-0.2-3.4c-1.2,0-2.3-0.1-3.5-0.1
|
|
191
|
+
c0.2,3.7-0.5,7.4-0.4,11.2c-0.1-0.7-1.2-6.8-1.3-7.7c-0.1,0-0.1,0-0.1-0.1c-0.1,0.5-4-0.4-3.3,0.5c0.4,2.9,0.9,5.9,1.3,8.8
|
|
192
|
+
c-0.8-2-2.1-5.2-2.7-8.3c-1.1,0.2-2.3,0.4-3.4,0.6c0.6,2.7,1.2,5.3,1.8,8c-1.5-2.3-3-4.6-4.4-7l-3,1.5c1.5,3,1.4,3.5,2.5,6.9
|
|
193
|
+
c-3.7-4-2-0.6-1.4,1.5c-1.2-2.3-2.5-4.7-3.7-7c-1,0.4-2.1,0.9-3.1,1.3c1.4,2.6,2.8,5.2,4.2,7.8c-3-3.6-7.1-8.3-10.1-9.8
|
|
194
|
+
c1.5,3.1,3.8,7.6,5.9,11.2l-6.3-5.1c-0.8,0.8-1.6,1.5-2.3,2.3c2.6,2.2,2.1,2.3,3.8,4.8c-6.2-1-1.6,3.3,2.5,6.9
|
|
195
|
+
c-4-3.5-11.8-5.8-16.6-8.7h-0.1c-2.8,5,2,6.7,7.2,11c-2.3-1.5-4.6-3.1-6.9-4.6c1.4,0.9,6.5,6.7,8.1,8c-9.8-3.9-3.7,0.2-4.3,2.9
|
|
196
|
+
c-5.3-1.2-8.4-1.6-13-2.1c-1.4,5.4,3.6,5.3,9.5,8c-6.2-2.6-13.5-3.8-19.9-5.6c-0.3,1-0.7,2-1,2.9c7.3,2.1,16.6,4.6,22.4,7.2
|
|
197
|
+
c-3.9,0-8,1.2-11.4,1.5c4.3-0.5,6,0.8,9.6,1.3c-2.9,0.2-5.7,0.4-8.6,0.6c-0.4,3.4,0.7,2.1,2.6,3.2c-1.8,0.4-3.1-0.4-3,1.4
|
|
198
|
+
c3.3-0.8,4.8,0,6.8,0.1c-6.7,1.1-13.2,2.7-19.8,4.1c7.7-1.3,15.7-1.3,23.9,0.4c-7.6,4.4-15.5,9.3-26.4,13.7c7.1-3,17.2-6.6,23.6-5.5
|
|
199
|
+
c-5,3.5-4.8,3.7-10.2,7.6c2-0.6,10.7-3.4,12.7-4.1c-5.4,2.3-10.7,4.9-16.1,7.3c4.6-0.9,13.5-4.4,19.1-7.6c-2.6,1.4-7.4,5.4-11,7.5
|
|
200
|
+
c0,0,0,0.1-0.1,0.1c0.6,0.9,1.2,1.7,1.8,2.6c-0.3-0.6,3.5-1.3,3.2-1.3c-0.6,0.9-4.4,1.5-2.3,2.8c4.6-1.4,6.9-2.9,12.1-6
|
|
201
|
+
c-3.9,4.3-9.2,10.7-10.7,14.4c5.5-6.3,5.6-4.2,11.6-7.9c-1.1,3.9,1.5,4.1-4,9.5c0.9,0.7,1.8,1.3,2.6,2c2.2-2.4,4.5-4.7,6.7-7.1
|
|
202
|
+
c-2.1,2.7-5.1,6.2-5.4,8.2c3.3-4,6.7-8,9.9-12c-4.2,6.9-9.9,13.9-15.1,20.8c1,0.6,1.9,1.2,2.9,1.7c3.5-4.6,8.9-9.6,11.2-14.7
|
|
203
|
+
c-2,5-1.5,11.7-2.2,17c1.1,0.1,2.3,0.2,3.4,0.4c-0.1-7.4,1.8-14.8,5.7-20.4c-1.4,6-3,13,2.4,8.2c-0.5,2.6-1.5,5.3-2.5,7.8
|
|
204
|
+
c1.1,0.3,2.2,0.6,3.3,0.9c1.1-5.1,4.8-9.5,6-12.4c2.2,2.7,2.2-3.5,2.6-6.2c-0.6,6.1-0.8,12.7-0.3,17.4c2.6-7.5,3.3-11.3,4.2-19.4
|
|
205
|
+
c-0.4,6.2-0.9,14.9,0.1,19.4c0.3-6,0.9-12.1,1-18.1c-0.6,6,0.5,12.5,0.8,18.6c2.9-3.9,3.2-0.3,4.1-7.7c2.5-1.7,7.4,3.4,9.6,10.9
|
|
206
|
+
c0.4-3.2,0.1-2.9,0.4-6.7c2.7,2.1,2.4,4.6,7.4,1.9c-2.8-7.8-5.7-14.2-8.2-22.1c1.6,5.8,5,11.6,7.4,17.1c1.1-0.4,2.2-0.7,3.2-1.1
|
|
207
|
+
c-1.8-2.7-0.2-2.5,0.4-4.2c1.7,3.7,5.1,7.5,7.2,11.1c0,0,0.1,0,0.1,0.1c5-4.2,2.6-10-2.7-16.5c2.1,1.9,3.8,3.5,5,6.3
|
|
208
|
+
c-0.1-0.8-1.2-4.3-2.2-6c1.3,1.5,2.7,3,4,4.5c0.9-0.6,1.8-1.3,2.7-1.9c-1.3-1.3-2.7-3.2-2.2-4.5c3.8,3.2,8.2,5.7,11.9,9
|
|
209
|
+
c0.8-0.8,1.6-1.5,2.3-2.3c-2.8-3.8-6.1-9.5-10.6-12.7c2.4,1.5,4.8,2.6,6.8,4.7c0.2-0.4,2.3-2.3,2.3-2.3c-2.6,0.9-2.6-4.3-2.3-3.8
|
|
210
|
+
c2.7,1.3,6.5,2.5,8.1,2.7c-3.6-1.2-5.8-3.5-8.4-4.9c6.9,1.8,9,1.7,13.6,1.7c-2.8-1.3-8.4-7.2-9.2-7.7c1.7,0.7,3.3,1.3,5,2
|
|
211
|
+
c0.5-0.9,0.9-1.9,1.4-2.8c-3-1.2-5.9-2.3-8.9-3.5c6,1.4,11.7,1.8,11.8,1.7c0.9-1,3.2,0.8,2.6-2.8c-7.4-0.2-13.3-2.5-19.9-4.4
|
|
212
|
+
c6.8-1,14.1-1,23,2.9c-0.2-0.1,1.5-3.5,0.9-2.9c-4-0.9-8.7-2.4-11.9-3.8c2.7,0.4,5.3,0.8,8,1.1c-3.1-1.6-10-2.5-15.3-3.2
|
|
213
|
+
c8.7,1.2,16,0.5,16.8-5.4c-5.7,1.2-11.2-0.7-16.5,0.1c5.7-0.2,9.4-0.7,15.8-0.8c-7-1.8-18.6-0.8-28.1-1.1
|
|
214
|
+
c10.3-0.5,20.7-0.4,31.1-0.5v-3.1c-4.1,0.3-8.4,0.2-12.5,0.1c0.8-0.2,6.7-1.3,7.8-1.4c-0.2-0.2-0.3-3.2-0.6-3
|
|
215
|
+
c-4.3,0.7-7.9,1.2-12,1.4c4.7-1.1,8-1.4,12.7-2.8c-0.3-1-0.6-2-0.8-3c-4.7,1.1-9.4,2-14.1,3c5.7-1.7,11.2-2.4,11.3-7.6
|
|
216
|
+
c-4,1.5-7.6,0.8-9.7,0.9c2.4-1.1,4.7-2.2,7.1-3.3c-0.5-0.9-1.1-1.8-1.6-2.7c-8.5,1.8-12.9,3.3-21.5,7.5c7-4,16.9-8.7,21.7-12.5
|
|
217
|
+
c-3.9,2-7.9,4.1-11.9,6c0.7-0.7,5.5-5.1,7.9-6.3c-0.7-0.8-1.4-1.7-2.1-2.5c-5.3,3.3-11.6,6.5-16.6,11c4-2.8,7.5-6.9,10.8-10
|
|
218
|
+
c-0.2-0.1-2.7-2.4-2.5-2.1c-5.8,1.9-10,4.8-15.4,10.4c5.4-5.9,11.5-11.5,17.1-17.1c-0.3-0.1-2.8-2.2-2.6-2
|
|
219
|
+
c-3.7,3.6-7.6,7.2-11.2,10.9c3.6-4.4,7.2-9.3,8.1-12.9c-3.7,4-7.4,8-11,12.2c1.3-2.7,3-5,4.1-7.4c-1-0.5-2.1-0.9-3.1-1.4
|
|
220
|
+
c-1.8,3.4-4,6.3-6.4,9.4c2.5-5.2,3.5-8.3,6.2-13.7c-1.7,1.1-3.7,4.6-5.5,7.3c1.7-3.2,3.3-6.4,5-9.6c-1-0.4-2.1-0.9-3.1-1.3
|
|
221
|
+
c-2,3.9-4.1,7.8-6.1,11.8C202.5,18.6,203.3,13.4,199,11.1L199,11.1z M214.5,71l-0.4-0.3c3.8-0.1,7.4,0.9,10.7,2.7
|
|
222
|
+
C221.2,73.3,217.7,72.5,214.5,71z M186,26.2l0.1-1.6C186.3,25.1,186.3,25.6,186,26.2z M185,24.2l-0.2-6.1
|
|
223
|
+
C185.5,20.4,185.5,22,185,24.2z M154.3,54.8l0.9,0.6c-3.6-0.2-7-1.1-10.1-2.8L154.3,54.8L154.3,54.8z M218.2,91.8l-3.5-4
|
|
224
|
+
c1.5,1.4,3.2,3.3,4.6,4.9L218.2,91.8z M214.5,80.2l-4.1-3.2c1.4,0.9,3,2.2,4.3,3.3C214.7,80.3,214.5,80.2,214.5,80.2z M184.5,17.2
|
|
225
|
+
c-0.4,0-0.4-0.2-0.2-0.8L184.5,17.2z M155.9,22.6c2.7,3.5,5.8,6.7,8.8,10c-0.5,0-0.7,0.2-0.6,0.4C159.6,31.8,159.1,27.1,155.9,22.6z
|
|
226
|
+
M147.4,60.1c1.5-0.1,3,0,4.5,0.3C150.3,60.9,148.8,60.8,147.4,60.1z M140.3,67.2c-0.4,1-2,1.1-3.7,0.8L140.3,67.2z M151.8,85.9
|
|
227
|
+
l4.1-2.7c-4,4.3-7.1,7.4-11.5,11.5L151.8,85.9z M162.3,98.5c1,1.2,0.6,2.8-0.6,4.6L162.3,98.5z M221,81.3l3.2,1.9
|
|
228
|
+
C222.9,82.9,221.8,82.3,221,81.3z M227,84c2.9-2.6,6.5-0.6,9.6,2.9L227,84z M212.9,25.3c-2.8,4-5.9,7.9-9.3,11.6
|
|
229
|
+
C206,32.7,209.2,28.7,212.9,25.3z M201.5,27.1l-4.1,7.7C198.5,32.1,199.9,29.5,201.5,27.1z"/>
|
|
230
|
+
<g class="st11">
|
|
231
|
+
<path class="st12" d="M142.8,291.2c-5.5-0.6-14.1-2.5-19.2-4.3l-20.4-7.3c-5.1-1.8-9.3-7.3-9.3-12.2L94,43.2
|
|
232
|
+
c0-4.9,4.2-10.4,9.2-12.3l20.1-7.4c5.1-1.9,13.7-3.9,19.1-4.4l43.9-4.6c5.5-0.6,14.4-0.6,19.8,0l43.7,4.4
|
|
233
|
+
c5.5,0.5,14.1,2.5,19.2,4.4l20.5,7.5c5.1,1.9,9.2,7.4,9.2,12.3l0.1,224.3c0,4.9-4.2,10.4-9.3,12.2l-20.6,7.3
|
|
234
|
+
c-5.1,1.8-13.7,3.8-19.2,4.3l-43.7,4.7c-5.5,0.6-14.4,0.6-19.8,0L142.8,291.2L142.8,291.2z"/>
|
|
235
|
+
</g>
|
|
236
|
+
<polygon class="st0" points="216.7,41.4 194.4,19.7 194.4,19.7 193.8,19.1 193.8,5.9 185.9,5.9 185.9,19.3 184.9,20.3 184.9,20.3
|
|
237
|
+
163.2,41.3 169.1,46.1 185.9,29.8 185.9,41.2 193.8,41.2 193.8,29.5 210.9,46.1 "/>
|
|
238
|
+
<polygon class="st13" points="224.9,40.7 219.8,44.9 194.1,19.9 199.3,15.7 "/>
|
|
239
|
+
<path class="st14" d="M200,21.3l0.4,0.7l0.5,0.6l0.5,0.6c0.2,0.2,0.4,0.3,0.6,0.5l-0.3,0.1c0-0.2,0-0.3,0.1-0.5
|
|
240
|
+
c0-0.1,0.2-0.2,0.3-0.2h0.3c0.4,0.1,0.6,0.3,0.9,0.5c0.2,0.2,0.4,0.5,0.6,0.7c0,0.1,0.1,0.2,0.1,0.3s0,0.3-0.2,0.4s-0.3,0.1-0.4,0
|
|
241
|
+
c-0.1,0-0.2,0-0.3-0.1l0.3-0.3c0.9,0.9,1.8,1.9,2.8,2.9c0.5,0.5,1,0.9,1.4,1.4l1.4,1.4c-0.5-0.4-1.1-0.8-1.6-1.3
|
|
242
|
+
c-0.5-0.4-1-0.9-1.5-1.3l-2.8-2.8l-0.8-0.8l1,0.5c0.1,0,0.3,0.1,0.3,0.1v-0.1c-0.1-0.2-0.3-0.5-0.5-0.6c-0.2-0.2-0.4-0.4-0.7-0.5
|
|
243
|
+
h-0.2c-0.1,0.1-0.1,0.2-0.1,0.3v0.3l-0.2-0.2c-0.2-0.2-0.5-0.4-0.7-0.5c-0.2-0.2-0.3-0.4-0.5-0.6l-0.4-0.7L200,21.3L200,21.3z"/>
|
|
244
|
+
<polygon class="st13" points="192.6,15.7 197.8,19.9 172.2,44.9 167,40.6 "/>
|
|
245
|
+
<path class="st14" d="M183.1,27.6l1-1c0.6-0.6,1.5-1.4,2.4-2.2s1.8-1.5,2.5-2s1.2-0.9,1.2-0.9s-0.4,0.4-1,1s-1.5,1.4-2.4,2.2
|
|
246
|
+
s-1.8,1.5-2.5,2C183.6,27.3,183.1,27.6,183.1,27.6z"/>
|
|
247
|
+
<path class="st14" d="M191.8,22.8c0,0-0.2,0.1-0.7,0.3c-0.2,0.1-0.4,0.3-0.7,0.4s-0.5,0.4-0.8,0.6s-0.6,0.5-0.9,0.8l-0.9,0.9
|
|
248
|
+
c-0.3,0.3-0.6,0.7-1,1c-0.3,0.4-0.6,0.7-1,1.1l-0.5,0.5c-0.2,0.2-0.4,0.3-0.6,0.5c-0.4,0.4-0.8,0.6-1.2,0.9
|
|
249
|
+
c-0.8,0.5-1.7,0.9-2.3,1.3c-0.7,0.4-1.3,0.7-1.6,0.9c-0.4,0.2-0.6,0.4-0.6,0.4s0.2-0.2,0.5-0.5s0.8-0.7,1.5-1.1
|
|
250
|
+
c0.6-0.4,1.4-0.9,2.2-1.4c0.4-0.3,0.8-0.6,1.1-0.9c0.2-0.2,0.4-0.3,0.5-0.5l0.5-0.6c0.3-0.3,0.6-0.8,1-1.1c0.3-0.4,0.7-0.7,1-1
|
|
251
|
+
c0.4-0.3,0.7-0.6,1.1-0.9s0.7-0.5,1-0.7s0.6-0.4,0.9-0.5s0.6-0.3,0.8-0.3C191.5,22.8,191.8,22.8,191.8,22.8z"/>
|
|
252
|
+
<polygon class="st15" points="172.2,46.1 196,23 219.7,46.1 226.3,40.7 211.4,26.2 201,24.2 201,16.1 199.4,14.4 196,17.2
|
|
253
|
+
192.6,14.4 190.2,16.8 190.2,24.2 178.9,27.8 165.6,40.7 "/>
|
|
254
|
+
<rect x="192.3" y="1.3" class="st13" width="7" height="38.3"/>
|
|
255
|
+
<line class="st16" x1="194.1" y1="1.3" x2="194.1" y2="10.8"/>
|
|
256
|
+
<polygon class="st14" points="194.6,1.3 194.1,10.8 193.6,1.3 "/>
|
|
257
|
+
<line class="st16" x1="196.8" y1="1.3" x2="196.8" y2="5.5"/>
|
|
258
|
+
<polygon class="st14" points="197.3,1.3 196.8,5.5 196.3,1.3 "/>
|
|
259
|
+
<path class="st14" d="M195.8,35.9c0,0-0.1-1.4-0.1-3.5c0-1,0-2.3-0.1-3.6v-8.2c0-1.3,0.1-2.5,0.1-3.6c0.1-2.1,0.1-3.5,0.1-3.5
|
|
260
|
+
s0.1,1.4,0.1,3.5c0,1,0,2.3,0.1,3.6v8.2c0,1.3-0.1,2.5-0.1,3.6C195.9,34.5,195.8,35.9,195.8,35.9z"/>
|
|
261
|
+
<g class="st17">
|
|
262
|
+
<path class="st18" d="M194.6,29.5c0,0,0-0.9-0.1-2.2c0-1.3,0-3.1-0.1-4.9c0-1.8,0-3.6,0.1-4.9c0-1.3,0.1-2.2,0.1-2.2s0,0.9,0.1,2.2
|
|
263
|
+
c0,1.3,0,3.1,0.1,4.9c0,1.8,0,3.6-0.1,4.9C194.6,28.7,194.6,29.5,194.6,29.5z"/>
|
|
264
|
+
</g>
|
|
265
|
+
<g class="st17">
|
|
266
|
+
<path class="st18" d="M197.4,13.7c0,0-0.1-0.5-0.1-1.4c-0.1-0.8-0.1-1.9-0.1-3s0-2.2,0.1-3s0.1-1.4,0.1-1.4s0.1,0.5,0.1,1.4
|
|
267
|
+
s0.1,1.9,0.1,3s-0.1,2.2-0.1,3S197.4,13.7,197.4,13.7z"/>
|
|
268
|
+
</g>
|
|
269
|
+
<polygon class="st19" points="121,23.9 126.7,19.9 157.8,55.3 152,59.3 "/>
|
|
270
|
+
<polygon class="st19" points="251.4,16.9 258.7,17.9 251,62.4 243.7,61.4 "/>
|
|
271
|
+
<polygon class="st15" points="126.9,32.1 151.8,60.6 159.2,55.5 135.1,27.9 "/>
|
|
272
|
+
<polygon class="st15" points="248.7,26.9 242.6,62.1 251.8,63.4 257.8,29 "/>
|
|
273
|
+
<g>
|
|
274
|
+
|
|
275
|
+
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2087.0671" x2="2671.4321" y2="2087.0671" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
276
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
277
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
278
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
279
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
280
|
+
</linearGradient>
|
|
281
|
+
<path class="st20" d="M257.3,46.4c-20.4-1.9-40.7-3.7-61.1-5.6V29.6c20.4,2,40.7,4.1,61.1,6.1V46.4z"/>
|
|
282
|
+
|
|
283
|
+
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2098.0671" x2="2671.4321" y2="2098.0671" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
284
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
285
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
286
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
287
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
288
|
+
</linearGradient>
|
|
289
|
+
<path class="st21" d="M257.3,57.1c-20.3-1.7-40.7-3.4-61-5V40.9c20.4,1.9,40.7,3.7,61.1,5.6C257.3,50.7,257.3,52.8,257.3,57.1z"/>
|
|
290
|
+
|
|
291
|
+
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2108.917" x2="2671.4321" y2="2108.917" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
292
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
293
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
294
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
295
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
296
|
+
</linearGradient>
|
|
297
|
+
<path class="st22" d="M257.3,67.7c-20.3-1.5-40.7-3-61-4.5V52c20.3,1.7,40.7,3.4,61,5V67.7z"/>
|
|
298
|
+
|
|
299
|
+
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2119.8672" x2="2671.4321" y2="2119.8672" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
300
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
301
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
302
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
303
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
304
|
+
</linearGradient>
|
|
305
|
+
<path class="st23" d="M257.2,78.4c-20.3-1.3-40.7-2.7-61-4V63.2c20.3,1.5,40.7,3,61,4.5C257.2,67.7,257.2,78.4,257.2,78.4z"/>
|
|
306
|
+
|
|
307
|
+
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2130.8171" x2="2671.4321" y2="2130.8171" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
308
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
309
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
310
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
311
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
312
|
+
</linearGradient>
|
|
313
|
+
<path class="st24" d="M257.2,89.1c-20.3-1.1-40.7-2.3-61-3.5V74.4c20.3,1.3,40.7,2.7,61,4V89.1z"/>
|
|
314
|
+
|
|
315
|
+
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2141.717" x2="2671.4321" y2="2141.717" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
316
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
317
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
318
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
319
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
320
|
+
</linearGradient>
|
|
321
|
+
<path class="st25" d="M257.2,99.7c-20.3-1-40.6-2-61-2.9V85.6c20.3,1.1,40.7,2.3,61,3.5V99.7z"/>
|
|
322
|
+
|
|
323
|
+
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2262.3171" x2="2671.4321" y2="2262.3171" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
324
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
325
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
326
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
327
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
328
|
+
</linearGradient>
|
|
329
|
+
<path class="st26" d="M256.9,217.1c-20.3,1-40.5,1.9-60.8,2.9v-11.2c20.3-0.8,40.5-1.6,60.8-2.3V217.1z"/>
|
|
330
|
+
|
|
331
|
+
<linearGradient id="SVGID_13_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2273.217" x2="2671.4321" y2="2273.217" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
332
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
333
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
334
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
335
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
336
|
+
</linearGradient>
|
|
337
|
+
<path class="st27" d="M256.9,227.8c-20.2,1.1-40.5,2.3-60.7,3.4V220c20.3-1,40.5-1.9,60.8-2.9C256.9,221.4,256.9,223.5,256.9,227.8
|
|
338
|
+
z"/>
|
|
339
|
+
|
|
340
|
+
<linearGradient id="SVGID_14_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2284.1672" x2="2671.4321" y2="2284.1672" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
341
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
342
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
343
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
344
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
345
|
+
</linearGradient>
|
|
346
|
+
<path class="st28" d="M256.9,238.5c-20.2,1.3-40.5,2.6-60.7,3.9v-11.2c20.2-1.1,40.5-2.3,60.7-3.4V238.5z"/>
|
|
347
|
+
|
|
348
|
+
<linearGradient id="SVGID_15_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2295.217" x2="2671.4321" y2="2295.217" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
349
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
350
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
351
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
352
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
353
|
+
</linearGradient>
|
|
354
|
+
<path class="st29" d="M256.9,249.2c-20.2,1.5-40.5,3-60.7,4.5v-11.2c20.2-1.3,40.5-2.6,60.7-3.9V249.2L256.9,249.2z"/>
|
|
355
|
+
|
|
356
|
+
<linearGradient id="SVGID_16_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2306.0171" x2="2671.4321" y2="2306.0171" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
357
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
358
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
359
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
360
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
361
|
+
</linearGradient>
|
|
362
|
+
<path class="st30" d="M256.8,259.8c-20.2,1.7-40.5,3.3-60.7,5v-11.2c20.2-1.5,40.5-3,60.7-4.5V259.8z"/>
|
|
363
|
+
|
|
364
|
+
<linearGradient id="SVGID_17_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2316.967" x2="2671.4321" y2="2316.967" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
365
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
366
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
367
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
368
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
369
|
+
</linearGradient>
|
|
370
|
+
<path class="st31" d="M256.8,270.5c-20.2,1.8-40.4,3.7-60.7,5.5v-11.2c20.2-1.7,40.5-3.3,60.7-5V270.5z"/>
|
|
371
|
+
|
|
372
|
+
<linearGradient id="SVGID_18_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2327.9172" x2="2671.4321" y2="2327.9172" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
373
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
374
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
375
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
376
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
377
|
+
</linearGradient>
|
|
378
|
+
<path class="st32" d="M256.8,281.2l-60.6,6V276c20.2-1.8,40.4-3.7,60.7-5.5C256.8,274.8,256.8,276.9,256.8,281.2z"/>
|
|
379
|
+
|
|
380
|
+
<linearGradient id="SVGID_19_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2152.667" x2="2671.4321" y2="2152.667" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
381
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
382
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
383
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
384
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
385
|
+
</linearGradient>
|
|
386
|
+
<path class="st33" d="M257.2,110.4l-60.9-2.4V96.8c20.3,1,40.6,2,61,2.9C257.2,104,257.2,106.1,257.2,110.4z"/>
|
|
387
|
+
|
|
388
|
+
<linearGradient id="SVGID_20_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2163.6172" x2="2671.4321" y2="2163.6172" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
389
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
390
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
391
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
392
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
393
|
+
</linearGradient>
|
|
394
|
+
<path class="st34" d="M257.1,121.1c-20.3-0.6-40.6-1.2-60.9-1.9V108l60.9,2.4C257.2,114.7,257.1,116.8,257.1,121.1z"/>
|
|
395
|
+
|
|
396
|
+
<linearGradient id="SVGID_21_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2174.6172" x2="2671.4321" y2="2174.6172" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
397
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
398
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
399
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
400
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
401
|
+
</linearGradient>
|
|
402
|
+
<path class="st35" d="M257.1,131.8c-20.3-0.4-40.6-0.9-60.9-1.3v-11.2c20.3,0.6,40.6,1.2,60.9,1.9V131.8z"/>
|
|
403
|
+
|
|
404
|
+
<linearGradient id="SVGID_22_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2185.467" x2="2671.4321" y2="2185.467" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
405
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
406
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
407
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
408
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
409
|
+
</linearGradient>
|
|
410
|
+
<path class="st36" d="M257.1,142.4c-20.3-0.3-40.6-0.5-60.9-0.8v-11.2c20.3,0.4,40.6,0.9,60.9,1.3V142.4z"/>
|
|
411
|
+
|
|
412
|
+
<linearGradient id="SVGID_23_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2196.417" x2="2671.4321" y2="2196.417" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
413
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
414
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
415
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
416
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
417
|
+
</linearGradient>
|
|
418
|
+
<path class="st37" d="M257.1,153.1l-60.9-0.3v-11.2c20.3,0.3,40.6,0.5,60.9,0.8V153.1z"/>
|
|
419
|
+
|
|
420
|
+
<linearGradient id="SVGID_24_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2207.4802" x2="2671.4321" y2="2207.4802" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
421
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
422
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
423
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
424
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
425
|
+
</linearGradient>
|
|
426
|
+
<path class="st38" d="M257,163.8c-20.3,0.1-40.6,0.2-60.8,0.2v-11.2l60.9,0.3C257.1,157.4,257.1,159.5,257,163.8z"/>
|
|
427
|
+
|
|
428
|
+
<linearGradient id="SVGID_25_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2218.5671" x2="2671.4321" y2="2218.5671" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
429
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
430
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
431
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
432
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
433
|
+
</linearGradient>
|
|
434
|
+
<path class="st39" d="M257,174.4c-20.3,0.3-40.6,0.5-60.8,0.8V164c20.3-0.1,40.6-0.2,60.8-0.2V174.4L257,174.4z"/>
|
|
435
|
+
|
|
436
|
+
<linearGradient id="SVGID_26_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2229.467" x2="2671.4321" y2="2229.467" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
437
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
438
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
439
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
440
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
441
|
+
</linearGradient>
|
|
442
|
+
<path class="st40" d="M257,185.1c-20.3,0.4-40.5,0.9-60.8,1.3v-11.2c20.3-0.3,40.6-0.5,60.8-0.8V185.1z"/>
|
|
443
|
+
|
|
444
|
+
<linearGradient id="SVGID_27_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2240.4172" x2="2671.4321" y2="2240.4172" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
445
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
446
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
447
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
448
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
449
|
+
</linearGradient>
|
|
450
|
+
<path class="st41" d="M257,195.8c-20.3,0.6-40.5,1.2-60.8,1.8v-11.2c20.3-0.4,40.5-0.9,60.8-1.3V195.8z"/>
|
|
451
|
+
|
|
452
|
+
<linearGradient id="SVGID_28_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2251.3672" x2="2671.4321" y2="2251.3672" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
453
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
454
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
455
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
456
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
457
|
+
</linearGradient>
|
|
458
|
+
<path class="st42" d="M256.9,206.5c-20.3,0.8-40.5,1.6-60.8,2.3v-11.2c20.3-0.6,40.5-1.2,60.8-1.8C257,200.1,257,202.2,256.9,206.5
|
|
459
|
+
z"/>
|
|
460
|
+
</g>
|
|
461
|
+
<g>
|
|
462
|
+
|
|
463
|
+
<linearGradient id="SVGID_29_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2087.0432" x2="2671.4321" y2="2087.0432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
464
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
465
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
466
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
467
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
468
|
+
</linearGradient>
|
|
469
|
+
<path class="st43" d="M135.2,46.3c20.4-1.8,40.7-3.7,61.1-5.5V29.6c-20.4,2-40.7,4-61.1,6L135.2,46.3L135.2,46.3z"/>
|
|
470
|
+
|
|
471
|
+
<linearGradient id="SVGID_30_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2097.9934" x2="2671.4321" y2="2097.9934" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
472
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
473
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
474
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
475
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
476
|
+
</linearGradient>
|
|
477
|
+
<path class="st44" d="M135.2,57c20.3-1.7,40.7-3.3,61-5V40.8c-20.4,1.8-40.7,3.7-61.1,5.5C135.2,50.6,135.2,52.7,135.2,57L135.2,57
|
|
478
|
+
z"/>
|
|
479
|
+
|
|
480
|
+
<linearGradient id="SVGID_31_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2108.9434" x2="2671.4321" y2="2108.9434" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
481
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
482
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
483
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
484
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
485
|
+
</linearGradient>
|
|
486
|
+
<path class="st45" d="M135.2,67.7c20.3-1.5,40.7-3,61-4.5V52c-20.3,1.7-40.7,3.3-61,5V67.7z"/>
|
|
487
|
+
|
|
488
|
+
<linearGradient id="SVGID_32_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2119.8433" x2="2671.4321" y2="2119.8433" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
489
|
+
<stop offset="0" style="stop-color:#7E1126"/>
|
|
490
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
491
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
492
|
+
<stop offset="1" style="stop-color:#7E1126"/>
|
|
493
|
+
</linearGradient>
|
|
494
|
+
<path class="st46" d="M135.3,78.3c20.3-1.3,40.7-2.6,61-3.9V63.2c-20.3,1.5-40.7,3-61,4.5C135.2,71.9,135.2,74.1,135.3,78.3z"/>
|
|
495
|
+
|
|
496
|
+
<linearGradient id="SVGID_33_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2130.7932" x2="2671.4321" y2="2130.7932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
497
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
498
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
499
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
500
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
501
|
+
</linearGradient>
|
|
502
|
+
<path class="st47" d="M135.3,89c20.3-1.1,40.7-2.3,61-3.4V74.4c-20.3,1.3-40.7,2.6-61,3.9V89z"/>
|
|
503
|
+
|
|
504
|
+
<linearGradient id="SVGID_34_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2141.7432" x2="2671.4321" y2="2141.7432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
505
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
506
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
507
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
508
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
509
|
+
</linearGradient>
|
|
510
|
+
<path class="st48" d="M135.3,99.7c20.3-1,40.6-1.9,61-2.9V85.6c-20.3,1.1-40.7,2.3-61,3.4V99.7z"/>
|
|
511
|
+
|
|
512
|
+
<linearGradient id="SVGID_35_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2262.2932" x2="2671.4321" y2="2262.2932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
513
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
514
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
515
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
516
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
517
|
+
</linearGradient>
|
|
518
|
+
<path class="st49" d="M135.4,217.1c20.3,1,40.5,2,60.8,2.9v-11.2c-20.3-0.8-40.5-1.6-60.8-2.4V217.1z"/>
|
|
519
|
+
|
|
520
|
+
<linearGradient id="SVGID_36_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2273.3433" x2="2671.4321" y2="2273.3433" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
521
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
522
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
523
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
524
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
525
|
+
</linearGradient>
|
|
526
|
+
<path class="st50" d="M135.5,227.8c20.2,1.2,40.5,2.3,60.7,3.5v-11.2c-20.3-1-40.5-2-60.8-2.9C135.4,221.4,135.4,223.5,135.5,227.8
|
|
527
|
+
L135.5,227.8z"/>
|
|
528
|
+
|
|
529
|
+
<linearGradient id="SVGID_37_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2284.1431" x2="2671.4321" y2="2284.1431" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
530
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
531
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
532
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
533
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
534
|
+
</linearGradient>
|
|
535
|
+
<path class="st51" d="M135.5,238.4c20.2,1.3,40.5,2.7,60.7,4v-11.2c-20.2-1.2-40.5-2.3-60.7-3.5V238.4z"/>
|
|
536
|
+
|
|
537
|
+
<linearGradient id="SVGID_38_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2295.0933" x2="2671.4321" y2="2295.0933" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
538
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
539
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
540
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
541
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
542
|
+
</linearGradient>
|
|
543
|
+
<path class="st52" d="M135.5,249.1c20.2,1.5,40.5,3,60.7,4.5v-11.2c-20.2-1.3-40.5-2.7-60.7-4V249.1z"/>
|
|
544
|
+
|
|
545
|
+
<linearGradient id="SVGID_39_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2306.0432" x2="2671.4321" y2="2306.0432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
546
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
547
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
548
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
549
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
550
|
+
</linearGradient>
|
|
551
|
+
<path class="st53" d="M135.5,259.8c20.2,1.7,40.4,3.4,60.7,5v-11.2c-20.2-1.5-40.5-3-60.7-4.5V259.8z"/>
|
|
552
|
+
|
|
553
|
+
<linearGradient id="SVGID_40_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2316.9932" x2="2671.4321" y2="2316.9932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
554
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
555
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
556
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
557
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
558
|
+
</linearGradient>
|
|
559
|
+
<path class="st54" d="M135.5,270.4c20.2,1.9,40.4,3.7,60.7,5.6v-11.2c-20.2-1.7-40.4-3.4-60.7-5V270.4z"/>
|
|
560
|
+
|
|
561
|
+
<linearGradient id="SVGID_41_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2327.8933" x2="2671.4321" y2="2327.8933" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
562
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
563
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
564
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
565
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
566
|
+
</linearGradient>
|
|
567
|
+
<path class="st55" d="M135.5,281.1c20.2,2,40.4,4.1,60.6,6.1V276c-20.2-1.9-40.4-3.7-60.7-5.6C135.5,274.7,135.5,276.8,135.5,281.1
|
|
568
|
+
L135.5,281.1z"/>
|
|
569
|
+
|
|
570
|
+
<linearGradient id="SVGID_42_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2152.7432" x2="2671.4321" y2="2152.7432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
571
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
572
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
573
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
574
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
575
|
+
</linearGradient>
|
|
576
|
+
<path class="st56" d="M135.3,110.4c20.3-0.8,40.6-1.6,60.9-2.3V96.9c-20.3,1-40.6,1.9-61,2.9C135.3,104,135.3,106.1,135.3,110.4
|
|
577
|
+
L135.3,110.4z"/>
|
|
578
|
+
|
|
579
|
+
<linearGradient id="SVGID_43_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2163.5933" x2="2671.4321" y2="2163.5933" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
580
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
581
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
582
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
583
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
584
|
+
</linearGradient>
|
|
585
|
+
<path class="st57" d="M135.3,121c20.3-0.6,40.6-1.2,60.9-1.8V108c-20.3,0.8-40.6,1.6-60.9,2.3L135.3,121L135.3,121z"/>
|
|
586
|
+
|
|
587
|
+
<linearGradient id="SVGID_44_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2174.5432" x2="2671.4321" y2="2174.5432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
588
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
589
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
590
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
591
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
592
|
+
</linearGradient>
|
|
593
|
+
<path class="st58" d="M135.3,131.7c20.3-0.4,40.6-0.9,60.9-1.3v-11.2c-20.3,0.6-40.6,1.2-60.9,1.8L135.3,131.7L135.3,131.7z"/>
|
|
594
|
+
|
|
595
|
+
<linearGradient id="SVGID_45_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2185.4932" x2="2671.4321" y2="2185.4932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
596
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
597
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
598
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
599
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
600
|
+
</linearGradient>
|
|
601
|
+
<path class="st59" d="M135.3,142.4c20.3-0.3,40.6-0.5,60.9-0.8v-11.2c-20.3,0.4-40.6,0.9-60.9,1.3L135.3,142.4L135.3,142.4z"/>
|
|
602
|
+
|
|
603
|
+
<linearGradient id="SVGID_46_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2196.4932" x2="2671.4321" y2="2196.4932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
604
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
605
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
606
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
607
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
608
|
+
</linearGradient>
|
|
609
|
+
<path class="st60" d="M135.4,153.1c20.3-0.1,40.6-0.2,60.9-0.2v-11.2c-20.3,0.3-40.6,0.5-60.9,0.8
|
|
610
|
+
C135.3,146.6,135.3,148.8,135.4,153.1L135.4,153.1z"/>
|
|
611
|
+
|
|
612
|
+
<linearGradient id="SVGID_47_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2207.4802" x2="2671.4321" y2="2207.4802" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
613
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
614
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
615
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
616
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
617
|
+
</linearGradient>
|
|
618
|
+
<path class="st61" d="M135.4,163.7c20.3,0.1,40.6,0.2,60.8,0.3v-11.2c-20.3,0.1-40.6,0.2-60.9,0.2
|
|
619
|
+
C135.4,157.3,135.4,159.5,135.4,163.7z"/>
|
|
620
|
+
|
|
621
|
+
<linearGradient id="SVGID_48_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2218.5432" x2="2671.4321" y2="2218.5432" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
622
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
623
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
624
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
625
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
626
|
+
</linearGradient>
|
|
627
|
+
<path class="st62" d="M135.4,174.4c20.3,0.3,40.6,0.5,60.8,0.8V164c-20.3-0.1-40.6-0.2-60.8-0.3V174.4z"/>
|
|
628
|
+
|
|
629
|
+
<linearGradient id="SVGID_49_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2229.4932" x2="2671.4321" y2="2229.4932" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
630
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
631
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
632
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
633
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
634
|
+
</linearGradient>
|
|
635
|
+
<path class="st63" d="M135.4,185.1c20.3,0.4,40.5,0.9,60.8,1.3v-11.2c-20.3-0.3-40.6-0.5-60.8-0.8V185.1z"/>
|
|
636
|
+
|
|
637
|
+
<linearGradient id="SVGID_50_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2240.4431" x2="2671.4321" y2="2240.4431" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
638
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
639
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
640
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
641
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
642
|
+
</linearGradient>
|
|
643
|
+
<path class="st64" d="M135.4,195.7c20.3,0.6,40.5,1.2,60.8,1.9v-11.2c-20.3-0.4-40.5-0.9-60.8-1.3V195.7z"/>
|
|
644
|
+
|
|
645
|
+
<linearGradient id="SVGID_51_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2251.3433" x2="2671.4321" y2="2251.3433" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
646
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
647
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
648
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
649
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
650
|
+
</linearGradient>
|
|
651
|
+
<path class="st65" d="M135.4,206.4c20.3,0.8,40.5,1.6,60.8,2.4v-11.2c-20.3-0.6-40.5-1.2-60.8-1.9V206.4z"/>
|
|
652
|
+
</g>
|
|
653
|
+
<g>
|
|
654
|
+
|
|
655
|
+
<linearGradient id="SVGID_52_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2096.146" x2="2671.4321" y2="2096.146" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
656
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
657
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
658
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
659
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
660
|
+
</linearGradient>
|
|
661
|
+
<path class="st66" d="M294.4,58.3c-12.3-3.9-24.7-7.8-37-11.7V35.9c12.3,4.3,24.7,8.5,37,12.8C294.4,48.7,294.4,58.3,294.4,58.3z"
|
|
662
|
+
/>
|
|
663
|
+
|
|
664
|
+
<linearGradient id="SVGID_53_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2106.196" x2="2671.4321" y2="2106.196" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
665
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
666
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
667
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
668
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
669
|
+
</linearGradient>
|
|
670
|
+
<path class="st67" d="M294.4,67.8c-12.4-3.5-24.7-7.1-37.1-10.6V46.5c12.4,3.9,24.7,7.8,37,11.7C294.4,62.1,294.4,64,294.4,67.8z"
|
|
671
|
+
/>
|
|
672
|
+
|
|
673
|
+
<linearGradient id="SVGID_54_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2116.2461" x2="2671.4321" y2="2116.2461" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
674
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
675
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
676
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
677
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
678
|
+
</linearGradient>
|
|
679
|
+
<path class="st68" d="M294.4,77.3c-12.4-3.2-24.7-6.3-37.1-9.5V57.1c12.4,3.5,24.7,7.1,37.1,10.6V77.3z"/>
|
|
680
|
+
|
|
681
|
+
<linearGradient id="SVGID_55_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2126.396" x2="2671.4321" y2="2126.396" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
682
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
683
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
684
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
685
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
686
|
+
</linearGradient>
|
|
687
|
+
<path class="st69" d="M294.4,86.9c-12.4-2.8-24.7-5.6-37.1-8.4V67.8c12.4,3.2,24.7,6.3,37.1,9.5V86.9z"/>
|
|
688
|
+
|
|
689
|
+
<linearGradient id="SVGID_56_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2136.446" x2="2671.4321" y2="2136.446" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
690
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
691
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
692
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
693
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
694
|
+
</linearGradient>
|
|
695
|
+
<path class="st70" d="M294.4,96.4c-12.4-2.4-24.8-4.8-37.1-7.3V78.4c12.4,2.8,24.7,5.6,37.1,8.4V96.4z"/>
|
|
696
|
+
|
|
697
|
+
<linearGradient id="SVGID_57_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2146.646" x2="2671.4321" y2="2146.646" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
698
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
699
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
700
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
701
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
702
|
+
</linearGradient>
|
|
703
|
+
<path class="st71" d="M294.4,106c-12.4-2-24.8-4.1-37.1-6.1V89.2c12.4,2.4,24.8,4.8,37.1,7.3C294.4,96.5,294.4,106,294.4,106z"/>
|
|
704
|
+
|
|
705
|
+
<linearGradient id="SVGID_58_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2258.196" x2="2671.4321" y2="2258.196" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
706
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
707
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
708
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
709
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
710
|
+
</linearGradient>
|
|
711
|
+
<path class="st72" d="M294.3,210.9c-12.5,2-24.9,4.1-37.4,6.1v-10.7c12.4-1.7,24.9-3.3,37.3-5C294.3,205.2,294.3,207.1,294.3,210.9
|
|
712
|
+
L294.3,210.9z"/>
|
|
713
|
+
|
|
714
|
+
<linearGradient id="SVGID_59_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2268.3459" x2="2671.4321" y2="2268.3459" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
715
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
716
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
717
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
718
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
719
|
+
</linearGradient>
|
|
720
|
+
<path class="st73" d="M294.3,220.5c-12.5,2.4-24.9,4.8-37.4,7.2V217c12.5-2,24.9-4.1,37.4-6.1V220.5z"/>
|
|
721
|
+
|
|
722
|
+
<linearGradient id="SVGID_60_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2278.396" x2="2671.4321" y2="2278.396" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
723
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
724
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
725
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
726
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
727
|
+
</linearGradient>
|
|
728
|
+
<path class="st74" d="M294.3,230c-12.5,2.8-24.9,5.6-37.4,8.3v-10.7c12.5-2.4,24.9-4.8,37.4-7.2V230L294.3,230z"/>
|
|
729
|
+
|
|
730
|
+
<linearGradient id="SVGID_61_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2288.5461" x2="2671.4321" y2="2288.5461" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
731
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
732
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
733
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
734
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
735
|
+
</linearGradient>
|
|
736
|
+
<path class="st75" d="M294.3,239.6c-12.5,3.1-24.9,6.3-37.4,9.4v-10.7c12.5-2.8,24.9-5.6,37.4-8.3V239.6z"/>
|
|
737
|
+
|
|
738
|
+
<linearGradient id="SVGID_62_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2298.696" x2="2671.4321" y2="2298.696" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
739
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
740
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
741
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
742
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
743
|
+
</linearGradient>
|
|
744
|
+
<path class="st76" d="M294.3,249.1c-12.5,3.5-25,7-37.4,10.6V249c12.5-3.1,24.9-6.3,37.4-9.4V249.1L294.3,249.1z"/>
|
|
745
|
+
|
|
746
|
+
<linearGradient id="SVGID_63_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2308.7961" x2="2671.4321" y2="2308.7961" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
747
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
748
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
749
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
750
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
751
|
+
</linearGradient>
|
|
752
|
+
<path class="st77" d="M294.3,258.7l-37.5,11.7v-10.7c12.5-3.5,25-7,37.4-10.6C294.3,252.9,294.3,254.8,294.3,258.7z"/>
|
|
753
|
+
|
|
754
|
+
<linearGradient id="SVGID_64_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2318.8459" x2="2671.4321" y2="2318.8459" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
755
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
756
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
757
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
758
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
759
|
+
</linearGradient>
|
|
760
|
+
<path class="st78" d="M294.3,268.2c-12.5,4.3-25,8.5-37.5,12.8v-10.7l37.5-11.7V268.2L294.3,268.2z"/>
|
|
761
|
+
|
|
762
|
+
<linearGradient id="SVGID_65_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2156.696" x2="2671.4321" y2="2156.696" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
763
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
764
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
765
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
766
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
767
|
+
</linearGradient>
|
|
768
|
+
<path class="st79" d="M294.4,115.5c-12.4-1.7-24.8-3.4-37.2-5V99.8c12.4,2,24.8,4.1,37.1,6.1C294.4,109.8,294.4,111.7,294.4,115.5z
|
|
769
|
+
"/>
|
|
770
|
+
|
|
771
|
+
<linearGradient id="SVGID_66_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2166.8459" x2="2671.4321" y2="2166.8459" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
772
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
773
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
774
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
775
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
776
|
+
</linearGradient>
|
|
777
|
+
<path class="st80" d="M294.4,125.1l-37.2-3.9v-10.7c12.4,1.7,24.8,3.3,37.2,5V125.1z"/>
|
|
778
|
+
|
|
779
|
+
<linearGradient id="SVGID_67_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2176.896" x2="2671.4321" y2="2176.896" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
780
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
781
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
782
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
783
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
784
|
+
</linearGradient>
|
|
785
|
+
<path class="st81" d="M294.4,134.6c-12.4-0.9-24.8-1.9-37.2-2.8v-10.7l37.2,3.9V134.6z"/>
|
|
786
|
+
|
|
787
|
+
<linearGradient id="SVGID_68_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2186.946" x2="2671.4321" y2="2186.946" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
788
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
789
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
790
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
791
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
792
|
+
</linearGradient>
|
|
793
|
+
<path class="st82" d="M294.4,144.1c-12.4-0.6-24.8-1.1-37.2-1.7v-10.7c12.4,0.9,24.8,1.9,37.2,2.8V144.1L294.4,144.1z"/>
|
|
794
|
+
|
|
795
|
+
<linearGradient id="SVGID_69_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2197.0959" x2="2671.4321" y2="2197.0959" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
796
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
797
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
798
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
799
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
800
|
+
</linearGradient>
|
|
801
|
+
<path class="st83" d="M294.4,153.7l-37.2-0.6v-10.7c12.4,0.6,24.8,1.1,37.2,1.7V153.7z"/>
|
|
802
|
+
|
|
803
|
+
<linearGradient id="SVGID_70_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2207.4041" x2="2671.4321" y2="2207.4041" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
804
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
805
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
806
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
807
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
808
|
+
</linearGradient>
|
|
809
|
+
<path class="st84" d="M294.4,163.2c-12.4,0.2-24.8,0.4-37.3,0.5V153l37.2,0.6C294.4,157.5,294.4,159.4,294.4,163.2L294.4,163.2z"/>
|
|
810
|
+
|
|
811
|
+
<linearGradient id="SVGID_71_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2217.946" x2="2671.4321" y2="2217.946" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
812
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
813
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
814
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
815
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
816
|
+
</linearGradient>
|
|
817
|
+
<path class="st85" d="M294.4,172.8c-12.4,0.5-24.9,1.1-37.3,1.7v-10.7c12.4-0.2,24.8-0.4,37.3-0.5V172.8z"/>
|
|
818
|
+
|
|
819
|
+
<linearGradient id="SVGID_72_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2227.946" x2="2671.4321" y2="2227.946" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
820
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
821
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
822
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
823
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
824
|
+
</linearGradient>
|
|
825
|
+
<path class="st86" d="M294.3,182.3c-12.4,0.9-24.9,1.8-37.3,2.8v-10.7c12.4-0.6,24.9-1.1,37.3-1.7
|
|
826
|
+
C294.4,176.6,294.4,178.5,294.3,182.3L294.3,182.3z"/>
|
|
827
|
+
|
|
828
|
+
<linearGradient id="SVGID_73_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2238.0959" x2="2671.4321" y2="2238.0959" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
829
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
830
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
831
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
832
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
833
|
+
</linearGradient>
|
|
834
|
+
<path class="st87" d="M294.3,191.9c-12.4,1.3-24.9,2.6-37.3,3.9v-10.7c12.4-0.9,24.9-1.8,37.3-2.8V191.9z"/>
|
|
835
|
+
|
|
836
|
+
<linearGradient id="SVGID_74_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2248.146" x2="2671.4321" y2="2248.146" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
837
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
838
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
839
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
840
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
841
|
+
</linearGradient>
|
|
842
|
+
<path class="st88" d="M294.3,201.4c-12.4,1.7-24.9,3.3-37.3,5v-10.7c12.4-1.3,24.9-2.6,37.3-3.9V201.4L294.3,201.4z"/>
|
|
843
|
+
</g>
|
|
844
|
+
<g>
|
|
845
|
+
|
|
846
|
+
<linearGradient id="SVGID_75_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2096.1145" x2="2671.4321" y2="2096.1145" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
847
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
848
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
849
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
850
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
851
|
+
</linearGradient>
|
|
852
|
+
<path class="st89" d="M97.9,58.2c12.4-3.9,24.7-7.8,37.1-11.7V35.8c-12.3,4.3-24.7,8.5-37,12.8C98,52.4,97.9,54.4,97.9,58.2z"/>
|
|
853
|
+
|
|
854
|
+
<linearGradient id="SVGID_76_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2106.1646" x2="2671.4321" y2="2106.1646" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
855
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
856
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
857
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
858
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
859
|
+
</linearGradient>
|
|
860
|
+
<path class="st90" d="M97.9,67.7c12.4-3.5,24.7-7,37.1-10.6V46.4c-12.4,3.9-24.7,7.8-37.1,11.7V67.7z"/>
|
|
861
|
+
|
|
862
|
+
<linearGradient id="SVGID_77_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2116.3645" x2="2671.4321" y2="2116.3645" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
863
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
864
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
865
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
866
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
867
|
+
</linearGradient>
|
|
868
|
+
<path class="st91" d="M97.9,77.3c12.4-3.1,24.7-6.3,37.1-9.4V57.2c-12.4,3.5-24.7,7-37.1,10.6V77.3z"/>
|
|
869
|
+
|
|
870
|
+
<linearGradient id="SVGID_78_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2126.4146" x2="2671.4321" y2="2126.4146" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
871
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
872
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
873
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
874
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
875
|
+
</linearGradient>
|
|
876
|
+
<path class="st92" d="M97.9,86.8c12.4-2.8,24.7-5.6,37.1-8.3V67.8c-12.4,3.1-24.7,6.3-37.1,9.4V86.8z"/>
|
|
877
|
+
|
|
878
|
+
<linearGradient id="SVGID_79_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2136.4644" x2="2671.4321" y2="2136.4644" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
879
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
880
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
881
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
882
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
883
|
+
</linearGradient>
|
|
884
|
+
<path class="st93" d="M97.9,96.3c12.4-2.4,24.8-4.8,37.1-7.2V78.4c-12.4,2.8-24.7,5.6-37.1,8.3C97.9,86.7,97.9,96.3,97.9,96.3z"/>
|
|
885
|
+
|
|
886
|
+
<linearGradient id="SVGID_80_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2146.6145" x2="2671.4321" y2="2146.6145" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
887
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
888
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
889
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
890
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
891
|
+
</linearGradient>
|
|
892
|
+
<path class="st94" d="M97.9,105.9c12.4-2,24.8-4.1,37.2-6.1V89.1c-12.4,2.4-24.8,4.8-37.1,7.2C97.9,100.2,97.9,102.1,97.9,105.9z"
|
|
893
|
+
/>
|
|
894
|
+
|
|
895
|
+
<linearGradient id="SVGID_81_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2258.2644" x2="2671.4321" y2="2258.2644" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
896
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
897
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
898
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
899
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
900
|
+
</linearGradient>
|
|
901
|
+
<path class="st95" d="M97.9,210.9c12.5,2,24.9,4.1,37.4,6.1v-10.7c-12.4-1.7-24.9-3.4-37.3-5C97.9,205.1,97.9,207,97.9,210.9
|
|
902
|
+
L97.9,210.9z"/>
|
|
903
|
+
|
|
904
|
+
<linearGradient id="SVGID_82_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2268.4143" x2="2671.4321" y2="2268.4143" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
905
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
906
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
907
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
908
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
909
|
+
</linearGradient>
|
|
910
|
+
<path class="st96" d="M97.9,220.4c12.5,2.4,24.9,4.8,37.4,7.3V217c-12.5-2-24.9-4.1-37.4-6.1V220.4z"/>
|
|
911
|
+
|
|
912
|
+
<linearGradient id="SVGID_83_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2278.4143" x2="2671.4321" y2="2278.4143" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
913
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
914
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
915
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
916
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
917
|
+
</linearGradient>
|
|
918
|
+
<path class="st97" d="M97.9,229.9c12.5,2.8,24.9,5.6,37.4,8.4v-10.7c-12.5-2.4-24.9-4.8-37.4-7.3V229.9z"/>
|
|
919
|
+
|
|
920
|
+
<linearGradient id="SVGID_84_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2288.5645" x2="2671.4321" y2="2288.5645" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
921
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
922
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
923
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
924
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
925
|
+
</linearGradient>
|
|
926
|
+
<path class="st98" d="M97.9,239.5c12.5,3.2,24.9,6.3,37.4,9.5v-10.7c-12.5-2.8-24.9-5.6-37.4-8.4V239.5L97.9,239.5z"/>
|
|
927
|
+
|
|
928
|
+
<linearGradient id="SVGID_85_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2298.6143" x2="2671.4321" y2="2298.6143" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
929
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
930
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
931
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
932
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
933
|
+
</linearGradient>
|
|
934
|
+
<path class="st99" d="M97.9,249c12.5,3.5,25,7.1,37.4,10.6v-10.7c-12.5-3.2-24.9-6.3-37.4-9.5V249L97.9,249z"/>
|
|
935
|
+
|
|
936
|
+
<linearGradient id="SVGID_86_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2308.7644" x2="2671.4321" y2="2308.7644" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
937
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
938
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
939
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
940
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
941
|
+
</linearGradient>
|
|
942
|
+
<path class="st100" d="M97.9,258.6l37.5,11.7v-10.7c-12.5-3.5-25-7.1-37.4-10.6C97.9,252.8,97.9,254.8,97.9,258.6z"/>
|
|
943
|
+
|
|
944
|
+
<linearGradient id="SVGID_87_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2318.8142" x2="2671.4321" y2="2318.8142" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
945
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
946
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
947
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
948
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
949
|
+
</linearGradient>
|
|
950
|
+
<path class="st101" d="M97.9,268.1c12.5,4.3,25,8.5,37.5,12.8v-10.7l-37.5-11.7L97.9,268.1L97.9,268.1z"/>
|
|
951
|
+
|
|
952
|
+
<linearGradient id="SVGID_88_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2156.6643" x2="2671.4321" y2="2156.6643" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
953
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
954
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
955
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
956
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
957
|
+
</linearGradient>
|
|
958
|
+
<path class="st102" d="M97.9,115.4c12.4-1.7,24.8-3.3,37.2-5V99.7c-12.4,2-24.8,4.1-37.2,6.1C97.9,105.8,97.9,115.4,97.9,115.4z"/>
|
|
959
|
+
|
|
960
|
+
<linearGradient id="SVGID_89_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2166.8145" x2="2671.4321" y2="2166.8145" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
961
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
962
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
963
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
964
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
965
|
+
</linearGradient>
|
|
966
|
+
<path class="st103" d="M97.9,125l37.2-3.9v-10.7c-12.4,1.7-24.8,3.3-37.2,5C97.9,115.4,97.9,125,97.9,125z"/>
|
|
967
|
+
|
|
968
|
+
<linearGradient id="SVGID_90_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2176.8645" x2="2671.4321" y2="2176.8645" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
969
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
970
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
971
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
972
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
973
|
+
</linearGradient>
|
|
974
|
+
<path class="st104" d="M97.9,134.5c12.4-0.9,24.8-1.8,37.2-2.8V121l-37.2,3.9C97.9,124.9,97.9,134.5,97.9,134.5z"/>
|
|
975
|
+
|
|
976
|
+
<linearGradient id="SVGID_91_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2187.0144" x2="2671.4321" y2="2187.0144" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
977
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
978
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
979
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
980
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
981
|
+
</linearGradient>
|
|
982
|
+
<path class="st105" d="M97.9,144.1c12.4-0.6,24.8-1.1,37.2-1.7v-10.7c-12.4,0.9-24.8,1.8-37.2,2.8L97.9,144.1L97.9,144.1z"/>
|
|
983
|
+
|
|
984
|
+
<linearGradient id="SVGID_92_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2197.1145" x2="2671.4321" y2="2197.1145" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
985
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
986
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
987
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
988
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
989
|
+
</linearGradient>
|
|
990
|
+
<path class="st106" d="M97.9,153.6c12.4-0.2,24.8-0.4,37.2-0.5v-10.7c-12.4,0.6-24.8,1.1-37.2,1.7
|
|
991
|
+
C97.9,144.1,97.9,153.6,97.9,153.6z"/>
|
|
992
|
+
|
|
993
|
+
<linearGradient id="SVGID_93_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2207.4563" x2="2671.4321" y2="2207.4563" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
994
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
995
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
996
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
997
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
998
|
+
</linearGradient>
|
|
999
|
+
<path class="st107" d="M97.9,163.1c12.4,0.2,24.8,0.4,37.3,0.6V153c-12.4,0.2-24.8,0.4-37.2,0.5C97.9,157.4,97.9,159.3,97.9,163.1
|
|
1000
|
+
L97.9,163.1z"/>
|
|
1001
|
+
|
|
1002
|
+
<linearGradient id="SVGID_94_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2217.8643" x2="2671.4321" y2="2217.8643" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
1003
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
1004
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
1005
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
1006
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
1007
|
+
</linearGradient>
|
|
1008
|
+
<path class="st108" d="M97.9,172.7c12.4,0.6,24.9,1.1,37.3,1.7v-10.7c-12.4-0.2-24.8-0.4-37.3-0.6
|
|
1009
|
+
C97.9,163.1,97.9,172.7,97.9,172.7z"/>
|
|
1010
|
+
|
|
1011
|
+
<linearGradient id="SVGID_95_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2227.9143" x2="2671.4321" y2="2227.9143" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
1012
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
1013
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
1014
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
1015
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
1016
|
+
</linearGradient>
|
|
1017
|
+
<path class="st109" d="M97.9,182.2c12.4,0.9,24.9,1.9,37.3,2.8v-10.7c-12.4-0.6-24.9-1.1-37.3-1.7L97.9,182.2L97.9,182.2z"/>
|
|
1018
|
+
|
|
1019
|
+
<linearGradient id="SVGID_96_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2238.0645" x2="2671.4321" y2="2238.0645" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
1020
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
1021
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
1022
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
1023
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
1024
|
+
</linearGradient>
|
|
1025
|
+
<path class="st110" d="M97.9,191.8c12.4,1.3,24.9,2.6,37.3,3.9V185c-12.4-0.9-24.9-1.9-37.3-2.8C97.9,182.2,97.9,191.8,97.9,191.8z
|
|
1026
|
+
"/>
|
|
1027
|
+
|
|
1028
|
+
<linearGradient id="SVGID_97_" gradientUnits="userSpaceOnUse" x1="2502.9321" y1="2248.1143" x2="2671.4321" y2="2248.1143" gradientTransform="matrix(1.1213 4.814800e-04 -4.294800e-04 1 -2706.364 -2050.3269)">
|
|
1029
|
+
<stop offset="0" style="stop-color:#84142A"/>
|
|
1030
|
+
<stop offset="0.2653" style="stop-color:#C42232"/>
|
|
1031
|
+
<stop offset="0.7755" style="stop-color:#C42232"/>
|
|
1032
|
+
<stop offset="1" style="stop-color:#84142A"/>
|
|
1033
|
+
</linearGradient>
|
|
1034
|
+
<path class="st111" d="M97.9,201.3c12.4,1.7,24.9,3.4,37.3,5v-10.7c-12.4-1.3-24.9-2.6-37.3-3.9L97.9,201.3L97.9,201.3z"/>
|
|
1035
|
+
</g>
|
|
1036
|
+
<path class="st112" d="M196.1,287.2l60.6-6c0.2-81.8,0.4-163.9,0.5-245.7c-20.4-2-40.7-3.8-61.1-5.8
|
|
1037
|
+
C196.3,34.1,196.2,201.3,196.1,287.2z"/>
|
|
1038
|
+
<polygon class="st113" points="257.3,281.2 294.9,268.6 294.9,48.4 257.4,35.5 "/>
|
|
1039
|
+
<g class="st114">
|
|
1040
|
+
<path class="st115" d="M258.5,45.8c-0.1-1.4-0.1-2.8-0.2-4.3c-0.1-1.4-0.1-2.8-0.1-4.3v-0.5l0.5,0.2c2.9,0.9,5.8,2,8.8,3
|
|
1041
|
+
c1.5,0.5,2.9,1,4.4,1.5l4.4,1.6l4.4,1.6l4.3,1.6c1.4,0.5,2.9,1.1,4.3,1.6c1.4,0.6,2.9,1.1,4.3,1.7c-1.5-0.4-3-0.9-4.4-1.4
|
|
1042
|
+
c-1.5-0.5-2.9-0.9-4.4-1.4l-4.4-1.5l-4.4-1.5l-4.4-1.5c-1.5-0.5-2.9-1-4.4-1.6c-2.9-1.1-5.8-2.1-8.7-3.2l0.5-0.3
|
|
1043
|
+
c-0.1,1.4-0.1,2.8-0.1,4.3C258.7,42.9,258.6,44.4,258.5,45.8L258.5,45.8z"/>
|
|
1044
|
+
<path class="st115" d="M258.5,56.4c-0.1-1.4-0.1-2.8-0.2-4.3c-0.1-1.4-0.1-2.8-0.1-4.3v-0.4l0.5,0.1c2.9,0.9,5.8,1.8,8.8,2.7
|
|
1045
|
+
c1.5,0.5,2.9,0.9,4.4,1.4l4.4,1.4l4.4,1.4l4.3,1.5c1.4,0.5,2.9,1,4.3,1.5s2.9,1,4.3,1.6c-1.5-0.4-3-0.8-4.4-1.2
|
|
1046
|
+
c-1.5-0.4-2.9-0.9-4.4-1.3l-4.4-1.3l-4.4-1.4l-4.4-1.4c-1.5-0.5-2.9-0.9-4.4-1.4c-2.9-1-5.8-1.9-8.7-2.9l0.5-0.3
|
|
1047
|
+
c0,1.4-0.1,2.8-0.1,4.3C258.6,53.6,258.6,55,258.5,56.4L258.5,56.4z"/>
|
|
1048
|
+
<path class="st115" d="M258.4,66.9c-0.1-1.4-0.1-2.8-0.2-4.2s-0.1-2.8-0.1-4.2v-0.4l0.5,0.1c2.9,0.8,5.8,1.6,8.8,2.4
|
|
1049
|
+
c1.5,0.4,2.9,0.8,4.4,1.2l4.4,1.3l4.4,1.3l4.3,1.3c1.4,0.5,2.9,0.9,4.3,1.4s2.9,0.9,4.3,1.4c-1.5-0.3-3-0.7-4.4-1.1
|
|
1050
|
+
c-1.5-0.4-2.9-0.8-4.4-1.1l-4.4-1.2l-4.4-1.2l-4.4-1.2c-1.5-0.4-2.9-0.9-4.4-1.3c-2.9-0.9-5.8-1.7-8.7-2.6l0.5-0.3
|
|
1051
|
+
c-0.1,1.4-0.1,2.8-0.1,4.2C258.6,64.1,258.6,65.5,258.4,66.9L258.4,66.9z"/>
|
|
1052
|
+
<path class="st115" d="M258.4,77.6c-0.1-1.4-0.1-2.8-0.2-4.2s-0.1-2.8-0.1-4.2v-0.4l0.5,0.1c2.9,0.7,5.9,1.4,8.8,2.1
|
|
1053
|
+
c1.5,0.4,2.9,0.7,4.4,1.1l4.4,1.1l4.4,1.1l4.3,1.2c1.4,0.4,2.9,0.8,4.3,1.2s2.9,0.8,4.3,1.3c-1.5-0.3-3-0.6-4.4-1
|
|
1054
|
+
c-1.5-0.3-2.9-0.7-4.4-1l-4.4-1l-4.4-1.1l-4.4-1.1c-1.5-0.4-2.9-0.8-4.4-1.1c-2.9-0.8-5.8-1.5-8.7-2.3l0.5-0.3
|
|
1055
|
+
c-0.1,1.4-0.1,2.8-0.1,4.2C258.6,74.8,258.5,76.2,258.4,77.6L258.4,77.6z"/>
|
|
1056
|
+
<path class="st115" d="M258.4,88.2c-0.1-1.4-0.1-2.8-0.2-4.2s-0.1-2.8-0.1-4.2v-0.4l0.5,0.1c2.9,0.6,5.9,1.2,8.8,1.9
|
|
1057
|
+
c1.5,0.3,2.9,0.6,4.4,1l4.4,1l4.4,1l4.4,1.1c1.4,0.4,2.9,0.7,4.3,1.1s2.9,0.7,4.3,1.1c-1.5-0.3-3-0.5-4.4-0.8
|
|
1058
|
+
c-1.5-0.3-2.9-0.6-4.4-0.9l-4.4-0.9l-4.4-0.9l-4.4-0.9c-1.5-0.3-2.9-0.7-4.4-1c-2.9-0.7-5.8-1.3-8.7-2L259,80
|
|
1059
|
+
c0,1.4-0.1,2.8-0.1,4.2C258.6,85.4,258.5,86.8,258.4,88.2L258.4,88.2z"/>
|
|
1060
|
+
<path class="st115" d="M258.4,98.9c-0.1-1.4-0.1-2.8-0.2-4.2l-0.1-4.2v-0.4l0.5,0.1c2.9,0.5,5.9,1.1,8.8,1.6s5.8,1.1,8.8,1.7
|
|
1061
|
+
l4.4,0.9l4.4,0.9c1.5,0.3,2.9,0.6,4.4,1c1.4,0.3,2.9,0.7,4.3,1c-1.5-0.2-2.9-0.4-4.4-0.7c-1.5-0.2-2.9-0.5-4.4-0.7l-4.4-0.7
|
|
1062
|
+
l-4.4-0.8c-2.9-0.5-5.9-1.1-8.8-1.7s-5.8-1.1-8.7-1.8l0.4-0.3l-0.1,4.2C258.5,96.1,258.5,97.5,258.4,98.9L258.4,98.9z"/>
|
|
1063
|
+
<path class="st115" d="M258.1,215.7c-0.1-1.3-0.1-2.7-0.2-4l-0.1-4v-0.3l0.3-0.1c2.9-0.5,5.9-1,8.8-1.4l8.8-1.4
|
|
1064
|
+
c2.9-0.5,5.9-0.9,8.8-1.3c1.5-0.2,3-0.4,4.4-0.5c1.5-0.2,3-0.3,4.4-0.5c-1.5,0.3-2.9,0.6-4.4,0.8c-1.5,0.3-2.9,0.5-4.4,0.8
|
|
1065
|
+
c-2.9,0.6-5.8,1.1-8.8,1.6c-2.9,0.5-5.9,1-8.8,1.5c-2.9,0.4-5.9,0.8-8.9,1.2l0.3-0.3l-0.1,4C258.3,213.1,258.2,214.4,258.1,215.7
|
|
1066
|
+
L258.1,215.7z"/>
|
|
1067
|
+
<path class="st115" d="M258.1,226.4c-0.1-1.3-0.1-2.7-0.2-4l-0.1-4v-0.3l0.3-0.1c2.9-0.6,5.9-1.1,8.8-1.7c1.5-0.3,2.9-0.6,4.4-0.9
|
|
1068
|
+
l4.4-0.8l4.4-0.8l4.4-0.8c1.5-0.2,3-0.5,4.4-0.7c1.5-0.2,3-0.4,4.5-0.6c-1.5,0.3-2.9,0.6-4.4,1c-1.5,0.3-2.9,0.6-4.4,0.9l-4.4,1
|
|
1069
|
+
l-4.4,0.9c-2.9,0.6-5.9,1.2-8.8,1.8c-3,0.5-5.9,1-8.9,1.5l0.3-0.3l-0.1,4C258.3,223.7,258.2,225.1,258.1,226.4L258.1,226.4z"/>
|
|
1070
|
+
<path class="st115" d="M258.1,237.1c-0.1-1.3-0.1-2.7-0.2-4s-0.1-2.7-0.1-4v-0.2l0.3-0.1c2.9-0.7,5.9-1.3,8.8-1.9
|
|
1071
|
+
c1.5-0.3,2.9-0.7,4.4-1l4.4-1l4.4-1l4.4-0.9c1.5-0.3,3-0.6,4.5-0.8c1.5-0.3,3-0.5,4.5-0.8c-1.5,0.4-2.9,0.7-4.4,1.1s-2.9,0.7-4.4,1
|
|
1072
|
+
l-4.4,1.1l-4.4,1c-2.9,0.7-5.9,1.4-8.8,2c-3,0.6-5.9,1.2-8.9,1.8l0.3-0.3c0,1.3-0.1,2.7-0.1,4C258.2,234.4,258.2,235.7,258.1,237.1
|
|
1073
|
+
L258.1,237.1z"/>
|
|
1074
|
+
<path class="st115" d="M258,247.7c-0.1-1.3-0.1-2.7-0.2-4s-0.1-2.7-0.1-4v-0.2l0.3-0.1c2.9-0.8,5.9-1.5,8.8-2.2
|
|
1075
|
+
c1.5-0.4,2.9-0.8,4.4-1.2l4.4-1.1c2.9-0.8,5.9-1.5,8.8-2.2c1.5-0.3,3-0.7,4.5-1l4.5-0.9c-1.5,0.4-2.9,0.8-4.4,1.2s-2.9,0.8-4.4,1.2
|
|
1076
|
+
l-4.4,1.2l-4.4,1.2l-4.4,1.2c-1.5,0.4-2.9,0.8-4.4,1.1c-3,0.7-5.9,1.4-8.9,2l0.3-0.3c-0.1,1.3-0.1,2.7-0.1,4
|
|
1077
|
+
C258.2,245.1,258.2,246.4,258,247.7L258,247.7z"/>
|
|
1078
|
+
<path class="st115" d="M258,258.1c-0.1-1.3-0.1-2.6-0.2-3.9s-0.1-2.6-0.1-3.9v-0.2l0.3-0.1c1.5-0.4,2.9-0.8,4.4-1.2l4.4-1.3
|
|
1079
|
+
c1.5-0.4,2.9-0.9,4.4-1.3l4.4-1.3l4.4-1.3l4.4-1.2c1.5-0.4,3-0.8,4.5-1.1s3-0.7,4.5-1l-8.8,2.7c-2.9,0.9-5.8,1.8-8.7,2.7l-4.4,1.3
|
|
1080
|
+
c-1.5,0.4-2.9,0.8-4.4,1.3l-4.4,1.2c-1.5,0.4-3,0.8-4.5,1.1l0.3-0.3c0,1.3-0.1,2.6-0.1,3.9C258.2,255.5,258.1,256.8,258,258.1
|
|
1081
|
+
L258,258.1z"/>
|
|
1082
|
+
<path class="st115" d="M258,268.8c-0.1-1.3-0.1-2.6-0.2-3.9s-0.1-2.6-0.1-3.9v-0.2l0.3-0.1c1.5-0.5,2.9-0.9,4.4-1.4l4.4-1.4
|
|
1083
|
+
c1.5-0.5,2.9-1,4.4-1.4l4.4-1.4l4.4-1.4l4.4-1.3c1.5-0.4,3-0.9,4.5-1.3s3-0.8,4.5-1.1l-8.8,2.9l-8.7,3l-4.4,1.5
|
|
1084
|
+
c-1.5,0.5-2.9,0.9-4.4,1.4l-4.4,1.3c-1.5,0.4-3,0.8-4.5,1.2l0.3-0.3c0,1.3-0.1,2.6-0.1,3.9C258.2,266.2,258.1,267.5,258,268.8
|
|
1085
|
+
L258,268.8z"/>
|
|
1086
|
+
<path class="st115" d="M258,279.5c-0.1-1.3-0.1-2.6-0.2-3.9s-0.1-2.6-0.1-3.9v-0.2l0.2-0.1c1.5-0.5,2.9-1,4.4-1.5l4.4-1.5l4.4-1.6
|
|
1087
|
+
l4.4-1.6l4.4-1.6l4.4-1.5c1.5-0.5,3-1,4.5-1.4s3-0.9,4.5-1.3l-8.8,3.2l-8.7,3.3l-4.4,1.6c-1.5,0.5-2.9,1-4.4,1.5l-4.4,1.5
|
|
1088
|
+
c-1.5,0.5-3,0.9-4.5,1.4l0.2-0.3c0,1.3-0.1,2.6-0.1,3.9C258.1,276.9,258.1,278.2,258,279.5L258,279.5z"/>
|
|
1089
|
+
<path class="st115" d="M258.4,109.5c-0.1-1.4-0.1-2.8-0.2-4.2l-0.1-4.2v-0.4l0.5,0.1c2.9,0.4,5.9,0.9,8.8,1.3s5.8,0.9,8.8,1.4
|
|
1090
|
+
l4.4,0.7l4.4,0.8c1.5,0.3,2.9,0.5,4.4,0.8s2.9,0.6,4.3,0.9c-1.5-0.2-2.9-0.4-4.4-0.5c-1.5-0.2-2.9-0.4-4.4-0.6l-4.4-0.6l-4.4-0.7
|
|
1091
|
+
c-2.9-0.4-5.9-0.9-8.8-1.4s-5.8-0.9-8.7-1.5l0.4-0.3l-0.1,4.2C258.5,106.8,258.5,108.1,258.4,109.5L258.4,109.5z"/>
|
|
1092
|
+
<path class="st115" d="M258.3,120.2c-0.1-1.4-0.1-2.8-0.2-4.2l-0.1-4.2v-0.4h0.4c2.9,0.3,5.9,0.7,8.8,1c2.9,0.4,5.8,0.7,8.8,1.1
|
|
1093
|
+
c2.9,0.4,5.8,0.8,8.7,1.3c1.5,0.2,2.9,0.4,4.4,0.7c1.5,0.2,2.9,0.5,4.4,0.7c-1.5-0.1-2.9-0.3-4.4-0.4s-2.9-0.3-4.4-0.4
|
|
1094
|
+
c-2.9-0.3-5.9-0.6-8.8-1s-5.9-0.7-8.8-1.1s-5.8-0.8-8.8-1.2l0.4-0.3l-0.1,4.2C258.6,116,258.3,120.2,258.3,120.2z"/>
|
|
1095
|
+
<path class="st115" d="M258.3,130.8c-0.1-1.4-0.1-2.8-0.2-4.2l-0.1-4.2V122h0.4c2.9,0.2,5.9,0.5,8.8,0.7c2.9,0.3,5.8,0.6,8.8,0.9
|
|
1096
|
+
c2.9,0.3,5.8,0.6,8.8,1c1.5,0.2,2.9,0.3,4.4,0.5s2.9,0.4,4.4,0.6c-1.5-0.1-2.9-0.2-4.4-0.3s-2.9-0.2-4.4-0.3
|
|
1097
|
+
c-2.9-0.2-5.9-0.4-8.8-0.7s-5.9-0.5-8.8-0.8s-5.8-0.6-8.8-0.9l0.4-0.3l-0.1,4.2C258.5,128.1,258.4,129.5,258.3,130.8L258.3,130.8z"
|
|
1098
|
+
/>
|
|
1099
|
+
<path class="st115" d="M258.3,141.4c-0.1-1.4-0.1-2.8-0.2-4.1l-0.1-4.1v-0.3h0.4c2.9,0.1,5.9,0.3,8.8,0.5s5.8,0.4,8.8,0.6
|
|
1100
|
+
c2.9,0.2,5.8,0.4,8.8,0.7c1.5,0.1,2.9,0.2,4.4,0.4c1.5,0.1,2.9,0.3,4.4,0.5c-1.5,0-2.9-0.1-4.4-0.1s-2.9-0.1-4.4-0.2
|
|
1101
|
+
c-2.9-0.1-5.9-0.3-8.8-0.4c-2.9-0.2-5.9-0.3-8.8-0.6c-2.9-0.2-5.9-0.4-8.8-0.7l0.4-0.3l-0.1,4.1C258.4,138.7,258.4,140,258.3,141.4
|
|
1102
|
+
L258.3,141.4z"/>
|
|
1103
|
+
<path class="st115" d="M258.3,152.2c-0.1-1.4-0.1-2.8-0.2-4.2l-0.1-4.2v-0.3h0.4c2.9,0,5.9,0.1,8.8,0.2s5.9,0.2,8.8,0.3
|
|
1104
|
+
s5.9,0.3,8.8,0.4c1.5,0.1,2.9,0.1,4.4,0.3c1.5,0.1,2.9,0.2,4.4,0.3h-8.8c-2.9,0-5.9-0.1-8.8-0.1c-2.9-0.1-5.9-0.2-8.8-0.3
|
|
1105
|
+
s-5.9-0.2-8.8-0.4l0.4-0.3l-0.1,4.2C258.4,149.4,258.4,150.8,258.3,152.2L258.3,152.2z"/>
|
|
1106
|
+
<path class="st115" d="M258.2,162.8c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2v-0.3h0.4c2.9,0,5.9-0.1,8.8,0h8.8c2.9,0,5.9,0,8.8,0.1
|
|
1107
|
+
c1.5,0,2.9,0.1,4.4,0.1c1.5,0.1,2.9,0.1,4.4,0.2c-1.5,0.1-2.9,0.1-4.4,0.1s-2.9,0.1-4.4,0.1c-2.9,0.1-5.9,0.1-8.8,0.2
|
|
1108
|
+
c-2.9,0-5.9,0.1-8.8,0c-2.9,0-5.9-0.1-8.8-0.2l0.4-0.3l-0.1,4.2C258.4,160,258.4,161.4,258.2,162.8L258.2,162.8z"/>
|
|
1109
|
+
<path class="st115" d="M258.2,173.3c-0.1-1.4-0.1-2.7-0.2-4.1l-0.1-4.1v-0.3h0.4c2.9-0.1,5.9-0.2,8.8-0.3l8.8-0.3
|
|
1110
|
+
c2.9-0.1,5.9-0.2,8.8-0.2h4.4c1.5,0,2.9,0,4.4,0.1c-1.5,0.1-2.9,0.2-4.4,0.3s-2.9,0.2-4.4,0.2c-2.9,0.2-5.9,0.3-8.8,0.5
|
|
1111
|
+
c-2.9,0.1-5.9,0.2-8.8,0.3s-5.9,0.1-8.8,0.1l0.4-0.3l-0.1,4.1C258.4,170.6,258.3,171.9,258.2,173.3L258.2,173.3z"/>
|
|
1112
|
+
<path class="st115" d="M258.2,184c-0.1-1.4-0.1-2.7-0.2-4.1l-0.1-4.1v-0.3h0.4c2.9-0.2,5.9-0.4,8.8-0.6l8.8-0.6
|
|
1113
|
+
c2.9-0.2,5.9-0.3,8.8-0.5c1.5,0,2.9-0.1,4.4-0.1s2.9-0.1,4.4-0.1c-1.5,0.2-2.9,0.3-4.4,0.4s-2.9,0.2-4.4,0.4
|
|
1114
|
+
c-2.9,0.3-5.8,0.5-8.8,0.7c-2.9,0.2-5.9,0.4-8.8,0.6s-5.9,0.3-8.8,0.4l0.4-0.3l-0.1,4.1C258.4,181.2,258.3,182.6,258.2,184
|
|
1115
|
+
L258.2,184z"/>
|
|
1116
|
+
<path class="st115" d="M258.2,194.5c-0.1-1.3-0.1-2.7-0.2-4l-0.1-4v-0.3h0.4c2.9-0.3,5.9-0.6,8.8-0.9l8.8-0.9
|
|
1117
|
+
c2.9-0.3,5.9-0.5,8.8-0.8c1.5-0.1,2.9-0.2,4.4-0.3s2.9-0.2,4.4-0.2c-1.5,0.2-2.9,0.4-4.4,0.5c-1.5,0.2-2.9,0.3-4.4,0.5
|
|
1118
|
+
c-2.9,0.4-5.8,0.7-8.8,1c-2.9,0.3-5.9,0.6-8.8,0.9c-2.9,0.2-5.9,0.5-8.8,0.7l0.3-0.3l-0.1,4C258.3,191.8,258.3,193.2,258.2,194.5
|
|
1119
|
+
L258.2,194.5z"/>
|
|
1120
|
+
<path class="st115" d="M258.1,205.3c-0.1-1.4-0.1-2.7-0.2-4.1l-0.1-4.1v-0.3h0.3c2.9-0.4,5.9-0.8,8.8-1.1l8.8-1.2
|
|
1121
|
+
c2.9-0.4,5.9-0.7,8.8-1c1.5-0.1,3-0.3,4.4-0.4c1.5-0.1,3-0.2,4.4-0.3c-1.5,0.2-2.9,0.5-4.4,0.7s-2.9,0.4-4.4,0.6
|
|
1122
|
+
c-2.9,0.5-5.8,0.9-8.8,1.3c-2.9,0.4-5.9,0.8-8.8,1.2c-2.9,0.3-5.9,0.7-8.8,0.9l0.3-0.3l-0.1,4.1
|
|
1123
|
+
C258.3,202.5,258.3,203.9,258.1,205.3L258.1,205.3z"/>
|
|
1124
|
+
</g>
|
|
1125
|
+
<g class="st114">
|
|
1126
|
+
<path class="st115" d="M133.7,45.7c-0.1-1.4-0.2-2.8-0.2-4.3c-0.1-1.4-0.1-2.8-0.1-4.3l0.5,0.3c-2.9,1.1-5.8,2.1-8.7,3.2
|
|
1127
|
+
c-1.5,0.5-2.9,1.1-4.4,1.5l-4.4,1.5l-4.4,1.5l-4.4,1.4c-1.5,0.5-2.9,1-4.4,1.4c-1.5,0.5-3,0.9-4.4,1.4c1.4-0.6,2.9-1.1,4.3-1.7
|
|
1128
|
+
s2.9-1.1,4.3-1.6l4.3-1.6l4.4-1.6l4.4-1.6c1.5-0.5,2.9-1,4.4-1.5c2.9-1,5.8-2,8.8-3l0.5-0.2V37c0,1.4-0.1,2.8-0.1,4.3
|
|
1129
|
+
C133.9,42.9,133.8,44.3,133.7,45.7L133.7,45.7z"/>
|
|
1130
|
+
<path class="st115" d="M133.7,56.4c-0.1-1.4-0.2-2.8-0.2-4.3c-0.1-1.4-0.1-2.8-0.1-4.3l0.5,0.3c-2.9,1-5.8,1.9-8.7,2.9
|
|
1131
|
+
c-1.5,0.5-2.9,1-4.4,1.4l-4.4,1.4l-4.4,1.4l-4.4,1.3c-1.5,0.4-2.9,0.9-4.4,1.3s-2.9,0.8-4.4,1.2c1.4-0.5,2.9-1,4.3-1.6
|
|
1132
|
+
c1.4-0.5,2.9-1,4.3-1.5l4.3-1.5l4.4-1.4l4.4-1.4c1.5-0.5,2.9-0.9,4.4-1.4c2.9-0.9,5.8-1.8,8.8-2.7l0.5-0.1v0.4
|
|
1133
|
+
c0,1.4-0.1,2.8-0.1,4.3C133.9,53.5,133.8,55,133.7,56.4z"/>
|
|
1134
|
+
<path class="st115" d="M133.7,66.9c-0.1-1.4-0.2-2.8-0.2-4.2c-0.1-1.4-0.1-2.8-0.1-4.2l0.5,0.3c-2.9,0.9-5.8,1.7-8.7,2.6
|
|
1135
|
+
c-1.5,0.4-2.9,0.9-4.4,1.3l-4.4,1.2l-4.4,1.2l-4.4,1.2c-1.5,0.4-2.9,0.8-4.4,1.1c-1.5,0.4-2.9,0.7-4.4,1.1c1.4-0.5,2.9-0.9,4.3-1.4
|
|
1136
|
+
s2.9-0.9,4.3-1.4l4.3-1.3l4.4-1.3l4.4-1.3c1.5-0.4,2.9-0.8,4.4-1.2c2.9-0.8,5.8-1.7,8.8-2.4l0.5-0.1v0.4c0,1.4-0.1,2.8-0.1,4.2
|
|
1137
|
+
C133.9,64.1,133.9,65.5,133.7,66.9L133.7,66.9z"/>
|
|
1138
|
+
<path class="st115" d="M133.8,77.5c-0.1-1.4-0.2-2.8-0.2-4.2c-0.1-1.4-0.1-2.8-0.1-4.2l0.5,0.3c-2.9,0.8-5.8,1.5-8.7,2.3
|
|
1139
|
+
c-1.5,0.4-2.9,0.8-4.4,1.1l-4.4,1.1l-4.4,1.1l-4.4,1c-1.5,0.3-2.9,0.7-4.4,1s-2.9,0.7-4.4,1c1.4-0.4,2.9-0.9,4.3-1.3
|
|
1140
|
+
s2.9-0.8,4.3-1.2l4.3-1.2l4.4-1.1l4.4-1.1c1.5-0.4,2.9-0.7,4.4-1.1c2.9-0.7,5.8-1.5,8.8-2.1l0.5-0.1v0.4c0,1.4-0.1,2.8-0.1,4.2
|
|
1141
|
+
C133.9,74.7,133.9,76.1,133.8,77.5L133.8,77.5z"/>
|
|
1142
|
+
<path class="st115" d="M133.8,88.2c-0.1-1.4-0.2-2.8-0.2-4.2c-0.1-1.4-0.1-2.8-0.1-4.2l0.5,0.3c-2.9,0.7-5.8,1.4-8.7,2
|
|
1143
|
+
c-1.5,0.3-2.9,0.7-4.4,1l-4.4,0.9l-4.4,0.9l-4.4,0.9c-1.5,0.3-2.9,0.6-4.4,0.9s-2.9,0.6-4.4,0.8c1.4-0.4,2.9-0.8,4.3-1.1
|
|
1144
|
+
c1.4-0.4,2.9-0.7,4.3-1.1l4.4-1.1l4.4-1l4.4-1c1.5-0.3,2.9-0.6,4.4-1c2.9-0.6,5.8-1.3,8.8-1.9l0.5-0.1v0.4c0,1.4-0.1,2.8-0.1,4.2
|
|
1145
|
+
C133.9,85.4,133.9,86.8,133.8,88.2L133.8,88.2z"/>
|
|
1146
|
+
<path class="st115" d="M133.8,98.8c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.6-5.8,1.2-8.7,1.8s-5.8,1.1-8.8,1.7L112,95
|
|
1147
|
+
l-4.4,0.7c-1.5,0.2-2.9,0.5-4.4,0.7s-2.9,0.5-4.4,0.7c1.4-0.4,2.9-0.7,4.3-1s2.9-0.6,4.4-0.9l4.4-0.9l4.4-0.9
|
|
1148
|
+
c2.9-0.6,5.8-1.2,8.8-1.7c2.9-0.5,5.8-1.1,8.8-1.6l0.5-0.1v0.4l-0.1,4.2C133.9,96,133.9,97.4,133.8,98.8L133.8,98.8z"/>
|
|
1149
|
+
<path class="st115" d="M134,215.7c-0.1-1.3-0.2-2.7-0.2-4l-0.1-4l0.3,0.3c-3-0.4-5.9-0.8-8.9-1.2c-2.9-0.5-5.9-1-8.8-1.5
|
|
1150
|
+
s-5.8-1-8.8-1.6c-1.5-0.3-2.9-0.5-4.4-0.8s-2.9-0.5-4.4-0.8c1.5,0.1,3,0.3,4.4,0.5c1.5,0.2,3,0.4,4.4,0.5c2.9,0.4,5.9,0.9,8.8,1.3
|
|
1151
|
+
l8.8,1.5c2.9,0.4,5.9,0.9,8.8,1.4l0.3,0.1v0.3l-0.1,4C134.1,213,134.1,214.4,134,215.7L134,215.7z"/>
|
|
1152
|
+
<path class="st115" d="M134,226.3c-0.1-1.3-0.2-2.7-0.2-4l-0.1-4l0.3,0.3c-3-0.5-5.9-1-8.9-1.5c-2.9-0.5-5.9-1.2-8.8-1.8l-4.4-0.9
|
|
1153
|
+
l-4.4-1c-1.5-0.3-2.9-0.6-4.4-0.9s-2.9-0.6-4.4-1c1.5,0.2,3,0.4,4.5,0.6s3,0.5,4.4,0.7l4.4,0.8l4.4,0.8l4.4,0.8
|
|
1154
|
+
c1.5,0.3,2.9,0.6,4.4,0.9c2.9,0.6,5.9,1.1,8.8,1.7l0.3,0.1v0.3l-0.1,4C134.1,223.7,134.1,225,134,226.3L134,226.3z"/>
|
|
1155
|
+
<path class="st115" d="M134,237c-0.1-1.3-0.2-2.7-0.2-4c-0.1-1.3-0.1-2.7-0.1-4l0.3,0.3c-3-0.5-5.9-1.2-8.9-1.8
|
|
1156
|
+
c-2.9-0.6-5.9-1.3-8.8-2l-4.4-1l-4.4-1.1c-1.5-0.3-2.9-0.7-4.4-1c-1.5-0.4-2.9-0.7-4.4-1.1c1.5,0.2,3,0.5,4.5,0.8s3,0.5,4.5,0.8
|
|
1157
|
+
l4.4,0.9l4.4,1l4.4,1c1.5,0.3,2.9,0.7,4.4,1c2.9,0.7,5.9,1.2,8.8,1.9l0.3,0.1v0.2c0,1.3-0.1,2.7-0.1,4
|
|
1158
|
+
C134.1,234.3,134.1,235.7,134,237L134,237z"/>
|
|
1159
|
+
<path class="st115" d="M134,247.7c-0.1-1.3-0.2-2.7-0.2-4c-0.1-1.3-0.1-2.7-0.1-4l0.3,0.3c-3-0.6-5.9-1.4-8.9-2
|
|
1160
|
+
c-1.5-0.4-2.9-0.7-4.4-1.1l-4.4-1.2l-4.4-1.2l-4.4-1.2c-1.5-0.4-2.9-0.8-4.4-1.2s-2.9-0.8-4.4-1.2l4.5,0.9c1.5,0.3,3,0.6,4.5,1
|
|
1161
|
+
c3,0.7,5.9,1.4,8.8,2.2l4.4,1.1c1.5,0.4,2.9,0.8,4.4,1.2c2.9,0.7,5.9,1.4,8.8,2.2l0.3,0.1v0.2c0,1.3-0.1,2.7-0.1,4
|
|
1162
|
+
C134.1,245,134.1,246.3,134,247.7L134,247.7z"/>
|
|
1163
|
+
<path class="st115" d="M134,258c-0.1-1.3-0.2-2.6-0.2-3.9c-0.1-1.3-0.1-2.6-0.1-3.9l0.3,0.3c-1.5-0.4-3-0.7-4.5-1.1l-4.4-1.2
|
|
1164
|
+
c-1.5-0.4-2.9-0.8-4.4-1.3l-4.4-1.3c-2.9-0.9-5.8-1.8-8.7-2.7l-8.8-2.7c1.5,0.3,3,0.7,4.5,1c1.5,0.4,3,0.7,4.5,1.1l4.4,1.2l4.4,1.3
|
|
1165
|
+
l4.4,1.3c1.5,0.4,2.9,0.9,4.4,1.3l4.4,1.3c1.5,0.4,2.9,0.8,4.4,1.2l0.3,0.1v0.2c0,1.3-0.1,2.6-0.1,3.9
|
|
1166
|
+
C134.2,255.5,134.1,256.8,134,258L134,258z"/>
|
|
1167
|
+
<path class="st115" d="M134,268.7c-0.1-1.3-0.2-2.6-0.2-3.9c-0.1-1.3-0.1-2.6-0.1-3.9l0.3,0.3c-1.5-0.4-3-0.8-4.5-1.2l-4.4-1.3
|
|
1168
|
+
c-1.5-0.5-3-0.9-4.4-1.4l-4.4-1.5l-8.7-3l-8.8-3c1.5,0.4,3,0.8,4.5,1.1c1.5,0.4,3,0.8,4.5,1.3l4.4,1.3l4.4,1.4l4.4,1.4
|
|
1169
|
+
c1.5,0.5,2.9,1,4.4,1.4l4.4,1.4c1.5,0.4,3,0.9,4.4,1.4l0.3,0.1v0.2c0,1.3-0.1,2.6-0.1,3.9C134.2,266.1,134.1,267.4,134,268.7z"/>
|
|
1170
|
+
<path class="st115" d="M134,279.4c-0.1-1.3-0.2-2.6-0.2-3.9c-0.1-1.3-0.1-2.6-0.1-3.9l0.2,0.3c-1.5-0.4-3-0.9-4.5-1.4L125,269
|
|
1171
|
+
c-1.5-0.5-3-1-4.4-1.6l-4.4-1.6l-8.7-3.3l-8.8-3.2c1.5,0.4,3,0.8,4.5,1.3c1.5,0.4,3,0.9,4.5,1.4l4.4,1.5l4.4,1.6l4.4,1.6l4.4,1.6
|
|
1172
|
+
l4.4,1.5c1.5,0.5,3,1,4.4,1.5l0.3,0.1v0.2c0,1.3-0.1,2.6-0.1,3.9L134,279.4L134,279.4z"/>
|
|
1173
|
+
<path class="st115" d="M133.8,109.5c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.5-5.8,1-8.7,1.5s-5.8,0.9-8.8,1.4L112,105
|
|
1174
|
+
l-4.4,0.6c-1.5,0.2-2.9,0.4-4.4,0.6s-2.9,0.4-4.4,0.5c1.4-0.3,2.9-0.6,4.3-0.9s2.9-0.5,4.4-0.8l4.4-0.8l4.4-0.7
|
|
1175
|
+
c2.9-0.5,5.8-1,8.8-1.4c2.9-0.4,5.8-0.9,8.8-1.3l0.5-0.1v0.4l-0.1,4.2C134,106.7,133.9,108.1,133.8,109.5L133.8,109.5z"/>
|
|
1176
|
+
<path class="st115" d="M133.8,120.1c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.4-5.8,0.8-8.8,1.2c-2.9,0.4-5.8,0.7-8.8,1.1
|
|
1177
|
+
c-2.9,0.4-5.9,0.7-8.8,1c-1.5,0.2-2.9,0.3-4.4,0.4s-2.9,0.3-4.4,0.4c1.4-0.3,2.9-0.5,4.4-0.7s2.9-0.5,4.4-0.7
|
|
1178
|
+
c2.9-0.4,5.8-0.9,8.7-1.3s5.8-0.8,8.8-1.1c2.9-0.4,5.8-0.7,8.8-1h0.4v0.4L134,116C134,117.4,133.9,118.7,133.8,120.1L133.8,120.1z"
|
|
1179
|
+
/>
|
|
1180
|
+
<path class="st115" d="M133.8,130.8c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.3-5.8,0.6-8.8,0.9c-2.9,0.3-5.9,0.6-8.8,0.8
|
|
1181
|
+
c-2.9,0.3-5.9,0.5-8.8,0.7c-1.5,0.1-2.9,0.2-4.4,0.3s-2.9,0.2-4.4,0.3c1.5-0.2,2.9-0.4,4.4-0.6s2.9-0.4,4.4-0.5
|
|
1182
|
+
c2.9-0.4,5.8-0.7,8.8-1c2.9-0.3,5.8-0.6,8.8-0.8c2.9-0.3,5.9-0.5,8.8-0.7h0.4v0.4l-0.1,4.2C134,128,133.9,129.4,133.8,130.8
|
|
1183
|
+
L133.8,130.8z"/>
|
|
1184
|
+
<path class="st115" d="M133.9,141.4c-0.1-1.4-0.2-2.7-0.2-4.1l-0.1-4.1l0.4,0.3c-2.9,0.3-5.8,0.5-8.8,0.7c-2.9,0.2-5.9,0.4-8.8,0.6
|
|
1185
|
+
s-5.9,0.3-8.8,0.4c-1.5,0.1-2.9,0.1-4.4,0.2c-1.5,0-2.9,0.1-4.4,0.1c1.5-0.2,2.9-0.3,4.4-0.4c1.5-0.2,2.9-0.3,4.4-0.4
|
|
1186
|
+
c2.9-0.3,5.8-0.5,8.8-0.7c2.9-0.2,5.8-0.4,8.8-0.6c2.9-0.2,5.9-0.3,8.8-0.5h0.4v0.3l-0.1,4.1C134,138.6,134,140,133.9,141.4
|
|
1187
|
+
L133.9,141.4z"/>
|
|
1188
|
+
<path class="st115" d="M133.9,152.1c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.2-5.9,0.3-8.8,0.4s-5.9,0.2-8.8,0.3
|
|
1189
|
+
s-5.9,0.1-8.8,0.1h-8.8c1.5-0.1,2.9-0.2,4.4-0.3s2.9-0.2,4.4-0.3c2.9-0.2,5.9-0.3,8.8-0.4s5.9-0.2,8.8-0.3c2.9-0.1,5.9-0.2,8.8-0.2
|
|
1190
|
+
h0.4v0.3l-0.1,4.2C134,149.3,134,150.7,133.9,152.1L133.9,152.1z"/>
|
|
1191
|
+
<path class="st115" d="M133.9,162.8c-0.1-1.4-0.2-2.8-0.2-4.2l-0.1-4.2l0.4,0.3c-2.9,0.1-5.9,0.1-8.8,0.2c-2.9,0-5.9,0-8.8-0.1
|
|
1192
|
+
c-2.9,0-5.9-0.1-8.8-0.2c-1.5,0-2.9,0-4.4-0.1c-1.5,0-2.9-0.1-4.4-0.1c1.5-0.1,2.9-0.1,4.4-0.2s2.9-0.1,4.4-0.1
|
|
1193
|
+
c2.9-0.1,5.9-0.1,8.8-0.1h18v0.3l-0.1,4.2C134,160,134,161.4,133.9,162.8L133.9,162.8z"/>
|
|
1194
|
+
<path class="st115" d="M133.9,173.2c-0.1-1.4-0.2-2.7-0.2-4.1l-0.1-4.1l0.4,0.3c-2.9,0-5.9-0.1-8.8-0.1c-2.9-0.1-5.9-0.2-8.8-0.3
|
|
1195
|
+
s-5.9-0.3-8.8-0.5c-1.5-0.1-2.9-0.1-4.4-0.2s-2.9-0.2-4.4-0.3c1.5,0,2.9,0,4.4-0.1h4.4c2.9,0,5.9,0.1,8.8,0.2l8.8,0.3
|
|
1196
|
+
c2.9,0.1,5.9,0.2,8.8,0.3h0.4v0.3l-0.1,4.1C134,170.5,134,171.9,133.9,173.2L133.9,173.2z"/>
|
|
1197
|
+
<path class="st115" d="M133.9,183.9c-0.1-1.4-0.2-2.7-0.2-4.1l-0.1-4.1l0.4,0.3c-2.9-0.1-5.9-0.2-8.8-0.4s-5.9-0.4-8.8-0.6
|
|
1198
|
+
s-5.9-0.5-8.8-0.8c-1.5-0.1-2.9-0.2-4.4-0.4c-1.5-0.1-2.9-0.3-4.4-0.4c1.5,0,2.9,0,4.4,0.1c1.5,0,2.9,0.1,4.4,0.1
|
|
1199
|
+
c2.9,0.1,5.9,0.3,8.8,0.5l8.8,0.6c2.9,0.2,5.9,0.4,8.8,0.6h0.4v0.3l-0.1,4.1C134.1,181.2,134,182.5,133.9,183.9L133.9,183.9z"/>
|
|
1200
|
+
<path class="st115" d="M133.9,194.5c-0.1-1.3-0.2-2.7-0.2-4l-0.1-4l0.3,0.3c-2.9-0.2-5.9-0.4-8.8-0.7s-5.9-0.6-8.8-0.9
|
|
1201
|
+
s-5.8-0.7-8.8-1c-1.5-0.2-2.9-0.3-4.4-0.5s-2.9-0.3-4.4-0.6c1.5,0.1,2.9,0.1,4.4,0.2s2.9,0.2,4.4,0.3c2.9,0.2,5.9,0.5,8.8,0.8
|
|
1202
|
+
l8.8,0.9c2.9,0.3,5.9,0.5,8.8,0.9h0.4v0.3l-0.1,4C134.1,191.8,134,193.1,133.9,194.5L133.9,194.5z"/>
|
|
1203
|
+
<path class="st115" d="M133.9,205.2c-0.1-1.4-0.2-2.7-0.2-4.1l-0.1-4.1l0.3,0.3c-3-0.3-5.9-0.6-8.8-0.9c-2.9-0.4-5.9-0.8-8.8-1.2
|
|
1204
|
+
s-5.8-0.9-8.8-1.3c-1.5-0.2-2.9-0.4-4.4-0.6s-2.9-0.4-4.4-0.7c1.5,0.1,3,0.2,4.4,0.4c1.5,0.1,3,0.3,4.4,0.4c2.9,0.3,5.9,0.7,8.8,1
|
|
1205
|
+
l8.8,1.2c2.9,0.4,5.9,0.7,8.8,1.1h0.3v0.3l-0.1,4.1C134.1,202.5,134,203.9,133.9,205.2z"/>
|
|
1206
|
+
</g>
|
|
1207
|
+
<path class="st115" d="M197.4,39.7c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6v-0.3h0.3c4.9,0.4,9.8,0.9,14.7,1.4l7.4,0.7
|
|
1208
|
+
l7.3,0.8c4.9,0.5,9.8,1,14.7,1.6s9.8,1.1,14.7,1.8l-14.7-1.2c-4.9-0.4-9.8-0.9-14.7-1.4l-7.4-0.7l-7.3-0.8
|
|
1209
|
+
c-4.9-0.5-9.8-1.1-14.7-1.6l0.3-0.3c0,1.5-0.1,3-0.1,4.6C197.5,36.7,197.5,38.2,197.4,39.7z"/>
|
|
1210
|
+
<path class="st115" d="M197.4,50.9c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6v-0.3h0.3l14.7,1.2l7.4,0.6l7.3,0.7
|
|
1211
|
+
c4.9,0.5,9.8,0.9,14.7,1.5c4.9,0.5,9.8,1.1,14.7,1.7c-4.9-0.3-9.8-0.7-14.7-1.1l-14.7-1.2l-7.4-0.7l-7.3-0.7
|
|
1212
|
+
c-4.9-0.5-9.8-1-14.7-1.5l0.3-0.3c0,1.5-0.1,3-0.1,4.6C197.5,47.9,197.5,49.4,197.4,50.9z"/>
|
|
1213
|
+
<path class="st115" d="M197.4,62.1c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6v-0.3h0.3c4.9,0.3,9.8,0.7,14.7,1.1l7.4,0.6
|
|
1214
|
+
l7.3,0.6c4.9,0.4,9.8,0.9,14.7,1.4s9.8,1,14.7,1.5l-14.7-0.9c-4.9-0.3-9.8-0.7-14.7-1.1l-7.4-0.6l-7.3-0.7
|
|
1215
|
+
c-4.9-0.4-9.8-0.9-14.7-1.4l0.3-0.3c0,1.5-0.1,3-0.1,4.6C197.5,59.1,197.5,60.6,197.4,62.1z"/>
|
|
1216
|
+
<path class="st115" d="M197.4,73.2c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5v-0.3h0.3c4.9,0.3,9.8,0.6,14.7,1l7.4,0.5l7.3,0.6
|
|
1217
|
+
l14.7,1.2c4.9,0.4,9.8,0.9,14.7,1.4c-4.9-0.2-9.8-0.5-14.7-0.8s-9.8-0.6-14.7-1l-7.4-0.5l-7.3-0.6l-14.7-1.2l0.3-0.3
|
|
1218
|
+
c0,1.5-0.1,3-0.1,4.5C197.5,70.2,197.5,71.7,197.4,73.2z"/>
|
|
1219
|
+
<path class="st115" d="M197.4,84.4c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6v-0.3h0.3c4.9,0.2,9.8,0.5,14.7,0.8l7.3,0.5
|
|
1220
|
+
l7.3,0.5c4.9,0.3,9.8,0.7,14.6,1.1c4.9,0.4,9.8,0.8,14.6,1.3c-4.9-0.2-9.8-0.4-14.7-0.7c-4.9-0.2-9.8-0.6-14.7-0.9l-7.3-0.5
|
|
1221
|
+
l-7.3-0.5c-4.9-0.3-9.8-0.7-14.6-1.1l0.3-0.3c0,1.5-0.1,3-0.1,4.6C197.5,81.4,197.5,82.9,197.4,84.4z"/>
|
|
1222
|
+
<path class="st115" d="M197.4,95.5c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5v-0.3h0.3c4.9,0.2,9.8,0.4,14.7,0.7l7.3,0.4l7.3,0.4
|
|
1223
|
+
c4.9,0.3,9.8,0.6,14.6,1c4.9,0.3,9.8,0.7,14.6,1.1c-4.9-0.1-9.8-0.3-14.7-0.5s-9.8-0.5-14.7-0.7l-7.3-0.4l-7.3-0.5
|
|
1224
|
+
c-4.9-0.3-9.8-0.6-14.6-1l0.3-0.3c0,1.5-0.1,3-0.1,4.5C197.5,92.5,197.5,94,197.4,95.5z"/>
|
|
1225
|
+
<path class="st115" d="M197.3,218.8c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.3h0.3c4.9-0.3,9.7-0.5,14.6-0.7l7.3-0.3l7.3-0.3
|
|
1226
|
+
c4.9-0.2,9.7-0.4,14.6-0.5s9.7-0.2,14.6-0.3c-4.9,0.3-9.7,0.6-14.6,0.9s-9.7,0.5-14.6,0.7l-7.3,0.3l-7.3,0.3
|
|
1227
|
+
c-4.9,0.2-9.7,0.3-14.6,0.4l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,215.7,197.4,217.3,197.3,218.8L197.3,218.8z"/>
|
|
1228
|
+
<path class="st115" d="M197.3,230c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.2h0.3c4.9-0.3,9.7-0.6,14.6-0.8l7.3-0.4l7.3-0.3
|
|
1229
|
+
c4.9-0.2,9.7-0.4,14.6-0.6s9.7-0.3,14.6-0.4c-4.9,0.4-9.7,0.7-14.6,1s-9.7,0.6-14.6,0.8l-7.3,0.4l-7.3,0.3
|
|
1230
|
+
c-4.9,0.2-9.7,0.4-14.6,0.6l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,226.9,197.4,228.4,197.3,230L197.3,230z"/>
|
|
1231
|
+
<path class="st115" d="M197.3,241.2c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.2h0.3c4.9-0.3,9.7-0.7,14.6-0.9l7.3-0.4l7.3-0.4
|
|
1232
|
+
c4.9-0.2,9.7-0.5,14.6-0.7s9.8-0.4,14.6-0.5c-4.9,0.4-9.7,0.8-14.6,1.1s-9.7,0.6-14.6,0.9l-7.3,0.4l-7.3,0.4
|
|
1233
|
+
c-4.9,0.3-9.7,0.5-14.6,0.6l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,238,197.4,239.6,197.3,241.2L197.3,241.2z"/>
|
|
1234
|
+
<path class="st115" d="M197.3,252.4c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.2h0.3c4.9-0.4,9.7-0.7,14.6-1.1l7.3-0.5l7.3-0.4
|
|
1235
|
+
c4.9-0.3,9.7-0.6,14.6-0.8s9.7-0.5,14.6-0.6c-4.9,0.5-9.7,0.9-14.6,1.2c-4.9,0.4-9.7,0.7-14.6,1l-7.3,0.5l-7.3,0.4
|
|
1236
|
+
c-4.9,0.3-9.7,0.5-14.6,0.8l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.4,249.2,197.4,250.8,197.3,252.4L197.3,252.4z"/>
|
|
1237
|
+
<path class="st115" d="M197.3,263.5c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.2h0.3c4.9-0.4,9.7-0.8,14.6-1.2l7.3-0.5l7.3-0.5
|
|
1238
|
+
c4.9-0.3,9.7-0.7,14.6-0.9c4.9-0.3,9.8-0.5,14.6-0.7c-4.9,0.5-9.7,0.9-14.6,1.3s-9.7,0.8-14.6,1.1l-7.3,0.5l-7.3,0.5
|
|
1239
|
+
c-4.9,0.3-9.7,0.6-14.6,0.9l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.4,260.4,197.4,262,197.3,263.5L197.3,263.5z"/>
|
|
1240
|
+
<path class="st115" d="M197.3,274.6c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7V265h0.3c4.9-0.5,9.7-0.9,14.6-1.4l7.3-0.6l7.3-0.6
|
|
1241
|
+
c4.9-0.4,9.7-0.8,14.6-1.1s9.7-0.7,14.6-0.9c-4.8,0.6-9.7,1.1-14.6,1.5c-4.9,0.5-9.7,0.9-14.6,1.3l-7.3,0.6l-7.3,0.6
|
|
1242
|
+
c-4.9,0.4-9.7,0.8-14.6,1.1l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.4,271.5,197.4,273.1,197.3,274.6z"/>
|
|
1243
|
+
<path class="st115" d="M197.3,285.9c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.2h0.3c4.8-0.5,9.7-1,14.5-1.4l7.3-0.7l7.3-0.6
|
|
1244
|
+
c4.8-0.4,9.7-0.8,14.6-1.2s9.7-0.7,14.6-1c-4.8,0.6-9.7,1.1-14.5,1.6s-9.7,0.9-14.5,1.4l-7.3,0.7l-7.3,0.6
|
|
1245
|
+
c-4.8,0.4-9.7,0.8-14.6,1.1l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.4,282.7,197.4,284.3,197.3,285.9z"/>
|
|
1246
|
+
<path class="st115" d="M197.4,106.7c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5v-0.3h0.3c4.9,0.2,9.8,0.3,14.7,0.6l7.3,0.3l7.3,0.4
|
|
1247
|
+
c4.9,0.3,9.8,0.5,14.6,0.8c4.9,0.3,9.8,0.6,14.6,1c-4.9-0.1-9.8-0.2-14.7-0.4l-14.7-0.6l-7.3-0.3l-7.3-0.4
|
|
1248
|
+
c-4.9-0.2-9.8-0.5-14.6-0.9l0.3-0.3c0,1.5-0.1,3-0.1,4.5C197.5,103.7,197.5,105.2,197.4,106.7z"/>
|
|
1249
|
+
<path class="st115" d="M197.4,117.7c-0.1-1.5-0.1-3-0.2-4.4c-0.1-1.5-0.1-3-0.1-4.4v-0.3h0.3c4.9,0.1,9.8,0.3,14.7,0.4l7.3,0.3
|
|
1250
|
+
l7.3,0.3c4.9,0.2,9.8,0.4,14.6,0.7c4.9,0.3,9.8,0.5,14.6,0.9c-4.9,0-9.8-0.1-14.7-0.3c-4.9-0.1-9.8-0.3-14.7-0.5l-7.3-0.3l-7.3-0.3
|
|
1251
|
+
c-4.9-0.2-9.8-0.5-14.6-0.7l0.3-0.3c0,1.5-0.1,3-0.1,4.4C197.5,114.8,197.5,116.2,197.4,117.7z"/>
|
|
1252
|
+
<path class="st115" d="M197.4,129.1c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5v-0.3h0.3c4.9,0.1,9.8,0.2,14.7,0.3l7.3,0.2l7.3,0.3
|
|
1253
|
+
c4.9,0.2,9.8,0.3,14.6,0.6c4.9,0.2,9.8,0.5,14.6,0.8c-4.9,0-9.8-0.1-14.7-0.2s-9.8-0.2-14.7-0.3l-7.3-0.2l-7.3-0.3
|
|
1254
|
+
c-4.9-0.2-9.8-0.4-14.6-0.6l0.3-0.3c0,1.5-0.1,3-0.1,4.5C197.5,126,197.5,127.6,197.4,129.1z"/>
|
|
1255
|
+
<path class="st115" d="M197.4,140.4c-0.1-1.5-0.1-3.1-0.2-4.6s-0.1-3.1-0.1-4.6v-0.3h0.3c4.9,0,9.7,0.1,14.6,0.2l7.3,0.1l7.3,0.2
|
|
1256
|
+
c4.9,0.1,9.7,0.3,14.6,0.5s9.7,0.4,14.6,0.6h-14.6c-4.9,0-9.7-0.1-14.6-0.2l-7.3-0.1L212,132c-4.9-0.1-9.7-0.3-14.6-0.5l0.3-0.3
|
|
1257
|
+
c0,1.5-0.1,3.1-0.1,4.6C197.5,137.3,197.4,138.9,197.4,140.4z"/>
|
|
1258
|
+
<path class="st115" d="M197.4,151.7c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7V142h0.3c4.9,0,9.8,0,14.7,0.1l7.3,0.1l7.3,0.1
|
|
1259
|
+
c4.9,0.1,9.8,0.2,14.7,0.3s9.8,0.3,14.7,0.5c-4.9,0.1-9.8,0.1-14.7,0.1s-9.8,0-14.7-0.1l-7.3-0.1H212c-4.9-0.1-9.8-0.2-14.7-0.3
|
|
1260
|
+
l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,148.6,197.4,150.1,197.4,151.7L197.4,151.7z"/>
|
|
1261
|
+
<path class="st115" d="M197.4,162.9c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.3h0.3c4.9-0.1,9.8-0.1,14.7-0.1h7.3l7.3,0.1
|
|
1262
|
+
c4.9,0,9.8,0.1,14.6,0.2c4.9,0.1,9.8,0.2,14.6,0.4c-4.9,0.1-9.8,0.2-14.7,0.2c-4.9,0.1-9.8,0-14.7,0H212c-4.9,0-9.8-0.1-14.6-0.2
|
|
1263
|
+
l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,159.8,197.4,161.4,197.4,162.9L197.4,162.9z"/>
|
|
1264
|
+
<path class="st115" d="M197.4,174.1c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.3h0.3c4.9-0.1,9.7-0.2,14.6-0.2l7.3-0.1h7.3
|
|
1265
|
+
c4.9,0,9.7,0,14.6,0.1c4.9,0,9.7,0.1,14.6,0.2c-4.9,0.2-9.7,0.3-14.6,0.4s-9.7,0.1-14.6,0.2l-7.3,0.1H212c-4.9,0-9.7,0-14.6-0.1
|
|
1266
|
+
l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7C197.5,171,197.4,172.6,197.4,174.1L197.4,174.1z"/>
|
|
1267
|
+
<path class="st115" d="M197.4,185.5c-0.1-1.6-0.1-3.2-0.2-4.8s-0.1-3.2-0.1-4.8v-0.3h0.3c4.9-0.1,9.8-0.3,14.7-0.3l7.3-0.1l7.3-0.1
|
|
1268
|
+
c4.9,0,9.8-0.1,14.7-0.1s9.8,0,14.7,0.1c-4.9,0.2-9.8,0.4-14.7,0.5c-4.9,0.2-9.8,0.2-14.7,0.3l-7.3,0.1l-7.3,0.1
|
|
1269
|
+
c-4.9,0.1-9.8,0.1-14.7,0.1l0.3-0.3c0,1.6-0.1,3.2-0.1,4.8C197.5,182.3,197.4,183.9,197.4,185.5L197.4,185.5z"/>
|
|
1270
|
+
<path class="st115" d="M197.3,196.5c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7v-0.3h0.3c4.9-0.2,9.8-0.3,14.7-0.5l7.3-0.2l7.3-0.1
|
|
1271
|
+
c4.9-0.1,9.8-0.2,14.7-0.2c4.9-0.1,9.8-0.1,14.7,0c-4.9,0.3-9.8,0.5-14.7,0.6c-4.9,0.2-9.8,0.3-14.7,0.4l-7.3,0.2l-7.3,0.1
|
|
1272
|
+
c-4.9,0.1-9.8,0.2-14.7,0.2l0.3-0.3c0,1.6-0.1,3.1-0.1,4.7S197.4,194.9,197.3,196.5z"/>
|
|
1273
|
+
<path class="st115" d="M197.3,207.7c-0.1-1.6-0.1-3.2-0.2-4.7c-0.1-1.6-0.1-3.2-0.1-4.7V198h0.3c4.9-0.2,9.7-0.4,14.6-0.5l7.3-0.2
|
|
1274
|
+
l7.3-0.2c4.9-0.1,9.7-0.2,14.6-0.3s9.7-0.1,14.6-0.1c-4.9,0.3-9.7,0.5-14.6,0.7s-9.7,0.4-14.6,0.5l-7.3,0.2l-7.3,0.2
|
|
1275
|
+
c-4.9,0.1-9.7,0.2-14.6,0.2l0.3-0.3c0,1.6-0.1,3.2-0.1,4.7C197.5,204.6,197.4,206.2,197.3,207.7L197.3,207.7z"/>
|
|
1276
|
+
<path class="st115" d="M195.3,39.7c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6l0.3,0.3c-4.9,0.6-9.8,1.1-14.7,1.6l-7.3,0.8
|
|
1277
|
+
L166,34c-4.9,0.5-9.8,1-14.7,1.4l-14.7,1.2l14.7-1.8c4.9-0.6,9.8-1.1,14.7-1.6l7.3-0.8l7.4-0.7c4.9-0.5,9.8-0.9,14.7-1.3h0.3v0.3
|
|
1278
|
+
c0,1.5-0.1,3-0.1,4.6C195.4,36.7,195.4,38.2,195.3,39.7L195.3,39.7z"/>
|
|
1279
|
+
<path class="st115" d="M195.3,50.9c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6l0.3,0.3c-4.9,0.5-9.8,1-14.7,1.5l-7.3,0.7
|
|
1280
|
+
l-7.4,0.7c-4.9,0.4-9.8,0.9-14.7,1.2c-4.9,0.4-9.8,0.7-14.7,1.1c4.9-0.6,9.8-1.1,14.7-1.6s9.8-1,14.7-1.5l7.3-0.7l7.4-0.6l14.7-1.2
|
|
1281
|
+
h0.3v0.3c0,1.5-0.1,3-0.1,4.6C195.4,47.9,195.4,49.4,195.3,50.9z"/>
|
|
1282
|
+
<path class="st115" d="M195.3,62.1c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6l0.3,0.3c-4.9,0.5-9.8,0.9-14.7,1.4l-7.3,0.6
|
|
1283
|
+
l-7.4,0.6c-4.9,0.4-9.8,0.8-14.7,1.1s-9.8,0.7-14.7,0.9c4.9-0.6,9.8-1.1,14.7-1.5c4.9-0.5,9.8-0.9,14.7-1.3l7.3-0.6l7.4-0.6
|
|
1284
|
+
c4.9-0.4,9.8-0.8,14.7-1.1h0.3V53c0,1.5-0.1,3-0.1,4.6C195.4,59.1,195.4,60.6,195.3,62.1z"/>
|
|
1285
|
+
<path class="st115" d="M195.3,73.2c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5l0.3,0.3c-4.9,0.4-9.8,0.9-14.7,1.2l-7.3,0.6l-7.4,0.5
|
|
1286
|
+
c-4.9,0.3-9.8,0.7-14.7,1s-9.8,0.6-14.7,0.8c4.9-0.5,9.8-1,14.7-1.4c4.9-0.5,9.8-0.8,14.7-1.2l7.3-0.6l7.4-0.5
|
|
1287
|
+
c4.9-0.4,9.8-0.7,14.7-1h0.3v0.3c0,1.5-0.1,3-0.1,4.5C195.4,70.2,195.4,71.7,195.3,73.2z"/>
|
|
1288
|
+
<path class="st115" d="M195.3,84.4c-0.1-1.5-0.1-3-0.2-4.6c-0.1-1.5-0.1-3-0.1-4.6l0.3,0.3c-4.9,0.4-9.8,0.8-14.6,1.1l-7.3,0.5
|
|
1289
|
+
l-7.3,0.5c-4.9,0.3-9.8,0.6-14.7,0.8c-4.9,0.3-9.8,0.5-14.7,0.7c4.9-0.5,9.7-0.9,14.6-1.3s9.8-0.7,14.6-1.1l7.3-0.5l7.3-0.4
|
|
1290
|
+
c4.9-0.3,9.8-0.6,14.7-0.8h0.3v0.3c0,1.5-0.1,3-0.1,4.6C195.4,81.4,195.4,82.9,195.3,84.4z"/>
|
|
1291
|
+
<path class="st115" d="M195.3,95.5c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5l0.3,0.3c-4.9,0.4-9.8,0.7-14.6,1l-7.3,0.4l-7.3,0.4
|
|
1292
|
+
c-4.9,0.3-9.8,0.5-14.7,0.7s-9.8,0.4-14.7,0.5c4.9-0.4,9.8-0.8,14.6-1.1c4.9-0.4,9.8-0.6,14.6-0.9l7.3-0.4l7.3-0.4
|
|
1293
|
+
c4.9-0.3,9.8-0.5,14.7-0.7h0.3v0.3c0,1.5-0.1,3-0.1,4.5C195.4,92.5,195.4,94,195.3,95.5z"/>
|
|
1294
|
+
<path class="st115" d="M195.2,218.8c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.1-9.7-0.3-14.6-0.4l-7.3-0.3
|
|
1295
|
+
l-7.3-0.3c-4.9-0.2-9.7-0.4-14.6-0.7s-9.7-0.5-14.6-0.9c4.9,0,9.8,0.1,14.6,0.3c4.9,0.1,9.7,0.3,14.6,0.5l7.3,0.3l7.3,0.3
|
|
1296
|
+
c4.9,0.2,9.7,0.5,14.6,0.7h0.3v0.3c0,1.6-0.1,3.1-0.1,4.7C195.3,215.7,195.3,217.3,195.2,218.8L195.2,218.8z"/>
|
|
1297
|
+
<path class="st115" d="M195.2,230c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.2-9.7-0.3-14.6-0.6l-7.3-0.3l-7.3-0.4
|
|
1298
|
+
c-4.9-0.3-9.7-0.5-14.6-0.8s-9.7-0.6-14.6-1c4.9,0.1,9.8,0.2,14.6,0.4c4.9,0.2,9.7,0.4,14.6,0.6l7.3,0.3l7.3,0.4
|
|
1299
|
+
c4.9,0.2,9.7,0.5,14.6,0.9h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,226.9,195.3,228.4,195.2,230L195.2,230z"/>
|
|
1300
|
+
<path class="st115" d="M195.2,241.2c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.2-9.7-0.4-14.6-0.7l-7.3-0.4
|
|
1301
|
+
l-7.3-0.4c-4.9-0.3-9.7-0.6-14.6-0.9s-9.7-0.7-14.6-1.1c4.9,0.1,9.8,0.3,14.6,0.5c4.9,0.2,9.7,0.4,14.6,0.7l7.3,0.4l7.3,0.4
|
|
1302
|
+
c4.9,0.3,9.7,0.6,14.6,0.9h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,238,195.3,239.6,195.2,241.2z"/>
|
|
1303
|
+
<path class="st115" d="M195.2,252.4c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.2-9.7-0.5-14.6-0.8l-7.3-0.4
|
|
1304
|
+
l-7.3-0.5c-4.9-0.3-9.7-0.6-14.6-1s-9.7-0.8-14.6-1.2c4.9,0.2,9.7,0.4,14.6,0.6s9.7,0.5,14.6,0.8l7.3,0.4l7.3,0.5
|
|
1305
|
+
c4.9,0.3,9.7,0.7,14.6,1.1h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,249.2,195.3,250.8,195.2,252.4L195.2,252.4z"/>
|
|
1306
|
+
<path class="st115" d="M195.2,263.5c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.3-9.7-0.6-14.6-0.9l-7.3-0.5
|
|
1307
|
+
l-7.3-0.5c-4.9-0.4-9.7-0.7-14.6-1.2c-4.9-0.4-9.7-0.8-14.6-1.3c4.9,0.2,9.8,0.5,14.6,0.7c4.9,0.3,9.7,0.6,14.6,0.9l7.3,0.5l7.3,0.6
|
|
1308
|
+
c4.9,0.4,9.7,0.8,14.6,1.2h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,260.4,195.3,262,195.2,263.5z"/>
|
|
1309
|
+
<path class="st115" d="M195.2,274.6c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.3-9.7-0.7-14.6-1.1l-7.3-0.6
|
|
1310
|
+
l-7.3-0.6c-4.9-0.4-9.7-0.9-14.6-1.4s-9.7-1-14.6-1.5c4.9,0.3,9.8,0.6,14.6,0.9c4.9,0.3,9.7,0.7,14.6,1.1l7.3,0.6l7.3,0.6
|
|
1311
|
+
c4.9,0.4,9.7,0.9,14.6,1.4h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,271.5,195.3,273.1,195.2,274.6L195.2,274.6z"/>
|
|
1312
|
+
<path class="st115" d="M195.2,285.8c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9-0.4-9.7-0.7-14.6-1.2l-7.3-0.6
|
|
1313
|
+
l-7.3-0.7c-4.8-0.5-9.7-0.9-14.5-1.4s-9.7-1-14.5-1.6c4.9,0.3,9.7,0.6,14.6,1c4.9,0.3,9.7,0.8,14.6,1.2l7.3,0.6l7.3,0.7
|
|
1314
|
+
c4.8,0.4,9.7,0.9,14.5,1.4h0.3v0.2c0,1.6-0.1,3.1-0.1,4.7C195.3,282.7,195.3,284.3,195.2,285.8L195.2,285.8z"/>
|
|
1315
|
+
<path class="st115" d="M195.3,106.7c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5l0.3,0.3c-4.9,0.3-9.8,0.6-14.6,0.8l-7.3,0.4l-7.3,0.3
|
|
1316
|
+
l-14.7,0.6c-4.9,0.2-9.8,0.3-14.7,0.4c4.9-0.4,9.8-0.7,14.6-1c4.9-0.3,9.8-0.6,14.6-0.8l7.3-0.4l7.3-0.3l14.7-0.6h0.3v0.3
|
|
1317
|
+
c0,1.5-0.1,3-0.1,4.5S195.3,105.2,195.3,106.7z"/>
|
|
1318
|
+
<path class="st115" d="M195.3,117.7c-0.1-1.5-0.1-3-0.2-4.4c-0.1-1.5-0.1-3-0.1-4.4l0.3,0.3c-4.9,0.3-9.8,0.5-14.6,0.7l-7.3,0.3
|
|
1319
|
+
l-7.3,0.3c-4.9,0.2-9.8,0.4-14.7,0.5s-9.8,0.2-14.7,0.3c4.9-0.3,9.8-0.6,14.6-0.9c4.9-0.3,9.8-0.5,14.6-0.7l7.3-0.3l7.3-0.3
|
|
1320
|
+
c4.9-0.2,9.8-0.3,14.7-0.4h0.3v0.3c0,1.5-0.1,3-0.1,4.4S195.3,116.2,195.3,117.7z"/>
|
|
1321
|
+
<path class="st115" d="M195.3,129.1c-0.1-1.5-0.1-3-0.2-4.5s-0.1-3-0.1-4.5l0.3,0.3c-4.9,0.2-9.8,0.4-14.6,0.6l-7.3,0.3l-7.3,0.2
|
|
1322
|
+
c-4.9,0.1-9.8,0.3-14.7,0.3c-4.9,0.1-9.8,0.1-14.7,0.1c4.9-0.3,9.8-0.5,14.6-0.7c4.9-0.2,9.8-0.4,14.6-0.6l7.3-0.2l7.3-0.2
|
|
1323
|
+
c4.9-0.1,9.8-0.2,14.7-0.3h0.3v0.3c0,1.5-0.1,3-0.1,4.5C195.4,126,195.3,127.6,195.3,129.1L195.3,129.1z"/>
|
|
1324
|
+
<path class="st115" d="M195.3,140.4c-0.1-1.5-0.1-3.1-0.2-4.6s-0.1-3.1-0.1-4.6l0.3,0.3c-4.9,0.2-9.7,0.3-14.6,0.5l-7.3,0.2
|
|
1325
|
+
l-7.3,0.1c-4.9,0.1-9.7,0.2-14.6,0.2s-9.7,0.1-14.6,0c4.9-0.3,9.7-0.5,14.6-0.6c4.9-0.2,9.7-0.3,14.6-0.4l7.3-0.2l7.3-0.1
|
|
1326
|
+
c4.9-0.1,9.7-0.2,14.6-0.2h0.3v0.3c0,1.5-0.1,3.1-0.1,4.6C195.4,137.3,195.3,138.9,195.3,140.4z"/>
|
|
1327
|
+
<path class="st115" d="M195.3,151.7c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9,0.1-9.8,0.3-14.7,0.3l-7.3,0.1
|
|
1328
|
+
l-7.3,0.1c-4.9,0-9.8,0.1-14.7,0.1s-9.8,0-14.7-0.1c4.9-0.2,9.8-0.4,14.7-0.5c4.9-0.2,9.8-0.2,14.7-0.3l7.3-0.1l7.3-0.1
|
|
1329
|
+
c4.9-0.1,9.8-0.1,14.7-0.1h0.3v0.3c0,1.6-0.1,3.1-0.1,4.7C195.4,148.6,195.3,150.1,195.3,151.7z"/>
|
|
1330
|
+
<path class="st115" d="M195.2,162.9c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9,0.1-9.8,0.2-14.6,0.2l-7.3,0.1H166
|
|
1331
|
+
c-4.9,0-9.8,0-14.7-0.1c-4.9,0-9.8-0.1-14.7-0.2c4.9-0.2,9.8-0.3,14.6-0.4c4.9-0.1,9.8-0.1,14.6-0.2l7.3-0.1h7.3
|
|
1332
|
+
c4.9,0,9.8,0,14.7,0.1h0.3v0.3c0,1.6-0.1,3.1-0.1,4.7C195.4,159.8,195.3,161.4,195.2,162.9L195.2,162.9z"/>
|
|
1333
|
+
<path class="st115" d="M195.2,174.1c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9,0.1-9.7,0.1-14.6,0.1h-7.3L166,165
|
|
1334
|
+
c-4.9,0-9.7-0.1-14.6-0.2s-9.7-0.2-14.6-0.4c4.9-0.1,9.7-0.2,14.6-0.2c4.9-0.1,9.7,0,14.6,0h7.3l7.3,0.1c4.9,0,9.7,0.1,14.6,0.2h0.3
|
|
1335
|
+
v0.3c0,1.6-0.1,3.1-0.1,4.7C195.4,171,195.3,172.6,195.2,174.1L195.2,174.1z"/>
|
|
1336
|
+
<path class="st115" d="M195.2,185.5c-0.1-1.6-0.1-3.2-0.2-4.8s-0.1-3.2-0.1-4.8l0.3,0.3c-4.9,0-9.8,0-14.7-0.1l-7.3-0.1l-7.3-0.1
|
|
1337
|
+
c-4.9-0.1-9.8-0.2-14.7-0.3s-9.8-0.3-14.7-0.5c4.9-0.1,9.8-0.1,14.7-0.1s9.8,0,14.7,0.1l7.3,0.1l7.3,0.1c4.9,0.1,9.8,0.2,14.7,0.3
|
|
1338
|
+
h0.3v0.3c0,1.6-0.1,3.2-0.1,4.8S195.3,183.9,195.2,185.5z"/>
|
|
1339
|
+
<path class="st115" d="M195.2,196.5c-0.1-1.6-0.1-3.1-0.2-4.7s-0.1-3.1-0.1-4.7l0.3,0.3c-4.9,0-9.8-0.1-14.7-0.2l-7.3-0.1l-7.3-0.2
|
|
1340
|
+
c-4.9-0.1-9.8-0.3-14.7-0.5l-14.7-0.6h14.7c4.9,0,9.8,0.1,14.7,0.2l7.3,0.1l7.3,0.2c4.9,0.1,9.8,0.3,14.7,0.5h0.3v0.3
|
|
1341
|
+
c0,1.6-0.1,3.1-0.1,4.7C195.4,193.3,195.3,194.9,195.2,196.5z"/>
|
|
1342
|
+
<path class="st115" d="M195.2,207.7c-0.1-1.6-0.1-3.2-0.2-4.7c-0.1-1.6-0.1-3.2-0.1-4.7l0.3,0.3c-4.9-0.1-9.7-0.1-14.6-0.3l-7.3-0.2
|
|
1343
|
+
l-7.3-0.2c-4.9-0.2-9.7-0.3-14.6-0.5s-9.7-0.4-14.6-0.7c4.9,0,9.7,0,14.6,0.1c4.9,0,9.7,0.2,14.6,0.3l7.3,0.2l7.3,0.2
|
|
1344
|
+
c4.9,0.1,9.7,0.3,14.6,0.5h0.3v0.3c0,1.6-0.1,3.2-0.1,4.7C195.4,204.6,195.3,206.2,195.2,207.7L195.2,207.7z"/>
|
|
1345
|
+
<polygon class="st116" points="135.3,281.3 97.9,268.7 98,48.6 135,35.8 196.3,29.6 257.4,35.5 294.9,48.4 294.9,268.6 257.3,281.2
|
|
1346
|
+
196.1,287.3 "/>
|
|
1347
|
+
<linearGradient id="SVGID_98_" gradientUnits="userSpaceOnUse" x1="103.7529" y1="157.15" x2="132.7903" y2="157.15">
|
|
1348
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1349
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1350
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1351
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1352
|
+
</linearGradient>
|
|
1353
|
+
<polygon class="st117" points="132.8,42.9 104.3,50.9 103.8,263.5 129.6,271.4 "/>
|
|
1354
|
+
<g>
|
|
1355
|
+
<linearGradient id="SVGID_99_" gradientUnits="userSpaceOnUse" x1="9.2588" y1="226.8998" x2="83.6499" y2="226.8998">
|
|
1356
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1357
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1358
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1359
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1360
|
+
</linearGradient>
|
|
1361
|
+
<path class="st118" d="M80.9,223.8l-0.3,0.3c1.8-1.7,2.2-5.2-0.5-6.5c1.8-2.2-0.3-6.5-2.9-7.6c0.5-0.6,0.8-1.4,0.8-2.3
|
|
1362
|
+
c0-2.1-1.7-3.8-3.8-3.8c-0.4,0-0.7,0.1-1.1,0.2c0-0.1,0-0.1,0-0.2c0-3.1-2.5-5.6-5.6-5.6c-0.7,0-1.3,0.1-1.9,0.3
|
|
1363
|
+
c-2.8-5.8-6.8-6.9-11.9-3.3c-1-5.5-10.1-5.6-18.5-3.3c-1.5-0.8-3.2-1.2-5-1.2c-6.2,0-11.3,5-11.3,11.3c0,0.5,0,1,0.1,1.5
|
|
1364
|
+
c-3.6,1.9-6.1,5.6-6.1,10c0,1.3,0.2,2.5,0.6,3.7c-4.2,2.9-6.8,12.7-0.6,12.4c-0.6,5.4,1.2,9.5,5.2,12.4c-1.8,1.6,2,3.8,3.7,3.7
|
|
1365
|
+
c-0.5,4.5-0.2,5.3,4.6,5.5c0,2.1,2.8,5,4.9,4c-0.2,4.1,2.7,4.2,6.2,2.7c0.7,2.8,3.3,5,6.4,5c3.7,0,6.6-3,6.6-6.6c0,0,0-0.1,0-0.1
|
|
1366
|
+
c0.1,0,0.2,0,0.4,0c1.1,1.6,2.9,2.7,5,2.7c3,0,5.5-2.2,5.9-5.1c0.3,0.1,0.6,0.1,1,0.1c1.8,0,3.3-1.3,3.6-3c1.9-0.4,3.8-1.1,4.7-1.5
|
|
1367
|
+
c4-2.3,5-5.7,3-10.3c0.6,0.3,1.4,0,1.9,0.2c0.3-2.4-1-4.6-2.2-6.6c4,0.1,6.9-1.6,8.3-5.6C83.8,229.5,84.9,224,80.9,223.8z
|
|
1368
|
+
M25.8,244.7c-0.1-1.9-0.5-2.7-2.5-3.2l0,0c1.3-0.8,1.3-3.1,0.6-4.3c-0.7-1.2-2.1-1.6-3.3-2.1c2.1,0.4,0.5-4.9-0.7-5.6
|
|
1369
|
+
c3,0.8,2.6-1.8,2.7-3.7c0,0,0,0,0,0c0-0.1,0-0.1,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0.1,0.1c0.1-0.3,0.2-0.5,0.3-0.9
|
|
1370
|
+
c-0.1,2.1,1.3,3.1,3.2,3.1c-2.3,0.7-0.6,5.2,0.9,6c-2.4,0.5,1.4,4.8,2.4,5.3C27.8,241.1,25.7,241.9,25.8,244.7z"/>
|
|
1371
|
+
<g>
|
|
1372
|
+
<path class="st119" d="M82.3,224c-0.2,0.7-0.8,1.1-1.4,0.3c-1.4,4-4.3,5.7-8.3,5.6c1.2,2,2.4,4.2,2.2,6.6
|
|
1373
|
+
c-0.6-0.2-1.3,0.1-1.9-0.2c2,4.6,1.1,8-3,10.3c-0.9,0.4-2.8,1.1-4.7,1.5c-0.3,1.7-1.8,3-3.6,3c-0.3,0-0.6-0.1-1-0.1
|
|
1374
|
+
c-0.4,2.9-2.9,5.1-5.9,5.1c-2.1,0-3.9-1.1-5-2.7c-0.1,0-0.2,0-0.4,0c0,0,0,0.1,0,0.1c0,3.7-3,6.6-6.6,6.6c-3.1,0-5.7-2.1-6.4-5
|
|
1375
|
+
c-1.7,0.7-3.3,1.1-4.4,0.8c0,3.8,2.8,3.8,6.2,2.4c0.7,2.8,3.3,5,6.4,5c3.7,0,6.6-3,6.6-6.6c0,0,0-0.1,0-0.1c0.1,0,0.2,0,0.4,0
|
|
1376
|
+
c1.1,1.6,2.9,2.7,5,2.7c3,0,5.5-2.2,5.9-5.1c0.3,0.1,0.6,0.1,1,0.1c1.8,0,3.3-1.3,3.6-3c1.9-0.4,3.8-1.1,4.7-1.5
|
|
1377
|
+
c4-2.3,5-5.7,3-10.3c0.6,0.3,1.4,0,1.9,0.2c0.3-2.4-1-4.6-2.2-6.6c4,0.1,6.9-1.6,8.3-5.6C84.3,229.3,85.3,224.7,82.3,224z"/>
|
|
1378
|
+
</g>
|
|
1379
|
+
<path class="st120" d="M60.1,230.2C59.6,228.3,57.1,230,60.1,230.2L60.1,230.2z"/>
|
|
1380
|
+
<path class="st121" d="M28.5,225.9L31,223l-2.5-2.8l3.9-1.5l-1.9-0.9l4.8-1.6l-2.7-1.3l2.7-0.9c0,0,1.3-3.7,1-3.4
|
|
1381
|
+
c-0.3,0.2,2.5-0.3,2.5-0.3l0.8-2.5l3,1.2L45,205l3,1.6l4.4-1.6l2.4,2.8h2.5l1.6,2.7l3-1.8l-3,3.7l-2.4-2.8l-3.6,1.6l-2-2.5l-3,2.5
|
|
1382
|
+
h-4.6l-2.5,2.6l-2.7,1.6l-1.2,2.9l-2.4,1.8v5l-2.4,3.1l0.1-2.4H28.5z"/>
|
|
1383
|
+
<path class="st122" d="M26.4,214.1"/>
|
|
1384
|
+
<path class="st123" d="M81.5,223.8l-0.3,0.3c1.8-1.7,2.2-5.2-0.5-6.5c1.8-2.2-0.3-6.5-2.9-7.6c0.5-0.6,0.8-1.4,0.8-2.3
|
|
1385
|
+
c0-2.1-1.7-3.8-3.8-3.8c-0.4,0-0.7,0.1-1.1,0.2c0-0.1,0-0.1,0-0.2c0-3.1-2.5-5.6-5.6-5.6c-0.7,0-1.3,0.1-1.9,0.3
|
|
1386
|
+
c-2.8-5.8-6.8-6.9-11.9-3.3c-1-5.5-10.1-5.6-18.5-3.3c-1.5-0.8-3.2-1.2-5-1.2c-6.2,0-11.3,5-11.3,11.3c0,0.5,0,1,0.1,1.5
|
|
1387
|
+
c-3.6,1.9-6.1,5.6-6.1,10c0,1.3,0.2,2.5,0.6,3.7c-4.2,2.9-6.8,12.7-0.6,12.4c-0.6,5.4,1.2,9.5,5.2,12.4c-1.8,1.6,2,3.8,3.7,3.7
|
|
1388
|
+
c-0.5,4.5-0.2,5.3,4.6,5.5c0,2.1,2.8,5,4.9,4c-0.2,4.1,2.7,4.2,6.2,2.7c0.7,2.8,3.3,5,6.4,5c3.7,0,6.6-3,6.6-6.6c0,0,0-0.1,0-0.1
|
|
1389
|
+
c0.1,0,0.2,0,0.4,0c1.1,1.6,2.9,2.7,5,2.7c3,0,5.5-2.2,5.9-5.1c0.3,0.1,0.6,0.1,1,0.1c1.8,0,3.3-1.3,3.6-3c1.9-0.4,3.8-1.1,4.7-1.5
|
|
1390
|
+
c4-2.3,5-5.7,3-10.3c0.6,0.3,1.4,0,1.9,0.2c0.3-2.4-1-4.6-2.2-6.6c4,0.1,6.9-1.6,8.3-5.6C84.4,229.5,85.5,224,81.5,223.8z
|
|
1391
|
+
M26.4,244.7c-0.3-0.9-0.5-2.7-2.5-3.2l0,0c1.3-0.8,1.3-3.1,0.6-4.3c-0.7-1.2-2.1-1.6-3.3-2.1c2-0.6,0.5-4.9-0.7-5.6
|
|
1392
|
+
c2.8-0.2,2.6-1.8,2.7-3.7c0,0,0,0,0,0c0-0.1,0-0.1,0,0c0,0,0,0,0,0c0,0.1,0,0.1,0.1,0.1c0.1-0.3,1.2,2.2,3.5,2.3
|
|
1393
|
+
c-1.7,1.2-0.6,5.2,0.9,6c-2.4,0.5,1.4,4.8,2.4,5.3C28.4,241.1,27.2,242.8,26.4,244.7z"/>
|
|
1394
|
+
</g>
|
|
1395
|
+
<path class="st119" d="M133.1,137.5c-1.9-0.8-3.3-1.9-4.4-3.4l0.1-0.1c1.4-1,2.2-3.4,0.6-4.7c-1.2-1,0.2-4.5-0.1-6
|
|
1396
|
+
c-0.1-0.6-0.3-1.2-0.5-1.6c0.3-0.6,0.6-1.3,0.7-2.1c0.5-2.8-1-5.6-0.9-8.4c0.6-0.4,1.1-0.9,1.3-1.7c0.3-1.3,0.5-2.7,0.3-4
|
|
1397
|
+
c0-0.3-0.1-0.6-0.2-0.9c0.3-0.5,0.5-1,0.5-1.6v-0.2c0-0.4-0.1-0.8-0.3-1.2c0.5-0.9,0.5-2,0.1-3c0.3-0.6,0.3-1.2,0.3-1.8
|
|
1398
|
+
c2-0.7,2.3-3.5,1-4.9c0-1.2-0.5-2.5-1.8-2.9c-0.2-0.3-0.5-0.6-0.8-0.8c0.9-1,1.1-2.6,0.5-3.8c0.8-1,0.8-2.5,0.2-3.6
|
|
1399
|
+
c1.3-1.2,1.3-3.5-0.1-4.6c0,0,0,0,0,0c1-0.9,1.3-2.5,0.8-3.7c0,0,0-0.1,0-0.1c1.3-1.4,0.9-4.1-1-4.9c0.2-0.3,0.3-0.6,0.3-0.9
|
|
1400
|
+
c0.7-0.8,0.9-2,0.6-3c0.5-0.9,0.1-2.3-1.3-2.3c-0.4,0-0.7,0.1-0.9,0.3c0-0.4,0-0.7-0.1-1.1c1.6-0.3,1.6-2.9-0.3-3c0,0,0-0.1,0-0.1
|
|
1401
|
+
c0.1,0,0.3,0.1,0.5,0.1c1.2,0,1.6-1.1,1.4-1.9c0.3-0.7,0.4-1.6,0.1-2.3c0.2-0.7,0.2-1.5-0.1-2.2c0.9-1.4,0.6-3.5-0.9-4.4
|
|
1402
|
+
c0.1-0.3,0.2-0.6,0.4-0.9c0.2-0.5,0.2-0.9,0-1.3c0.4-0.9,0-2.2-1.3-2.2c-0.3,0-0.5,0.1-0.7,0.1c-0.2-0.5-0.6-0.9-1.3-0.9
|
|
1403
|
+
c-0.8,0-1.2,0.5-1.4,1c-0.4,0-0.8,0.2-1,0.5c-0.2-0.2-0.5-0.3-0.9-0.3c-0.8,0-1.2,0.5-1.4,1c-0.2-0.2-0.5-0.3-0.9-0.3
|
|
1404
|
+
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.5,0.1c-0.2-0.1-0.3-0.1-0.5-0.1c-0.7,0-1.1,0.4-1.3,0.9
|
|
1405
|
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-1.1,0-1.5,0.9-1.4,1.7c-0.2-0.1-0.5-0.2-0.8-0.2c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0
|
|
1406
|
+
c-0.9,0-1.3,0.6-1.4,1.3c-0.7,0.1-1.1,0.6-1.2,1.2c-0.3-0.1-0.6-0.1-1-0.1c-0.4,0-0.9,0-1.3,0.1c-0.2,0-0.4,0.1-0.7,0.2
|
|
1407
|
+
c-0.5-0.5-1.2-0.8-2.1-0.5c-0.5,0.2-1,0.6-1.3,1c-0.2,0.3-0.3,0.7-0.3,1c-1.2,0.1-1.7,1.7-1,2.5c-1.4,2.5-1.9,5.1-0.7,7.2
|
|
1408
|
+
c-0.9,1.5-1.6,3.1-1.7,4.9c0,0.2,0,0.3,0,0.5c-2,1.2-1.8,4.7,0.6,5.4c-0.1,0.4-0.1,0.8-0.1,1.2c-1,1.1-1.1,2.9-0.2,4.1
|
|
1409
|
+
c-0.7,1.3-0.4,3.2,0.8,4c-1.4,1.3-1.2,3.8,0.4,4.8c0,0.3,0,0.5,0,0.8c-0.3,1-0.1,2.1,0.5,2.9c0.1,0.2,0.1,0.5,0.2,0.7
|
|
1410
|
+
c-1.5,0.9-1.7,3.1-0.8,4.4c-1.4,1.1-1.4,3.6,0,4.8c0,0.2,0,0.5,0,0.7c-0.2,0.7-0.3,1.5-0.4,2.3c-1.1,0.8-1.3,2.4-0.9,3.7
|
|
1411
|
+
c-2.4,1-2.3,4.9,0.3,5.6c-0.3,0.7-0.4,1.6-0.2,2.3c-0.2,0.8-0.1,1.7,0.3,2.5c0.1,0.4,0.3,0.7,0.6,1c0,0.3,0,0.6,0,0.9
|
|
1412
|
+
c-1.6,1-1.7,3.5-0.4,4.8c-0.3,1-0.1,2.1,0.5,2.9c-0.6,1-0.5,2.4,0.2,3.4c-2.5,0.5-3,3.7-1.3,5.2c-1.3,0.9-1.5,2.8-0.8,4.1
|
|
1413
|
+
c-0.3,0.9-0.2,1.9,0.2,2.7c-0.3,0.9-0.4,1.9-0.3,2.8c0.1,0.9,0.3,1.9,0.7,2.8c-1.5,1.3-1.3,4.1,0.5,5c0.1,0.9,0.6,1.7,1.3,2.1
|
|
1414
|
+
c-0.1,0.2-0.2,0.4-0.3,0.6c-0.2,0.9-0.4,1.8-0.5,2.7c-1.5,0.9-1.7,3.1-0.7,4.5c-0.3,1.2,0,2.5,1,3.3c-1.1,0.7-1.6,2.1-1.3,3.4
|
|
1415
|
+
c-1.4,1.4-1.1,4.3,1,5c0.5,1.2,1,2.4,0.8,3.2c-0.1,0.3-0.1,0.6-0.1,0.8c-0.8,0.9-1,2.1-0.9,3.7c-1.1,1.3-1.7,2.4-1.3,4.5
|
|
1416
|
+
c0.2,0.9,0.5,1.8,0.9,2.6c-1,1-1.6,2.1-0.9,4.1c0.2,0.5,0.6,0.9,0.8,1.4c0,0.1-0.1,0.2-0.2,0.5c-0.1,0.6-0.2,1.3-0.2,1.9
|
|
1417
|
+
c-1.4,1.1-1.5,3.6-0.1,4.7c0,0.5-0.1,0.9-0.2,1.4c-0.2,1.4,0.4,2.5,1.3,3.1c-1.9,1.1-1.9,4.1,0,5.2c-0.2,0.7-0.2,1.4,0.1,2
|
|
1418
|
+
c-0.7,1.2-0.5,2.9,0.5,3.9c-0.4,1.2-0.1,2.6,0.9,3.4c-0.9,0.7-1.2,2-1,3.2c-3.2,0.5-3.1,5.6,0.2,5.9c-1.5,0.6-2.1,2.4-1.6,3.8
|
|
1419
|
+
c-1.2,1.5-0.7,4.2,1.3,4.8c-0.1,1.5,0.9,3.1,2.9,3.1c3.5,0,3.8-5,0.9-5.9c0-0.4,0-0.8-0.2-1.2c1.3-1.6,0.7-4.7-1.8-4.9
|
|
1420
|
+
c1.4-0.6,2-2.2,1.6-3.6c2.6-0.4,3-3.9,1.3-5.3c0.4-0.3,0.7-0.8,0.9-1.2c2.1-1.2,1.9-4.9-0.7-5.5c0.8-1.4,0.4-3.4-1-4.2
|
|
1421
|
+
c0.1-0.4,0.1-0.7,0.1-1.1c2.2-0.9,2.4-4.3,0.3-5.4c0.2-1.5,0.3-2.9,0.4-4.4c0-1.5,0.6-2.7,0.6-4.1c0-0.6-0.2-2-0.7-2.7
|
|
1422
|
+
c0.3-0.2,0.5-0.5,0.8-0.8c1.1-1.3,1.3-3.9-0.6-4.7c-1.9-0.8,0-1.2,0.5-2.5c0.2-0.6,0.2-1,0.2-1.6c0-0.1,0-0.1,0-0.2
|
|
1423
|
+
c2.2-0.9,2.6-4.1,1-5.3c0-0.7-0.2-1.4-0.4-2.2c-0.8-3.3-0.5-4,0.8-7c1.4-3.3-0.5-5.5-1-8.2c0-0.1,0-0.1,0-0.2
|
|
1424
|
+
c0.6-0.1,1.2-0.2,1.9-0.5c1.8-0.7,2.8-2.6,1.8-4.4c-1.2-2-2.3-4-3.5-6.1c-1.7-3-2-4.9-1.2-8.2c1.1-4.3,1.2-8.9,1.7-13.3
|
|
1425
|
+
c0.4-4.1-0.6-7.6,0.1-11.6c0.7-3.9-1.6-7.1-1.3-11.1c0.3-3.7,3.8-6.9,3.1-10.5c-0.3-1.6-1.3-3.1-1.9-4.6c-1.3-3.6-0.6-5.1,0.4-8.4
|
|
1426
|
+
c1.1-3.5-1.1-4.3-1.9-7.3c-0.3-1.3,0.3-2.9,0.1-4.3c-0.5-2.9-0.4-4,1.5-6.7c0.9-1.3,0.2-3.3-1.1-4.1c0.3-0.6,0.6-1.1,0.9-1.7
|
|
1427
|
+
c0.9-1.4,0.4-2.7-0.5-3.6c1-0.2,1.8-0.7,3,0c1.3,0.8,2.6-0.7,2.1-1.9c0.2-0.2,0.4-0.5,0.4-0.9c0,0,0,0,0.1,0c0.1,0,0.2,0,0.3,0
|
|
1428
|
+
c1.1,0,1.5-0.9,1.4-1.7c0.2,0.1,0.5,0.2,0.8,0.2c0.2,0,0.4,0,0.5-0.1c0.2,0.2,0.6,0.3,1,0.3c0.8,0,1.2-0.5,1.4-1c0,0,0.1,0,0.1,0
|
|
1429
|
+
c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.3,0c0.8,0,1.2-0.5,1.4-1c0.2,0.2,0.5,0.3,0.9,0.3c0.5,0,0.9-0.2,1.1-0.5c0.2,0.2,0.5,0.3,0.9,0.3
|
|
1430
|
+
c0.8,0,1.2-0.5,1.4-1c0.2,0,0.4-0.1,0.5-0.1c0,0,0,0,0,0c-0.4,0.8-0.6,1.6-0.9,2.4c-1.1,0.8-1.4,2.5-0.9,3.7
|
|
1431
|
+
c-0.5,0.8-0.6,1.8-0.3,2.7c-0.3,0.9-0.2,1.9,0.3,2.7c0.1,2.3,0.3,4.6,0.5,6.9c-0.7,1.2-0.6,2.8,0.4,3.8c0,0,0,0.1,0,0.1
|
|
1432
|
+
c-2.1,1-2.1,4.2-0.2,5.3c-0.5,0.9-0.6,2.1-0.1,3c-1.4,1.1-1.4,3.6,0,4.7c0.1,0.1,0.1,0.2,0.2,0.3c-1.1,0.9-1.2,2.6-0.6,3.9
|
|
1433
|
+
c-1,1.3-0.8,3.6,0.7,4.5c-1.1,1.1-1.1,3.2-0.1,4.3c-0.1,1-0.1,1.9-0.2,2.9c-0.4,0.8-0.5,1.7-0.2,2.6c0,0.3-0.1,0.6-0.1,1
|
|
1434
|
+
c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4-0.1,0.8-0.1,1.3c0,0,0,0.1,0,0.1c-0.2,0.4-0.3,0.8-0.3,1.2v0.2c0,0.3,0.1,0.6,0.2,0.9
|
|
1435
|
+
c-0.3,0.5-0.5,1-0.4,1.6c0,0.4,0,0.9,0,1.3c-0.5,0.3-1,0.9-1.2,1.6c-0.5,1.7-0.7,3-0.4,4.8c0.2,1.2,2,5,0.6,5.9
|
|
1436
|
+
c-1.8,1.2-2.1,4,0,5.2c0.5,0.2-0.3,4.9-0.1,5.6c0.1,0.4,0.2,0.8,0.3,1.2c-0.9,1.2-1.4,2.6-0.8,4.4c0.5,1.6,1.5,2.9,2.8,4.1
|
|
1437
|
+
c-0.3,0.2-0.5,0.3-0.8,0.5c-1.4,1-1.8,2.5-1.1,4.1c0.6,1.2,0.5,2.6,0.4,4c-2.5,1-2.4,5,0.4,5.7c0.2,0.6,0.4,1.2,0.7,1.8
|
|
1438
|
+
c0.2,0.3,0.4,0.6,0.6,0.8c-0.1,0.2-0.1,0.4-0.2,0.5c-0.8,0.1-1.6,0.6-2,1.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.6,1.1-0.5,2.6,0.3,3.5
|
|
1439
|
+
c-0.2,1,0,2.2,0.7,2.9c-0.8,1.1-0.8,2.9,0.2,3.9c0.1,0.6,0.3,1.1,0.4,1.8c0.4,1.9-1,4-0.6,5.9c-1.2,0.8-1.5,2.3-1.1,3.6
|
|
1440
|
+
c-0.1,0-0.2,0-0.3,0c-0.7,0.1-1.5,0.8-1.8,1.4c-0.4,0.6-0.5,1.6-0.3,2.3c0.2,0.7,0.7,1.4,1.4,1.8c0.8,0.4,1.5,0.4,2.3,0.3l0.8-0.1
|
|
1441
|
+
c0,0,0,0,0,0c-0.1,0.2-0.1,0.5-0.1,0.7v0.2c0,0.4,0.1,0.8,0.3,1.2c-0.3,0.6-0.5,1.3-0.4,2c-0.6,0.9-0.7,2.1-0.3,3.1
|
|
1442
|
+
c-0.2,0.4-0.4,0.9-0.4,1.4v0.2c0,0.7,0.2,1.3,0.6,1.8c-1.6,0.8-1.9,3-1.1,4.4c-1.1,1.3-0.9,3.6,0.5,4.6c-0.3,0.9-0.3,1.9,0.1,2.7
|
|
1443
|
+
c-0.4,0.8-0.5,1.7-0.2,2.5c-0.7,0.8-0.8,2.1-0.5,3.1c-0.3,0.6-0.5,1.2-0.4,1.9c0,0-0.1,0-0.1,0c-2.7,0-3.5,3-2.4,4.7
|
|
1444
|
+
c-0.7,1.7,0.1,4,2.3,4.2c-0.1,0.7,0.1,1.5,0.6,2.1c-0.1,0.1-0.1,0.1-0.1,0.2c-1.9,0.1-2.8,1.8-2.7,3.3c-2.9,0.6-3,5-0.3,5.8
|
|
1445
|
+
c0,0.9,0.3,1.9,1,2.5c-0.4,0.9-0.4,1.9,0,2.8c-1.3,0.8-1.7,2.8-0.9,4.1c-1.9,1.5-1.4,5.3,1.6,5.4c-0.4,0.5-0.6,1.1-0.6,1.8v0.5
|
|
1446
|
+
c0,0.7,0.3,1.5,0.8,2c-1.4,1-1.6,3.2-0.5,4.5c-0.1,0-0.2,0-0.3,0c-1.6,0-2.6,1.1-2.8,2.3c-0.1,0-0.3,0-0.4,0c-1.1,0-1.9,0.5-2.4,1.2
|
|
1447
|
+
c-0.1-1.4-1.1-2.7-2.9-2.7c-0.3,0-0.6,0.1-0.9,0.1c-0.5-0.4-1.1-0.6-1.9-0.6c-0.4,0-0.8,0.1-1.1,0.2c-0.3-0.2-0.8-0.4-1.2-0.4
|
|
1448
|
+
c0.1-0.7-0.1-1.4-0.4-1.9c1.8-0.6,2.4-2.7,1.7-4.2c1.3-1.4,1-4-0.8-4.8c-0.3-0.5-0.6-0.9-1.2-1.2c0-0.1,0-0.2,0-0.3
|
|
1449
|
+
c0.5-0.7,0.6-1.6,0.5-2.4c1.9-1.5,1.3-5.4-1.8-5.4c-2.2,0-3.1,1.9-2.8,3.6c-0.7,0.6-1.1,1.5-1.1,2.4c-0.9,1.4-0.6,3.6,1,4.4
|
|
1450
|
+
c-0.1,1.2,0.4,2.4,1.5,3c-0.9,1-1,2.6-0.3,3.7c-2.3,0.7-2.5,4-0.8,5.3c-1,1.8-0.1,4.5,2.5,4.5c0.9,0,1.5-0.3,2-0.8
|
|
1451
|
+
c0.3,0,0.6-0.1,0.9-0.2c0,0,0,0,0,0c-0.2,1.6,0.7,3.5,2.9,3.5c1.1,0,1.9-0.5,2.4-1.2c0,0,0,0,0,0c-0.2,1.6,0.7,3.4,2.9,3.4
|
|
1452
|
+
c0.4,0,0.7-0.1,1-0.2c0.4,0.8,1.3,1.4,2.5,1.4c1.1,0,1.8-0.5,2.3-1.1c0.3,0.1,0.5,0.1,0.8,0.1c0.2,1.3,1.1,2.5,2.9,2.5
|
|
1453
|
+
c2.9,0,3.6-3.3,2.2-5c1.1-1,1.2-2.8,0.4-4c1.9-1.3,1.6-4.7-0.8-5.4c0.1-0.7,0-1.5-0.3-2.1c0.6-1.1,0.5-2.6-0.4-3.6
|
|
1454
|
+
c0.1-0.2,0.1-0.4,0.1-0.7v0c1.2-1.2,1.2-3.3,0-4.5c0.5-0.6,0.7-1.5,0.6-2.3c1.9-0.9,2-3.8,0.5-5c2.5-0.7,2.7-4.3,0.7-5.5
|
|
1455
|
+
c0.3-0.5,0.5-1,0.5-1.6v-0.5c0-1.2-0.8-2.4-2-2.8c0.8-1.1,0.8-2.7,0.1-3.8c1.5-1.6,0.9-4.8-1.7-5.1c0.1-0.7-0.1-1.4-0.5-2
|
|
1456
|
+
c0.2-0.5,0.3-1,0.2-1.5c0,0,0.1,0,0.1,0c2.4,0,3.3-2.3,2.7-4.1c0.5-0.8,0.5-1.8,0.3-2.7c0.8-1,0.9-2.4,0.3-3.5
|
|
1457
|
+
c0.7-1.3,0.4-3.1-0.9-4c0.4-0.9,0.3-2.1-0.2-2.9c0.3-0.3,0.5-0.7,0.6-1.1c2.3-0.6,2.7-3.7,1.2-5.2c0-0.1,0-0.2,0-0.2v-0.2
|
|
1458
|
+
c0-0.5-0.1-1-0.4-1.4c0.2-0.6,0.3-1.2,0.2-1.8c0.5-0.8,0.7-1.9,0.4-2.9c0.3-0.5,0.5-1,0.5-1.7v-0.2c0-0.9-0.5-1.8-1.2-2.4
|
|
1459
|
+
c0.3-1.3-0.3-2.9-1.7-3.4c0.3-0.5,0.5-1.1,0.5-1.7c1.4-0.6,2.4-2.1,1.9-3.5c0.6-0.4,0.9-1.1,1.1-1.8c1.3-1.4,1-4.2-0.9-4.9
|
|
1460
|
+
c0-0.3-0.1-0.7,0-1c0.3-1.2,1.4-2,1.5-3.3c0.2-1.6-2.2-5.6-0.7-6.6c2.6-1.8,1-5.6-1.4-5.7c-1.2-2.6-0.4-5.5-0.7-8.4
|
|
1461
|
+
c0.9-0.5,1.9-0.8,3-1.1C134.7,142.4,135.5,138.6,133.1,137.5z"/>
|
|
1462
|
+
<path class="st119" d="M133.1,137.5c-1.9-0.8-3.3-1.9-4.4-3.4l0.1-0.1c1.4-1,2.2-3.4,0.6-4.7c-1.2-1,0.2-4.5-0.1-6
|
|
1463
|
+
c-0.1-0.6-0.3-1.2-0.5-1.6c0.3-0.6,0.6-1.3,0.7-2.1c0.5-2.8-1-5.6-0.9-8.4c0.6-0.4,1.1-0.9,1.3-1.7c0.3-1.3,0.5-2.7,0.3-4
|
|
1464
|
+
c0-0.3-0.1-0.6-0.2-0.9c0.3-0.5,0.5-1,0.5-1.6v-0.2c0-0.4-0.1-0.8-0.3-1.2c0.5-0.9,0.5-2,0.1-3c0.3-0.6,0.3-1.2,0.3-1.8
|
|
1465
|
+
c2-0.7,2.3-3.5,1-4.9c0-1.2-0.5-2.5-1.8-2.9c-0.2-0.3-0.5-0.6-0.8-0.8c0.9-1,1.1-2.6,0.5-3.8c0.8-1,0.8-2.5,0.2-3.6
|
|
1466
|
+
c1.3-1.2,1.3-3.5-0.1-4.6c0,0,0,0,0,0c1-0.9,1.3-2.5,0.8-3.7c0,0,0-0.1,0-0.1c1.3-1.4,0.9-4.1-1-4.9c0.2-0.3,0.3-0.6,0.3-0.9
|
|
1467
|
+
c0.7-0.8,0.9-2,0.6-3c0.5-0.9,0.1-2.3-1.3-2.3c-0.4,0-0.7,0.1-0.9,0.3c0-0.4,0-0.7-0.1-1.1c1.6-0.3,1.6-2.9-0.3-3c0,0,0-0.1,0-0.1
|
|
1468
|
+
c0.1,0,0.3,0.1,0.5,0.1c1.2,0,1.6-1.1,1.4-1.9c0.3-0.7,0.4-1.6,0.1-2.3c0.2-0.7,0.2-1.5-0.1-2.2c0.9-1.4,0.6-3.5-0.9-4.4
|
|
1469
|
+
c0.1-0.3,0.2-0.6,0.4-0.9c0.2-0.5,0.2-0.9,0-1.3c0.4-0.9,0-2.2-1.3-2.2c-0.3,0-0.5,0.1-0.7,0.1c-0.2-0.5-0.6-0.9-1.3-0.9
|
|
1470
|
+
c-0.8,0-1.2,0.5-1.4,1c-0.4,0-0.8,0.2-1,0.5c-0.2-0.2-0.5-0.3-0.9-0.3c-0.8,0-1.2,0.5-1.4,1c-0.2-0.2-0.5-0.3-0.9-0.3
|
|
1471
|
+
c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0c-0.2,0-0.3,0-0.5,0.1c-0.2-0.1-0.3-0.1-0.5-0.1c-0.7,0-1.1,0.4-1.3,0.9
|
|
1472
|
+
c-0.2-0.1-0.4-0.1-0.7-0.1c-1.1,0-1.5,0.9-1.4,1.7c-0.2-0.1-0.5-0.2-0.8-0.2c-0.1,0-0.2,0-0.2,0c-0.1,0-0.2,0-0.3,0
|
|
1473
|
+
c-0.9,0-1.3,0.6-1.4,1.3c-0.7,0.1-1.1,0.6-1.2,1.2c-0.3-0.1-0.6-0.1-1-0.1c-0.4,0-0.9,0-1.3,0.1c-0.2,0-0.4,0.1-0.7,0.2
|
|
1474
|
+
c-0.5-0.5-1.2-0.8-2.1-0.5c-0.5,0.2-1,0.6-1.3,1c-0.2,0.3-0.3,0.7-0.3,1c-1.2,0.1-1.7,1.7-1,2.5c-1.4,2.5-1.9,5.1-0.7,7.2
|
|
1475
|
+
c-0.9,1.5-1.6,3.1-1.7,4.9c0,0.2,0,0.3,0,0.5c-2,1.2-1.8,4.7,0.6,5.4c-0.1,0.4-0.1,0.8-0.1,1.2c-1,1.1-1.1,2.9-0.2,4.1
|
|
1476
|
+
c-0.7,1.3-0.4,3.2,0.8,4c-1.4,1.3-1.2,3.8,0.4,4.8c0,0.3,0,0.5,0,0.8c-0.3,1-0.1,2.1,0.5,2.9c0.1,0.2,0.1,0.5,0.2,0.7
|
|
1477
|
+
c-1.5,0.9-1.7,3.1-0.8,4.4c-1.4,1.1-1.4,3.6,0,4.8c0,0.2,0,0.5,0,0.7c-0.2,0.7-0.3,1.5-0.4,2.3c-1.1,0.8-1.3,2.4-0.9,3.7
|
|
1478
|
+
c-2.4,1-2.3,4.9,0.3,5.6c-0.3,0.7-0.4,1.6-0.2,2.3c-0.2,0.8-0.1,1.7,0.3,2.5c0.1,0.4,0.3,0.7,0.6,1c0,0.3,0,0.6,0,0.9
|
|
1479
|
+
c-1.6,1-1.7,3.5-0.4,4.8c-0.3,1-0.1,2.1,0.5,2.9c-0.6,1-0.5,2.4,0.2,3.4c-2.5,0.5-3,3.7-1.3,5.2c-1.3,0.9-1.5,2.8-0.8,4.1
|
|
1480
|
+
c-0.3,0.9-0.2,1.9,0.2,2.7c-0.3,0.9-0.4,1.9-0.3,2.8c0.1,0.9,0.3,1.9,0.7,2.8c-1.5,1.3-1.3,4.1,0.5,5c0.1,0.9,0.6,1.7,1.3,2.1
|
|
1481
|
+
c-0.1,0.2-0.2,0.4-0.3,0.6c-0.2,0.9-0.4,1.8-0.5,2.7c-1.5,0.9-1.7,3.1-0.7,4.5c-0.3,1.2,0,2.5,1,3.3c-1.1,0.7-1.6,2.1-1.3,3.4
|
|
1482
|
+
c-1.4,1.4-1.1,4.3,1,5c0.5,1.2,1,2.4,0.8,3.2c-0.1,0.3-0.1,0.6-0.1,0.8c-0.8,0.9-1,2.1-0.9,3.7c-1.1,1.3-1.7,2.4-1.3,4.5
|
|
1483
|
+
c0.2,0.9,0.5,1.8,0.9,2.6c-1,1-1.6,2.1-0.9,4.1c0.2,0.5,0.6,0.9,0.8,1.4c0,0.1-0.1,0.2-0.2,0.5c-0.1,0.6-0.2,1.3-0.2,1.9
|
|
1484
|
+
c-1.4,1.1-1.5,3.6-0.1,4.7c0,0.5-0.1,0.9-0.2,1.4c-0.2,1.4,0.4,2.5,1.3,3.1c-1.9,1.1-1.9,4.1,0,5.2c-0.2,0.7-0.2,1.4,0.1,2
|
|
1485
|
+
c-0.7,1.2-0.5,2.9,0.5,3.9c-0.4,1.2-0.1,2.6,0.9,3.4c-0.9,0.7-1.2,2-1,3.2c-3.2,0.5-3.1,5.6,0.2,5.9c-1.5,0.6-2.1,2.4-1.6,3.8
|
|
1486
|
+
c-1.2,1.5-0.7,4.2,1.3,4.8c-0.1,1.5,0.9,3.1,2.9,3.1c3.5,0,3.8-5,0.9-5.9c0-0.4,0-0.8-0.2-1.2c1.3-1.6,0.7-4.7-1.8-4.9
|
|
1487
|
+
c1.4-0.6,2-2.2,1.6-3.6c2.6-0.4,3-3.9,1.3-5.3c0.4-0.3,0.7-0.8,0.9-1.2c2.1-1.2,1.9-4.9-0.7-5.5c0.8-1.4,0.4-3.4-1-4.2
|
|
1488
|
+
c0.1-0.4,0.1-0.7,0.1-1.1c2.2-0.9,2.4-4.3,0.3-5.4c0.2-1.5,0.3-2.9,0.4-4.4c0-1.5,0.6-2.7,0.6-4.1c0-0.6-0.2-2-0.7-2.7
|
|
1489
|
+
c0.3-0.2,0.5-0.5,0.8-0.8c1.1-1.3,1.3-3.9-0.6-4.7c-1.9-0.8,0-1.2,0.5-2.5c0.2-0.6,0.2-1,0.2-1.6c0-0.1,0-0.1,0-0.2
|
|
1490
|
+
c2.2-0.9,2.6-4.1,1-5.3c0-0.7-0.2-1.4-0.4-2.2c-0.8-3.3-0.5-4,0.8-7c1.4-3.3-0.5-5.5-1-8.2c0-0.1,0-0.1,0-0.2
|
|
1491
|
+
c0.6-0.1,1.2-0.2,1.9-0.5c1.8-0.7,2.8-2.6,1.8-4.4c-1.2-2-2.3-4-3.5-6.1c-1.7-3-2-4.9-1.2-8.2c1.1-4.3,1.2-8.9,1.7-13.3
|
|
1492
|
+
c0.4-4.1-0.6-7.6,0.1-11.6c0.7-3.9-1.6-7.1-1.3-11.1c0.3-3.7,3.8-6.9,3.1-10.5c-0.3-1.6-1.3-3.1-1.9-4.6c-1.3-3.6-0.6-5.1,0.4-8.4
|
|
1493
|
+
c1.1-3.5-1.1-4.3-1.9-7.3c-0.3-1.3,0.3-2.9,0.1-4.3c-0.5-2.9-0.4-4,1.5-6.7c0.9-1.3,0.2-3.3-1.1-4.1c0.3-0.6,0.6-1.1,0.9-1.7
|
|
1494
|
+
c0.9-1.4,0.4-2.7-0.5-3.6c1-0.2,1.8-0.7,3,0c1.3,0.8,2.6-0.7,2.1-1.9c0.2-0.2,0.4-0.5,0.4-0.9c0,0,0,0,0.1,0c0.1,0,0.2,0,0.3,0
|
|
1495
|
+
c1.1,0,1.5-0.9,1.4-1.7c0.2,0.1,0.5,0.2,0.8,0.2c0.2,0,0.4,0,0.5-0.1c0.2,0.2,0.6,0.3,1,0.3c0.8,0,1.2-0.5,1.4-1c0,0,0.1,0,0.1,0
|
|
1496
|
+
c0.1,0,0.2,0,0.2,0c0.1,0,0.2,0,0.3,0c0.8,0,1.2-0.5,1.4-1c0.2,0.2,0.5,0.3,0.9,0.3c0.5,0,0.9-0.2,1.1-0.5c0.2,0.2,0.5,0.3,0.9,0.3
|
|
1497
|
+
c0.8,0,1.2-0.5,1.4-1c0.2,0,0.4-0.1,0.5-0.1c0,0,0,0,0,0c-0.4,0.8-0.6,1.6-0.9,2.4c-1.1,0.8-1.4,2.5-0.9,3.7
|
|
1498
|
+
c-0.5,0.8-0.6,1.8-0.3,2.7c-0.3,0.9-0.2,1.9,0.3,2.7c0.1,2.3,0.3,4.6,0.5,6.9c-0.7,1.2-0.6,2.8,0.4,3.8c0,0,0,0.1,0,0.1
|
|
1499
|
+
c-2.1,1-2.1,4.2-0.2,5.3c-0.5,0.9-0.6,2.1-0.1,3c-1.4,1.1-1.4,3.6,0,4.7c0.1,0.1,0.1,0.2,0.2,0.3c-1.1,0.9-1.2,2.6-0.6,3.9
|
|
1500
|
+
c-1,1.3-0.8,3.6,0.7,4.5c-1.1,1.1-1.1,3.2-0.1,4.3c-0.1,1-0.1,1.9-0.2,2.9c-0.4,0.8-0.5,1.7-0.2,2.6c0,0.3-0.1,0.6-0.1,1
|
|
1501
|
+
c-0.1,0.3-0.1,0.6-0.1,0.9c0,0.4-0.1,0.8-0.1,1.3c0,0,0,0.1,0,0.1c-0.2,0.4-0.3,0.8-0.3,1.2v0.2c0,0.3,0.1,0.6,0.2,0.9
|
|
1502
|
+
c-0.3,0.5-0.5,1-0.4,1.6c0,0.4,0,0.9,0,1.3c-0.5,0.3-1,0.9-1.2,1.6c-0.5,1.7-0.7,3-0.4,4.8c0.2,1.2,2,5,0.6,5.9
|
|
1503
|
+
c-1.8,1.2-2.1,4,0,5.2c0.5,0.2-0.3,4.9-0.1,5.6c0.1,0.4,0.2,0.8,0.3,1.2c-0.9,1.2-1.4,2.6-0.8,4.4c0.5,1.6,1.5,2.9,2.8,4.1
|
|
1504
|
+
c-0.3,0.2-0.5,0.3-0.8,0.5c-1.4,1-1.8,2.5-1.1,4.1c0.6,1.2,0.5,2.6,0.4,4c-2.5,1-2.4,5,0.4,5.7c0.2,0.6,0.4,1.2,0.7,1.8
|
|
1505
|
+
c0.2,0.3,0.4,0.6,0.6,0.8c-0.1,0.2-0.1,0.4-0.2,0.5c-0.8,0.1-1.6,0.6-2,1.4c-0.1,0.2-0.2,0.3-0.3,0.5c-0.6,1.1-0.5,2.6,0.3,3.5
|
|
1506
|
+
c-0.2,1,0,2.2,0.7,2.9c-0.8,1.1-0.8,2.9,0.2,3.9c0.1,0.6,0.3,1.1,0.4,1.8c0.4,1.9-1,4-0.6,5.9c-1.2,0.8-1.5,2.3-1.1,3.6
|
|
1507
|
+
c-0.1,0-0.2,0-0.3,0c-0.7,0.1-1.5,0.8-1.8,1.4c-0.4,0.6-0.5,1.6-0.3,2.3c0.2,0.7,0.7,1.4,1.4,1.8c0.8,0.4,1.5,0.4,2.3,0.3l0.8-0.1
|
|
1508
|
+
c0,0,0,0,0,0c-0.1,0.2-0.1,0.5-0.1,0.7v0.2c0,0.4,0.1,0.8,0.3,1.2c-0.3,0.6-0.5,1.3-0.4,2c-0.6,0.9-0.7,2.1-0.3,3.1
|
|
1509
|
+
c-0.2,0.4-0.4,0.9-0.4,1.4v0.2c0,0.7,0.2,1.3,0.6,1.8c-1.6,0.8-1.9,3-1.1,4.4c-1.1,1.3-0.9,3.6,0.5,4.6c-0.3,0.9-0.3,1.9,0.1,2.7
|
|
1510
|
+
c-0.4,0.8-0.5,1.7-0.2,2.5c-0.7,0.8-0.8,2.1-0.5,3.1c-0.3,0.6-0.5,1.2-0.4,1.9c0,0-0.1,0-0.1,0c-2.7,0-3.5,3-2.4,4.7
|
|
1511
|
+
c-0.7,1.7,0.1,4,2.3,4.2c-0.1,0.7,0.1,1.5,0.6,2.1c-0.1,0.1-0.1,0.1-0.1,0.2c-1.9,0.1-2.8,1.8-2.7,3.3c-2.9,0.6-3,5-0.3,5.8
|
|
1512
|
+
c0,0.9,0.3,1.9,1,2.5c-0.4,0.9-0.4,1.9,0,2.8c-1.3,0.8-1.7,2.8-0.9,4.1c-1.9,1.5-1.4,5.3,1.6,5.4c-0.4,0.5-0.6,1.1-0.6,1.8v0.5
|
|
1513
|
+
c0,0.7,0.3,1.5,0.8,2c-1.4,1-1.6,3.2-0.5,4.5c-0.1,0-0.2,0-0.3,0c-1.6,0-2.6,1.1-2.8,2.3c-0.1,0-0.3,0-0.4,0c-1.1,0-1.9,0.5-2.4,1.2
|
|
1514
|
+
c-0.1-1.4-1.1-2.7-2.9-2.7c-0.3,0-0.6,0.1-0.9,0.1c-0.5-0.4-1.1-0.6-1.9-0.6c-0.4,0-0.8,0.1-1.1,0.2c-0.3-0.2-0.8-0.4-1.2-0.4
|
|
1515
|
+
c0.1-0.7-0.1-1.4-0.4-1.9c1.8-0.6,2.4-2.7,1.7-4.2c1.3-1.4,1-4-0.8-4.8c-0.3-0.5-0.6-0.9-1.2-1.2c0-0.1,0-0.2,0-0.3
|
|
1516
|
+
c0.5-0.7,0.6-1.6,0.5-2.4c1.9-1.5,1.3-5.4-1.8-5.4c-2.2,0-3.1,1.9-2.8,3.6c-0.7,0.6-1.1,1.5-1.1,2.4c-0.9,1.4-0.6,3.6,1,4.4
|
|
1517
|
+
c-0.1,1.2,0.4,2.4,1.5,3c-0.9,1-1,2.6-0.3,3.7c-2.3,0.7-2.5,4-0.8,5.3c-1,1.8-0.1,4.5,2.5,4.5c0.9,0,1.5-0.3,2-0.8
|
|
1518
|
+
c0.3,0,0.6-0.1,0.9-0.2c0,0,0,0,0,0c-0.2,1.6,0.7,3.5,2.9,3.5c1.1,0,1.9-0.5,2.4-1.2c0,0,0,0,0,0c-0.2,1.6,0.7,3.4,2.9,3.4
|
|
1519
|
+
c0.4,0,0.7-0.1,1-0.2c0.4,0.8,1.3,1.4,2.5,1.4c1.1,0,1.8-0.5,2.3-1.1c0.3,0.1,0.5,0.1,0.8,0.1c0.2,1.3,1.1,2.5,2.9,2.5
|
|
1520
|
+
c2.9,0,3.6-3.3,2.2-5c1.1-1,1.2-2.8,0.4-4c1.9-1.3,1.6-4.7-0.8-5.4c0.1-0.7,0-1.5-0.3-2.1c0.6-1.1,0.5-2.6-0.4-3.6
|
|
1521
|
+
c0.1-0.2,0.1-0.4,0.1-0.7v0c1.2-1.2,1.2-3.3,0-4.5c0.5-0.6,0.7-1.5,0.6-2.3c1.9-0.9,2-3.8,0.5-5c2.5-0.7,2.7-4.3,0.7-5.5
|
|
1522
|
+
c0.3-0.5,0.5-1,0.5-1.6v-0.5c0-1.2-0.8-2.4-2-2.8c0.8-1.1,0.8-2.7,0.1-3.8c1.5-1.6,0.9-4.8-1.7-5.1c0.1-0.7-0.1-1.4-0.5-2
|
|
1523
|
+
c0.2-0.5,0.3-1,0.2-1.5c0,0,0.1,0,0.1,0c2.4,0,3.3-2.3,2.7-4.1c0.5-0.8,0.5-1.8,0.3-2.7c0.8-1,0.9-2.4,0.3-3.5
|
|
1524
|
+
c0.7-1.3,0.4-3.1-0.9-4c0.4-0.9,0.3-2.1-0.2-2.9c0.3-0.3,0.5-0.7,0.6-1.1c2.3-0.6,2.7-3.7,1.2-5.2c0-0.1,0-0.2,0-0.2v-0.2
|
|
1525
|
+
c0-0.5-0.1-1-0.4-1.4c0.2-0.6,0.3-1.2,0.2-1.8c0.5-0.8,0.7-1.9,0.4-2.9c0.3-0.5,0.5-1,0.5-1.7v-0.2c0-0.9-0.5-1.8-1.2-2.4
|
|
1526
|
+
c0.3-1.3-0.3-2.9-1.7-3.4c0.3-0.5,0.5-1.1,0.5-1.7c1.4-0.6,2.4-2.1,1.9-3.5c0.6-0.4,0.9-1.1,1.1-1.8c1.3-1.4,1-4.2-0.9-4.9
|
|
1527
|
+
c0-0.3-0.1-0.7,0-1c0.3-1.2,1.4-2,1.5-3.3c0.2-1.6-2.2-5.6-0.7-6.6c2.6-1.8,1-5.6-1.4-5.7c-1.2-2.6-0.4-5.5-0.7-8.4
|
|
1528
|
+
c0.9-0.5,1.9-0.8,3-1.1C134.7,142.4,135.5,138.6,133.1,137.5z"/>
|
|
1529
|
+
<linearGradient id="SVGID_100_" gradientUnits="userSpaceOnUse" x1="229.8594" y1="157.6599" x2="246.6921" y2="157.6599" gradientTransform="matrix(-1.4249 0 0 1 616.6492 0)">
|
|
1530
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1531
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1532
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1533
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1534
|
+
</linearGradient>
|
|
1535
|
+
<polygon class="st124" points="265.1,43.4 288.7,51.4 289.1,264 267.8,271.9 "/>
|
|
1536
|
+
<path class="st119" d="M259.5,138c1.9-0.8,3.3-1.9,4.4-3.4l-0.1-0.1c-1.4-1-2.3-3.4-0.6-4.7c1.2-1-0.2-4.5,0.1-6
|
|
1537
|
+
c0.1-0.6,0.3-1.2,0.5-1.6c-0.3-0.6-0.6-1.3-0.7-2.1c-0.5-2.8,1.1-5.6,0.9-8.4c-0.6-0.4-1.1-0.9-1.3-1.7c-0.3-1.3-0.5-2.7-0.3-4
|
|
1538
|
+
c0-0.3,0.1-0.6,0.2-0.9c-0.3-0.5-0.5-1-0.5-1.6v-0.2c0-0.4,0.1-0.8,0.3-1.2c-0.5-0.9-0.5-2-0.1-3c-0.3-0.6-0.4-1.2-0.3-1.8
|
|
1539
|
+
c-2-0.7-2.3-3.5-1-4.9c0-1.2,0.5-2.5,1.8-2.9c0.2-0.3,0.5-0.6,0.8-0.8c-1-1-1.1-2.6-0.5-3.8c-0.8-1-0.9-2.5-0.2-3.6
|
|
1540
|
+
c-1.3-1.2-1.3-3.5,0.1-4.6c0,0,0,0,0,0c-1.1-0.9-1.3-2.5-0.8-3.7c0,0,0-0.1,0-0.1c-1.3-1.4-0.9-4.1,1.1-4.9
|
|
1541
|
+
c-0.2-0.3-0.3-0.6-0.3-0.9c-0.7-0.8-0.9-2-0.6-3c-0.5-0.9-0.1-2.3,1.3-2.3c0.4,0,0.7,0.1,0.9,0.3c0-0.4,0-0.7,0.1-1.1
|
|
1542
|
+
c-1.7-0.3-1.6-2.9,0.3-3c0,0,0-0.1,0-0.1c-0.1,0-0.3,0.1-0.5,0.1c-1.2,0-1.6-1.1-1.4-1.9c-0.3-0.7-0.4-1.6-0.1-2.3
|
|
1543
|
+
c-0.2-0.7-0.2-1.5,0.1-2.2c-0.9-1.4-0.6-3.5,1-4.4c-0.1-0.3-0.2-0.6-0.4-0.9c-0.2-0.5-0.2-0.9,0-1.3c-0.4-0.9,0-2.2,1.3-2.2
|
|
1544
|
+
c0.3,0,0.5,0.1,0.7,0.1c0.2-0.5,0.6-0.9,1.4-0.9c0.8,0,1.2,0.5,1.4,1c0.4,0,0.8,0.2,1,0.5c0.2-0.2,0.5-0.3,0.9-0.3
|
|
1545
|
+
c0.8,0,1.2,0.5,1.4,1c0.2-0.2,0.5-0.3,0.9-0.3c0.1,0,0.2,0,0.3,0c0.1,0,0.2,0,0.3,0c0.2,0,0.3,0,0.5,0.1c0.2-0.1,0.3-0.1,0.5-0.1
|
|
1546
|
+
c0.7,0,1.2,0.4,1.3,0.9c0.2-0.1,0.4-0.1,0.7-0.1c1.1,0,1.6,0.9,1.4,1.7c0.2-0.1,0.5-0.2,0.8-0.2c0.1,0,0.2,0,0.2,0
|
|
1547
|
+
c0.1,0,0.2,0,0.3,0c0.9,0,1.4,0.6,1.4,1.3c0.7,0.1,1.1,0.6,1.2,1.2c0.3-0.1,0.7-0.1,1-0.1c0.5,0,0.9,0,1.4,0.1
|
|
1548
|
+
c0.2,0,0.4,0.1,0.7,0.2c0.5-0.5,1.2-0.8,2.1-0.5c0.5,0.2,1,0.6,1.3,1c0.2,0.3,0.3,0.7,0.4,1c1.2,0.1,1.8,1.7,1,2.5
|
|
1549
|
+
c1.4,2.5,2,5.1,0.7,7.2c0.9,1.5,1.6,3.1,1.7,4.9c0,0.2,0,0.3,0,0.5c2,1.2,1.8,4.7-0.6,5.4c0.1,0.4,0.1,0.8,0.1,1.2
|
|
1550
|
+
c1.1,1.1,1.1,2.9,0.2,4.1c0.7,1.3,0.4,3.2-0.8,4c1.4,1.3,1.3,3.8-0.4,4.8c0,0.3,0,0.5,0,0.8c0.3,1,0.1,2.1-0.5,2.9
|
|
1551
|
+
c-0.1,0.2-0.1,0.5-0.2,0.7c1.5,0.9,1.8,3.1,0.8,4.4c1.4,1.1,1.4,3.6,0,4.8c0,0.2,0,0.5,0,0.7c0.2,0.7,0.3,1.5,0.4,2.3
|
|
1552
|
+
c1.1,0.8,1.4,2.4,0.9,3.7c2.4,1,2.3,4.9-0.3,5.6c0.3,0.7,0.4,1.6,0.2,2.3c0.2,0.8,0.1,1.7-0.3,2.5c-0.1,0.4-0.3,0.7-0.6,1
|
|
1553
|
+
c0,0.3,0,0.6,0,0.9c1.6,1,1.7,3.5,0.4,4.8c0.3,1,0.1,2.1-0.5,2.9c0.6,1,0.5,2.4-0.2,3.4c2.5,0.5,3,3.7,1.4,5.2
|
|
1554
|
+
c1.3,0.9,1.5,2.8,0.8,4.1c0.3,0.9,0.2,1.9-0.2,2.7c0.3,0.9,0.4,1.9,0.3,2.8c-0.1,0.9-0.3,1.9-0.7,2.8c1.5,1.3,1.3,4.1-0.5,5
|
|
1555
|
+
c-0.1,0.9-0.6,1.7-1.3,2.1c0.1,0.2,0.2,0.4,0.3,0.6c0.2,0.9,0.4,1.8,0.5,2.7c1.5,0.9,1.7,3.1,0.7,4.5c0.3,1.2,0,2.5-1,3.3
|
|
1556
|
+
c1.2,0.7,1.6,2.1,1.3,3.4c1.4,1.4,1.1,4.3-1,5c-0.5,1.2-1.1,2.4-0.9,3.2c0.1,0.3,0.1,0.6,0.1,0.8c0.8,0.9,1,2.1,0.9,3.7
|
|
1557
|
+
c1.1,1.3,1.7,2.4,1.4,4.5c-0.2,0.9-0.5,1.8-0.9,2.6c1,1,1.6,2.1,0.9,4.1c-0.2,0.5-0.6,0.9-0.8,1.4c0,0.1,0.1,0.2,0.2,0.5
|
|
1558
|
+
c0.1,0.6,0.2,1.3,0.2,1.9c1.5,1.1,1.5,3.6,0.1,4.7c0,0.5,0.1,0.9,0.2,1.4c0.2,1.4-0.4,2.5-1.4,3.1c1.9,1.1,1.9,4.1,0,5.2
|
|
1559
|
+
c0.2,0.7,0.2,1.4-0.1,2c0.7,1.2,0.5,2.9-0.5,3.9c0.4,1.2,0.1,2.6-0.9,3.4c0.9,0.7,1.2,2,1,3.2c3.2,0.5,3.2,5.6-0.2,5.9
|
|
1560
|
+
c1.6,0.6,2.1,2.4,1.7,3.8c1.2,1.5,0.8,4.2-1.4,4.8c0.1,1.5-0.9,3.1-2.9,3.1c-3.6,0-3.9-5-0.9-5.9c0-0.4,0-0.8,0.2-1.2
|
|
1561
|
+
c-1.3-1.6-0.7-4.7,1.8-4.9c-1.4-0.6-2-2.2-1.7-3.6c-2.6-0.4-3.1-3.9-1.3-5.3c-0.4-0.3-0.7-0.8-0.9-1.2c-2.1-1.2-1.9-4.9,0.7-5.5
|
|
1562
|
+
c-0.8-1.4-0.4-3.4,1-4.2c-0.1-0.4-0.1-0.7-0.1-1.1c-2.3-0.9-2.4-4.3-0.3-5.4c-0.2-1.5-0.3-2.9-0.4-4.4c0-1.5-0.6-2.7-0.6-4.1
|
|
1563
|
+
c0-0.6,0.2-2,0.7-2.7c-0.3-0.2-0.5-0.5-0.8-0.8c-1.2-1.3-1.3-3.9,0.6-4.7c1.9-0.8,0-1.2-0.5-2.5c-0.2-0.6-0.2-1-0.2-1.6
|
|
1564
|
+
c0-0.1,0-0.1,0-0.2c-2.2-0.9-2.6-4.1-1-5.3c0-0.7,0.2-1.4,0.4-2.2c0.8-3.3,0.5-4-0.8-7c-1.4-3.3,0.5-5.5,1-8.2c0-0.1,0-0.1,0-0.2
|
|
1565
|
+
c-0.6-0.1-1.2-0.2-1.9-0.5c-1.8-0.7-2.8-2.6-1.8-4.4c1.2-2,2.3-4,3.5-6.1c1.7-3,2.1-4.9,1.2-8.2c-1.1-4.3-1.2-8.9-1.7-13.3
|
|
1566
|
+
c-0.5-4.1,0.6-7.6-0.1-11.6c-0.7-3.9,1.6-7.1,1.3-11.1c-0.3-3.7-3.8-6.9-3.1-10.5c0.3-1.6,1.3-3.1,1.9-4.6c1.3-3.6,0.6-5.1-0.4-8.4
|
|
1567
|
+
c-1.1-3.5,1.1-4.3,1.9-7.3c0.3-1.3-0.3-2.9-0.1-4.3c0.5-2.9,0.4-4-1.5-6.7c-0.9-1.3-0.3-3.3,1.1-4.1c-0.3-0.6-0.6-1.1-0.9-1.7
|
|
1568
|
+
c-0.9-1.4-0.4-2.7,0.5-3.6c-1-0.2-1.9-0.7-3,0c-1.4,0.8-2.6-0.7-2.2-1.9c-0.2-0.2-0.4-0.5-0.4-0.9c0,0,0,0-0.1,0c-0.1,0-0.2,0-0.3,0
|
|
1569
|
+
c-1.1,0-1.6-0.9-1.4-1.7c-0.2,0.1-0.5,0.2-0.8,0.2c-0.2,0-0.4,0-0.5-0.1c-0.2,0.2-0.6,0.3-1,0.3c-0.8,0-1.2-0.5-1.4-1
|
|
1570
|
+
c0,0-0.1,0-0.1,0c-0.1,0-0.2,0-0.3,0c-0.1,0-0.2,0-0.3,0c-0.8,0-1.2-0.5-1.4-1c-0.2,0.2-0.5,0.3-0.9,0.3c-0.5,0-0.9-0.2-1.1-0.5
|
|
1571
|
+
c-0.2,0.2-0.5,0.3-0.9,0.3c-0.8,0-1.2-0.5-1.4-1c-0.2,0-0.4-0.1-0.5-0.1c0,0,0,0,0,0c0.4,0.8,0.6,1.6,0.9,2.4
|
|
1572
|
+
c1.2,0.8,1.5,2.5,0.9,3.7c0.5,0.8,0.6,1.8,0.4,2.7c0.3,0.9,0.2,1.9-0.3,2.7c-0.1,2.3-0.3,4.6-0.5,6.9c0.7,1.2,0.6,2.8-0.4,3.8
|
|
1573
|
+
c0,0,0,0.1,0,0.1c2.1,1,2.1,4.2,0.2,5.3c0.5,0.9,0.6,2.1,0.1,3c1.4,1.1,1.4,3.6,0,4.7c-0.1,0.1-0.1,0.2-0.2,0.3
|
|
1574
|
+
c1.1,0.9,1.3,2.6,0.6,3.9c1.1,1.3,0.8,3.6-0.7,4.5c1.1,1.1,1.1,3.2,0.1,4.3c0.1,1,0.1,1.9,0.2,2.9c0.4,0.8,0.5,1.7,0.2,2.6
|
|
1575
|
+
c0,0.3,0.1,0.6,0.1,1c0.1,0.3,0.1,0.6,0.1,0.9c0,0.4,0.1,0.8,0.1,1.3c0,0,0,0.1,0,0.1c0.2,0.4,0.3,0.8,0.3,1.2v0.2
|
|
1576
|
+
c0,0.3-0.1,0.6-0.2,0.9c0.3,0.5,0.5,1,0.4,1.6c0,0.4,0,0.9,0,1.3c0.5,0.3,1,0.9,1.2,1.6c0.5,1.7,0.7,3,0.4,4.8c-0.2,1.2-2,5-0.6,5.9
|
|
1577
|
+
c1.8,1.2,2.1,4,0,5.2c-0.5,0.2,0.3,4.9,0.1,5.6c-0.1,0.4-0.2,0.8-0.3,1.2c1,1.2,1.4,2.6,0.9,4.4c-0.5,1.6-1.5,2.9-2.8,4.1
|
|
1578
|
+
c0.3,0.2,0.5,0.3,0.8,0.5c1.4,1,1.8,2.5,1.1,4.1c-0.6,1.2-0.5,2.6-0.4,4c2.5,1,2.4,5-0.4,5.7c-0.2,0.6-0.4,1.2-0.7,1.8
|
|
1579
|
+
c-0.2,0.3-0.4,0.6-0.6,0.8c0.1,0.2,0.1,0.4,0.2,0.5c0.8,0.1,1.6,0.6,2,1.4c0.1,0.2,0.2,0.3,0.3,0.5c0.6,1.1,0.5,2.6-0.3,3.5
|
|
1580
|
+
c0.2,1,0,2.2-0.7,2.9c0.8,1.1,0.8,2.9-0.2,3.9c-0.1,0.6-0.3,1.1-0.4,1.8c-0.4,1.9,1,4,0.6,5.9c1.2,0.8,1.5,2.3,1.1,3.6
|
|
1581
|
+
c0.1,0,0.2,0,0.3,0c0.7,0.1,1.5,0.8,1.8,1.4c0.4,0.6,0.5,1.6,0.3,2.3c-0.2,0.7-0.7,1.4-1.4,1.8c-0.8,0.4-1.5,0.4-2.3,0.3l-0.8-0.1
|
|
1582
|
+
c0,0,0,0,0,0c0.1,0.2,0.1,0.5,0.1,0.7v0.2c0,0.4-0.1,0.8-0.3,1.2c0.3,0.6,0.5,1.3,0.4,2c0.6,0.9,0.7,2.1,0.3,3.1
|
|
1583
|
+
c0.2,0.4,0.4,0.9,0.4,1.4v0.2c0,0.7-0.2,1.3-0.7,1.8c1.6,0.8,2,3,1.1,4.4c1.1,1.3,0.9,3.6-0.5,4.6c0.3,0.9,0.3,1.9-0.1,2.7
|
|
1584
|
+
c0.4,0.8,0.5,1.7,0.2,2.5c0.7,0.8,0.8,2.1,0.5,3.1c0.3,0.6,0.5,1.2,0.4,1.9c0,0,0.1,0,0.1,0c2.8,0,3.6,3,2.4,4.7
|
|
1585
|
+
c0.7,1.7-0.1,4-2.3,4.2c0.1,0.7-0.1,1.5-0.6,2.1c0.1,0.1,0.1,0.1,0.1,0.2c1.9,0.1,2.8,1.8,2.7,3.3c3,0.6,3.1,5,0.3,5.8
|
|
1586
|
+
c0,0.9-0.3,1.9-1.1,2.5c0.4,0.9,0.4,1.9,0,2.8c1.4,0.8,1.7,2.8,1,4.1c1.9,1.5,1.4,5.3-1.6,5.4c0.4,0.5,0.6,1.1,0.6,1.8v0.5
|
|
1587
|
+
c0,0.7-0.3,1.5-0.8,2c1.4,1,1.6,3.2,0.5,4.5c0.1,0,0.2,0,0.3,0c1.6,0,2.6,1.1,2.8,2.3c0.1,0,0.3,0,0.4,0c1.1,0,1.9,0.5,2.4,1.2
|
|
1588
|
+
c0.1-1.4,1.1-2.7,2.9-2.7c0.3,0,0.6,0.1,0.9,0.1c0.5-0.4,1.1-0.6,1.9-0.6c0.4,0,0.8,0.1,1.1,0.2c0.3-0.2,0.8-0.4,1.3-0.4
|
|
1589
|
+
c-0.1-0.7,0.1-1.4,0.4-1.9c-1.8-0.6-2.4-2.7-1.7-4.2c-1.3-1.4-1-4,0.8-4.8c0.3-0.5,0.7-0.9,1.2-1.2c0-0.1,0-0.2,0-0.3
|
|
1590
|
+
c-0.5-0.7-0.6-1.6-0.5-2.4c-1.9-1.5-1.3-5.4,1.9-5.4c2.2,0,3.2,1.9,2.9,3.6c0.7,0.6,1.1,1.5,1.1,2.4c0.9,1.4,0.6,3.6-1,4.4
|
|
1591
|
+
c0.1,1.2-0.4,2.4-1.5,3c0.9,1,1,2.6,0.3,3.7c2.3,0.7,2.6,4,0.8,5.3c1,1.8,0.1,4.5-2.5,4.5c-0.9,0-1.5-0.3-2-0.8
|
|
1592
|
+
c-0.3,0-0.6-0.1-0.9-0.2c0,0,0,0,0,0c0.2,1.6-0.7,3.5-2.9,3.5c-1.1,0-1.9-0.5-2.4-1.2c0,0,0,0,0,0c0.2,1.6-0.7,3.4-2.9,3.4
|
|
1593
|
+
c-0.4,0-0.7-0.1-1-0.2c-0.5,0.8-1.3,1.4-2.5,1.4c-1.1,0-1.9-0.5-2.3-1.1c-0.3,0.1-0.5,0.1-0.8,0.1c-0.2,1.3-1.1,2.5-2.9,2.5
|
|
1594
|
+
c-2.9,0-3.6-3.3-2.2-5c-1.1-1-1.2-2.8-0.4-4c-1.9-1.3-1.6-4.7,0.8-5.4c-0.1-0.7,0-1.5,0.3-2.1c-0.6-1.1-0.5-2.6,0.4-3.6
|
|
1595
|
+
c-0.1-0.2-0.1-0.4-0.1-0.7v0c-1.2-1.2-1.2-3.3,0-4.5c-0.5-0.6-0.7-1.5-0.7-2.3c-1.9-0.9-2-3.8-0.5-5c-2.5-0.7-2.7-4.3-0.7-5.5
|
|
1596
|
+
c-0.3-0.5-0.5-1-0.5-1.6v-0.5c0-1.2,0.9-2.4,2-2.8c-0.8-1.1-0.8-2.7-0.1-3.8c-1.5-1.6-0.9-4.8,1.7-5.1c-0.1-0.7,0.1-1.4,0.5-2
|
|
1597
|
+
c-0.2-0.5-0.3-1-0.2-1.5c0,0-0.1,0-0.1,0c-2.4,0-3.4-2.3-2.7-4.1c-0.5-0.8-0.6-1.8-0.3-2.7c-0.8-1-0.9-2.4-0.3-3.5
|
|
1598
|
+
c-0.7-1.3-0.4-3.1,0.9-4c-0.4-0.9-0.3-2.1,0.2-2.9c-0.3-0.3-0.5-0.7-0.6-1.1c-2.4-0.6-2.8-3.7-1.2-5.2c0-0.1,0-0.2,0-0.2v-0.2
|
|
1599
|
+
c0-0.5,0.1-1,0.4-1.4c-0.2-0.6-0.3-1.2-0.2-1.8c-0.6-0.8-0.7-1.9-0.4-2.9c-0.3-0.5-0.5-1-0.5-1.7v-0.2c0-0.9,0.5-1.8,1.2-2.4
|
|
1600
|
+
c-0.3-1.3,0.3-2.9,1.7-3.4c-0.3-0.5-0.5-1.1-0.5-1.7c-1.4-0.6-2.4-2.1-1.9-3.5c-0.6-0.4-0.9-1.1-1.1-1.8c-1.4-1.4-1-4.2,0.9-4.9
|
|
1601
|
+
c0-0.3,0.1-0.7,0-1c-0.3-1.2-1.4-2-1.5-3.3c-0.2-1.6,2.2-5.6,0.7-6.6c-2.6-1.8-1-5.6,1.4-5.7c1.2-2.6,0.5-5.5,0.7-8.4
|
|
1602
|
+
c-0.9-0.5-1.9-0.8-3-1.1C257.9,142.9,257,139.1,259.5,138z"/>
|
|
1603
|
+
<linearGradient id="SVGID_101_" gradientUnits="userSpaceOnUse" x1="268.517" y1="129.64" x2="259.2375" y2="129.64">
|
|
1604
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1605
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1606
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1607
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1608
|
+
</linearGradient>
|
|
1609
|
+
<path class="st125" d="M265.6,121.1c-1.6,0-2.6,1.1-2.8,2.3c-1.5,0.6-2.1,2.2-1.7,3.7c-0.3,0.9-0.3,1.9,0.1,2.7
|
|
1610
|
+
c-0.4,0.8-0.4,1.7-0.2,2.5c-2.7,1-2.4,5.8,1.1,5.8c1.4,0,2.3-0.8,2.7-1.9c1.9-0.5,2.5-2.8,1.7-4.3c0.1-0.7,0-1.5-0.3-2.1
|
|
1611
|
+
c0.3-0.7,0.4-1.6,0.2-2.3c0.1-0.2,0.1-0.4,0.2-0.6C269.4,125.9,269.1,121.1,265.6,121.1z"/>
|
|
1612
|
+
<linearGradient id="SVGID_102_" gradientUnits="userSpaceOnUse" x1="266.516" y1="149.14" x2="260.1125" y2="149.14">
|
|
1613
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1614
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1615
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1616
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1617
|
+
</linearGradient>
|
|
1618
|
+
<path class="st126" d="M265.7,151.1c0.5-1.2,0.2-2.7-0.8-3.5c2.1-1.4,1.6-5.5-1.6-5.5c-3.1,0-3.7,3.8-1.9,5.3
|
|
1619
|
+
c-1.5,1-1.7,3.4-0.4,4.7c-0.7,1.8,0.2,4.2,2.7,4.2C266.6,156.3,267.3,152.7,265.7,151.1z"/>
|
|
1620
|
+
<path class="st119" d="M145,38.6c-0.6,0-1,0.1-1.4,0.4c-0.1,0-0.2,0-0.2,0c-1.1,0-1.9,0.5-2.4,1.3c-0.4-0.9-1.3-1.6-2.6-1.6
|
|
1621
|
+
c-0.6,0-1.1,0.2-1.6,0.4c-0.2-0.1-0.5-0.1-0.8-0.1c-1.1,0-1.9,0.5-2.4,1.3c-0.4-0.9-1.3-1.6-2.6-1.6c-1.6,0-2.5,1-2.8,2.1
|
|
1622
|
+
c-0.3-0.1-0.6-0.1-0.9-0.1c-3.9,0-3.9,6,0,6c1.6,0,2.5-1,2.8-2.1c0.3,0.1,0.6,0.1,0.9,0.1c1.1,0,1.9-0.5,2.4-1.3
|
|
1623
|
+
c0.4,0.9,1.3,1.6,2.6,1.6c0.6,0,1.1-0.2,1.6-0.4c0.2,0.1,0.5,0.1,0.8,0.1c1.1,0,1.9-0.5,2.4-1.3c0.4,0.9,1.3,1.6,2.6,1.6
|
|
1624
|
+
c0.6,0,1-0.1,1.4-0.4c0.1,0,0.2,0,0.2,0C148.9,44.6,148.9,38.6,145,38.6z"/>
|
|
1625
|
+
<path class="st119" d="M200.1,35.8c-4.6-0.9-8.7,1.2-13.4,0.3c-4.3-0.9-7.3,1.3-11.5,0.7c-1.5-0.2-2.9-0.6-4.4-0.1
|
|
1626
|
+
c-1.2,0.4-2.4,1.8-3.2,1.9c-1.3,0.1-3.5-1.4-5-1.4c-1.6-0.1-3,0.3-4.5,0.8c-0.4-0.2-0.9-0.4-1.4-0.4c-1.2,0-2,0.6-2.4,1.3
|
|
1627
|
+
c-0.5-0.6-1.2-1-2.2-1c-3.9,0-3.9,6,0,6c1.2,0,2-0.6,2.4-1.3c0.4,0.5,1,0.9,1.9,1c0.4,0.3,0.8,0.4,1.3,0.5c0.3,0.1,0.7,0.2,1.1,0.2
|
|
1628
|
+
c0.9,0,1.6-0.3,2-0.8c3.5-0.6,6,2.3,9.4,1.1c1.8-0.7,1.9-1.8,4.2-1.8c1.3,0,2.5,0.7,3.9,0.7c1.2,0,2.1-0.4,3.2-0.7
|
|
1629
|
+
c2.2-0.6,3.5-0.8,5.8-0.3c3.9,0.8,7.5-1.5,11.3-0.8C202.3,42.3,203.9,36.5,200.1,35.8z"/>
|
|
1630
|
+
<polygon class="st121" points="190.9,127.6 191.3,222.8 192.7,177.8 "/>
|
|
1631
|
+
<linearGradient id="SVGID_103_" gradientUnits="userSpaceOnUse" x1="102.3499" y1="157.7086" x2="290.5422" y2="157.7086">
|
|
1632
|
+
<stop offset="0" style="stop-color:#E5F7FF"/>
|
|
1633
|
+
<stop offset="0.2704" style="stop-color:#EEF7FF"/>
|
|
1634
|
+
<stop offset="0.4286" style="stop-color:#E4F7FF"/>
|
|
1635
|
+
<stop offset="1" style="stop-color:#EEF7FF"/>
|
|
1636
|
+
</linearGradient>
|
|
1637
|
+
<path class="st127" d="M289.1,194.2c0-0.6-0.1-1.3-0.2-1.9c0-0.3-0.1-0.4-0.1-0.5c0.2-0.5,0.6-0.9,0.7-1.4c0.6-2,0.1-3.1-0.8-4
|
|
1638
|
+
c0.4-0.8,0.7-1.7,0.8-2.6c0.3-2.1-0.2-3.2-1.2-4.5c0.1-1.5-0.1-2.7-0.8-3.6c0-0.3,0-0.5-0.1-0.8c-0.2-0.7,0.3-1.9,0.8-3.1
|
|
1639
|
+
c1.9-0.7,2.2-3.5,0.9-4.9c0.3-1.2-0.1-2.7-1.1-3.3c0.9-0.7,1.2-2,0.9-3.2c0.9-1.3,0.7-3.5-0.6-4.4c-0.1-0.9-0.3-1.8-0.5-2.7
|
|
1640
|
+
c0-0.2-0.1-0.4-0.2-0.6c0.7-0.5,1.1-1.2,1.2-2.1c1.6-0.9,1.8-3.7,0.5-4.9c0.3-0.9,0.5-1.8,0.6-2.7c0.1-1-0.1-1.9-0.3-2.8
|
|
1641
|
+
c0.4-0.8,0.4-1.8,0.2-2.6c0.7-1.3,0.5-3.1-0.7-4c1.4-1.4,1-4.7-1.2-5.1c0.6-1,0.6-2.3,0.1-3.3c0.6-0.8,0.7-1.9,0.4-2.9
|
|
1642
|
+
c1.2-1.2,1.1-3.7-0.4-4.7c0-0.3,0-0.6,0-0.8c0.2-0.3,0.4-0.6,0.5-0.9c0.4-0.7,0.5-1.6,0.3-2.4c0.2-0.7,0.1-1.6-0.2-2.3
|
|
1643
|
+
c2.3-0.7,2.4-4.6,0.3-5.5c0.4-1.2,0.2-2.8-0.8-3.6c-0.1-0.8-0.2-1.5-0.4-2.2c0-0.2,0-0.5,0-0.7c1.2-1.1,1.2-3.6,0-4.7
|
|
1644
|
+
c0.9-1.3,0.6-3.5-0.7-4.3c0.1-0.2,0.1-0.5,0.2-0.7c0.5-0.8,0.7-1.8,0.5-2.8c0-0.3,0-0.5,0-0.8c1.5-1,1.6-3.5,0.4-4.7
|
|
1645
|
+
c1.1-0.9,1.4-2.7,0.7-4c0.8-1.2,0.8-3-0.2-4c0-0.4-0.1-0.8-0.1-1.2c2.1-0.7,2.3-4.2,0.5-5.3c0-0.2,0-0.3,0-0.5
|
|
1646
|
+
c-0.1-1.8-0.7-3.3-1.5-4.8c1.1-2.1,0.6-4.7-0.6-7.1c0.7-0.8,0.2-2.4-0.9-2.5c-0.1-0.4-0.1-0.7-0.3-1c-0.3-0.5-0.7-0.8-1.2-1
|
|
1647
|
+
c-0.8-0.3-1.4-0.1-1.9,0.4c-0.2-0.1-0.4-0.2-0.6-0.2c-0.4-0.1-0.8-0.2-1.2-0.1c-0.3,0-0.6,0.1-0.9,0.1c-0.1-0.6-0.5-1.1-1.1-1.1
|
|
1648
|
+
c-0.1-0.7-0.5-1.3-1.3-1.3c-0.1,0-0.2,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.3,0-0.5,0.1-0.7,0.2c0.1-0.8-0.3-1.7-1.3-1.7
|
|
1649
|
+
c-0.2,0-0.4,0.1-0.6,0.1c-0.2-0.5-0.6-0.9-1.2-0.9c-0.2,0-0.3,0-0.5,0.1c-0.1,0-0.3-0.1-0.4-0.1c-0.1,0-0.2,0-0.2,0
|
|
1650
|
+
c-0.1,0-0.1,0-0.2,0c-0.3,0-0.6,0.1-0.8,0.3c-0.1-0.5-0.6-1-1.2-1c-0.3,0-0.6,0.1-0.8,0.3c-0.2-0.3-0.5-0.5-0.9-0.5
|
|
1651
|
+
c-0.1-0.5-0.6-1-1.2-1c-0.6,0-1,0.4-1.2,0.9c-0.2-0.1-0.4-0.1-0.6-0.1c-1.1,0-1.5,1.3-1.2,2.1c-0.2,0.4-0.2,0.8,0,1.3
|
|
1652
|
+
c0.1,0.3,0.2,0.6,0.3,0.8c-0.1,0.1-0.2,0.1-0.3,0.2c-0.2-0.5-0.3-1.1-0.3-1.6c0.1-0.8-0.2-1.5-0.6-2c0-0.2,0-0.4,0-0.6c0,0,0,0,0,0
|
|
1653
|
+
c0-0.2,0-0.4-0.1-0.5c0,0,0,0,0-0.1c0-0.2-0.1-0.3-0.2-0.5c0,0,0-0.1,0-0.1c-0.1-0.1-0.1-0.3-0.2-0.4c0,0-0.1-0.1-0.1-0.1
|
|
1654
|
+
c-0.1-0.1-0.2-0.2-0.3-0.3c0,0-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.1-0.3-0.2c-0.1,0-0.1-0.1-0.2-0.1c-0.1-0.1-0.3-0.1-0.4-0.1
|
|
1655
|
+
c-0.1,0-0.1,0-0.2-0.1c-0.2,0-0.5-0.1-0.7-0.1c-0.2,0-0.3,0-0.4,0c-0.4-0.9-1.3-1.5-2.6-1.5c-0.9,0-1.5,0.3-2,0.8
|
|
1656
|
+
c-0.3-0.6-0.8-1.1-1.4-1.3c-0.4-0.3-0.9-0.4-1.6-0.4c-1.2,0-2,0.5-2.4,1.3c-0.4-0.9-1.3-1.6-2.6-1.6c-0.2,0-0.5,0-0.7,0.1
|
|
1657
|
+
c-0.5-0.5-1.2-0.8-2.1-0.8c-1.5,0-2.4,0.9-2.7,2l-0.9-0.1c-0.4-1-1.3-1.7-2.6-1.7c-0.3,0-0.5,0-0.7,0.1c-0.5-0.4-1-0.6-1.8-0.6
|
|
1658
|
+
c-0.3,0-0.5,0-0.7,0.1c-0.5-0.4-1-0.6-1.8-0.6c-0.5,0-0.9,0.1-1.3,0.3c-0.4-0.3-1-0.5-1.7-0.5c-1.1,0-1.9,0.5-2.4,1.2
|
|
1659
|
+
c-0.1-1.4-1.1-2.7-2.9-2.7c-2,0-2.9,1.6-2.9,3.1l-1-0.1c-0.2-1.3-1.1-2.5-2.9-2.5c-1.5,0-2.4,0.9-2.8,2.1l-3-0.2
|
|
1660
|
+
c-0.4-1-1.3-1.9-2.7-1.9c-0.2,0-0.4,0-0.6,0.1c-0.4-1-1.3-1.8-2.7-1.8c-1.2,0-2,0.6-2.5,1.4c-0.2-0.1-0.5-0.1-0.8-0.1
|
|
1661
|
+
c-1,0-1.7,0.4-2.2,0.9c-0.3-0.1-0.6-0.2-1-0.2c-0.7,0-1.3,0.2-1.8,0.5c-0.1-0.3-0.2-0.6-0.3-1c-1.1-3.5-6.4-2.2-5.9,1.1
|
|
1662
|
+
c-0.9,0.1-1.6,0.6-2,1.2l-2.3,0.2c-0.5-0.8-1.3-1.4-2.5-1.4c-0.9,0-1.6,0.3-2.1,0.8c-0.3-0.1-0.6-0.2-0.9-0.2
|
|
1663
|
+
c-0.8,0-1.4,0.3-1.9,0.7c-0.4-0.2-0.8-0.3-1.3-0.3h-0.2c-0.4,0-0.7,0.1-1,0.2c-0.5-0.8-1.3-1.4-2.5-1.4c-1.5,0-2.4,0.9-2.7,1.9
|
|
1664
|
+
c-0.4,0.2-0.7,0.4-1,0.7l-1.1,0.1c-0.3-0.1-0.7-0.2-1.2-0.2c-0.5,0-1,0.1-1.3,0.3c-0.4-0.2-0.8-0.3-1.3-0.3c-0.7,0-1.3,0.2-1.7,0.5
|
|
1665
|
+
c-0.5-0.5-1.2-0.9-2.1-0.9c-0.7,0-1.3,0.2-1.7,0.5c-0.4-0.2-0.9-0.4-1.4-0.4c-0.4,0-0.7,0.1-1,0.2c-0.4-0.3-1-0.5-1.7-0.5
|
|
1666
|
+
c-1.1,0-1.8,0.5-2.3,1.1c-0.4-0.8-1.3-1.5-2.5-1.5c-1.3,0-2.2,0.7-2.6,1.7c-0.3-1.1-1.2-2-2.7-2c-1.1,0-1.8,0.5-2.3,1.1
|
|
1667
|
+
c-0.5-0.5-1.1-0.8-2-0.8c-1.5,0-2.4,0.9-2.7,2c-1.3-0.1-2.6-0.3-3.9-0.4c-0.5-0.1-0.9,0-1.3,0.1c-1.5-0.5-3.4-0.1-3.9,1.9
|
|
1668
|
+
c-0.1,0.4-0.2,0.8-0.3,1.2c-0.9-0.1-1.8,0.1-2.5,0.7c-0.2-0.3-0.5-0.6-1-0.6c-0.2,0-0.4,0.1-0.6,0.1c-0.2-0.5-0.6-0.9-1.2-0.9
|
|
1669
|
+
c-0.7,0-1.1,0.4-1.2,1c-0.4,0-0.7,0.2-0.9,0.5c-0.2-0.2-0.5-0.3-0.8-0.3c-0.7,0-1.1,0.5-1.2,1c-0.2-0.2-0.5-0.3-0.8-0.3
|
|
1670
|
+
c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0c-0.2,0-0.3,0-0.4,0.1c-0.1-0.1-0.3-0.1-0.5-0.1c-0.6,0-1,0.4-1.2,0.9
|
|
1671
|
+
c-0.2-0.1-0.4-0.1-0.6-0.1c-0.9,0-1.4,0.9-1.3,1.7c-0.2-0.1-0.4-0.2-0.7-0.2c-0.1,0-0.1,0-0.2,0c-0.1,0-0.1,0-0.2,0
|
|
1672
|
+
c-0.8,0-1.2,0.6-1.3,1.3c-0.6,0.1-1,0.6-1.1,1.1c-0.3-0.1-0.6-0.1-0.9-0.1c-0.4,0-0.8,0-1.2,0.1c-0.2,0-0.4,0.1-0.6,0.2
|
|
1673
|
+
c-0.5-0.5-1.1-0.8-1.8-0.4c-0.5,0.2-0.9,0.6-1.1,1c-0.2,0.3-0.3,0.7-0.3,1c-1.1,0.1-1.5,1.7-0.8,2.5c-1.2,2.4-1.7,5-0.6,7.1
|
|
1674
|
+
c-0.8,1.5-1.4,3-1.5,4.8c0,0.2,0,0.3,0,0.5c-1.8,1.2-1.6,4.6,0.5,5.3c0,0.4-0.1,0.8-0.1,1.2c-0.9,1.1-1,2.9-0.2,4
|
|
1675
|
+
c-0.6,1.3-0.4,3.1,0.7,4c-1.2,1.2-1.1,3.8,0.4,4.7c0,0.3,0,0.5,0,0.8c-0.2,0.9-0.1,2,0.5,2.8c0.1,0.2,0.1,0.5,0.2,0.7
|
|
1676
|
+
c-1.3,0.9-1.5,3-0.7,4.3c-1.3,1.1-1.3,3.5,0,4.7c0,0.2,0,0.5,0,0.7c-0.2,0.7-0.3,1.5-0.4,2.2c-0.9,0.8-1.2,2.4-0.8,3.6
|
|
1677
|
+
c-2.1,1-2,4.8,0.3,5.5c-0.3,0.7-0.3,1.5-0.1,2.3c-0.2,0.8-0.1,1.7,0.3,2.4c0.1,0.3,0.3,0.7,0.5,0.9c0,0.3,0,0.6,0,0.8
|
|
1678
|
+
c-1.4,1-1.5,3.5-0.4,4.7c-0.3,1-0.1,2.1,0.4,2.9c-0.5,1-0.4,2.4,0.1,3.3c-2.2,0.4-2.6,3.7-1.2,5.1c-1.1,0.9-1.3,2.7-0.7,4
|
|
1679
|
+
c-0.3,0.8-0.2,1.8,0.2,2.6c-0.2,0.9-0.4,1.8-0.3,2.8c0.1,0.9,0.3,1.8,0.6,2.7c-1.3,1.3-1.2,4,0.5,4.9c0.1,0.8,0.5,1.6,1.2,2.1
|
|
1680
|
+
c-0.1,0.2-0.2,0.4-0.2,0.6c-0.2,0.9-0.4,1.8-0.5,2.7c-1.3,0.9-1.5,3.1-0.6,4.4c-0.3,1.1,0,2.5,0.9,3.2c-1,0.7-1.4,2.1-1.1,3.3
|
|
1681
|
+
c-1.2,1.4-0.9,4.2,0.9,4.9c0.4,1.2,0.9,2.4,0.8,3.1c-0.1,0.3-0.1,0.6-0.1,0.8c-0.7,0.9-0.9,2-0.8,3.6c-1,1.3-1.5,2.4-1.2,4.5
|
|
1682
|
+
c0.1,0.9,0.4,1.8,0.8,2.6c-0.9,1-1.4,2-0.8,4c0.2,0.5,0.5,0.9,0.7,1.4c0,0.1-0.1,0.2-0.1,0.5c-0.1,0.6-0.2,1.3-0.2,1.9
|
|
1683
|
+
c-1.3,1.1-1.3,3.5-0.1,4.7c0,0.5-0.1,0.9-0.1,1.4c-0.2,1.4,0.4,2.5,1.2,3.1c-1.7,1-1.7,4,0,5.1c-0.2,0.6-0.1,1.4,0.1,2
|
|
1684
|
+
c-0.6,1.2-0.5,2.9,0.4,3.8c-0.3,1.2-0.1,2.5,0.8,3.3c-0.8,0.7-1.1,2-0.8,3.1c-2.8,0.5-2.8,5.5,0.2,5.8c-1.4,0.6-1.9,2.3-1.4,3.7
|
|
1685
|
+
c-1.1,1.5-0.7,4.1,1.2,4.7c-0.1,1.5,0.8,3.1,2.6,3.1c3.1,0,3.4-4.9,0.8-5.8c0-0.4,0-0.8-0.1-1.1c1.1-1.6,0.6-4.6-1.6-4.9
|
|
1686
|
+
c1.3-0.6,1.7-2.2,1.5-3.5c2.3-0.4,2.7-3.8,1.1-5.2c0.4-0.3,0.6-0.7,0.8-1.2c1.9-1.2,1.7-4.8-0.6-5.4c0.7-1.3,0.4-3.3-0.9-4.1
|
|
1687
|
+
c0.1-0.4,0.1-0.7,0.1-1.1c2-0.9,2.1-4.2,0.3-5.3c0.2-1.4,0.3-2.9,0.3-4.3c0-1.5,0.5-2.6,0.5-4.1c0-0.6-0.1-2-0.6-2.7
|
|
1688
|
+
c0.2-0.2,0.5-0.5,0.7-0.8c1-1.3,1.1-3.8-0.5-4.6c-1.7-0.8,0-1.2,0.4-2.4c0.2-0.5,0.2-1,0.2-1.5c0-0.1,0-0.1,0-0.2
|
|
1689
|
+
c1.9-0.9,2.3-4,0.9-5.2c0-0.7-0.1-1.3-0.3-2.2c-0.7-3.2-0.4-3.9,0.7-6.8c1.2-3.2-0.4-5.4-0.9-8c0,0,0-0.1,0-0.2
|
|
1690
|
+
c0.5-0.1,1.1-0.2,1.6-0.5c1.6-0.6,2.5-2.6,1.6-4.3c-1-2-2.1-4-3.1-6c-1.5-2.9-1.8-4.8-1-8.1c1-4.2,1.1-8.7,1.5-13
|
|
1691
|
+
c0.4-4-0.5-7.5,0.1-11.3c0.6-3.9-1.4-6.9-1.1-10.9c0.3-3.6,3.3-6.8,2.7-10.3c-0.3-1.6-1.2-3-1.7-4.5c-1.2-3.5-0.5-5,0.4-8.2
|
|
1692
|
+
c1-3.5-0.9-4.2-1.7-7.1c-0.3-1.3,0.3-2.9,0.1-4.2c-0.4-2.9-0.4-3.9,1.3-6.6c0.8-1.3,0.2-3.3-1-4c0.3-0.6,0.5-1.1,0.8-1.7
|
|
1693
|
+
c0.8-1.4,0.4-2.7-0.5-3.5c0.9-0.2,1.6-0.7,2.6,0c1.2,0.8,2.3-0.7,1.9-1.8c0.2-0.2,0.3-0.5,0.4-0.9c0,0,0,0,0,0c0.1,0,0.2,0,0.2,0
|
|
1694
|
+
c0.9,0,1.4-0.9,1.3-1.7c0.2,0.1,0.4,0.2,0.7,0.2c0.2,0,0.3,0,0.5-0.1c0.2,0.2,0.5,0.3,0.8,0.3c0.7,0,1.1-0.4,1.2-1c0,0,0.1,0,0.1,0
|
|
1695
|
+
c0.1,0,0.1,0,0.2,0c0.1,0,0.1,0,0.2,0c0.7,0,1.1-0.5,1.2-1c0.2,0.2,0.5,0.3,0.8,0.3c0.5,0,0.8-0.2,1-0.5c0.2,0.2,0.5,0.3,0.8,0.3
|
|
1696
|
+
c0.7,0,1.1-0.4,1.2-1c0.2,0,0.3-0.1,0.5-0.1c0,0,0,0,0,0c-0.3,0.8-0.6,1.6-0.8,2.4c-1,0.8-1.3,2.4-0.8,3.7c-0.5,0.8-0.6,1.8-0.3,2.7
|
|
1697
|
+
c-0.2,0.9-0.2,1.8,0.2,2.6c0.1,2.3,0.2,4.5,0.5,6.8c-0.6,1.2-0.5,2.8,0.3,3.8c0,0,0,0.1,0,0.1c-1.8,1-1.9,4.1-0.1,5.2
|
|
1698
|
+
c-0.5,0.9-0.5,2-0.1,3c-1.2,1.1-1.2,3.5,0,4.6c0,0.1,0.1,0.2,0.2,0.3c-0.9,0.9-1.1,2.6-0.5,3.8c-0.9,1.3-0.7,3.5,0.6,4.4
|
|
1699
|
+
c-1,1.1-1,3.1,0,4.2c0,0.9-0.1,1.9-0.2,2.8c-0.4,0.8-0.4,1.7-0.2,2.5c0,0.3,0,0.6-0.1,0.9c-0.1,0.3-0.1,0.6-0.1,0.9
|
|
1700
|
+
c0,0.4-0.1,0.8-0.1,1.2c0,0,0,0.1,0,0.1c-0.1,0.4-0.2,0.8-0.2,1.2v0.2c0,0.3,0.1,0.6,0.2,0.9c-0.3,0.4-0.4,1-0.4,1.5
|
|
1701
|
+
c0,0.4,0,0.8,0,1.3c-0.5,0.3-0.9,0.9-1.1,1.6c-0.5,1.7-0.6,2.9-0.4,4.7c0.1,1.2,1.7,4.9,0.5,5.8c-1.6,1.2-1.8,4,0,5.1
|
|
1702
|
+
c0.4,0.2-0.2,4.8-0.1,5.5c0.1,0.4,0.2,0.8,0.3,1.2c-0.8,1.2-1.2,2.6-0.7,4.3c0.4,1.5,1.4,2.9,2.5,4.1c-0.2,0.2-0.5,0.3-0.7,0.5
|
|
1703
|
+
c-1.3,1-1.6,2.5-1,4c0.5,1.2,0.5,2.5,0.4,3.9c-2.2,0.9-2.1,5,0.3,5.6c0.2,0.6,0.4,1.2,0.6,1.8c0.1,0.2,0.2,0.4,0.3,0.5
|
|
1704
|
+
c-0.2,0.3-0.3,0.6-0.5,1c-0.5,0.2-1,0.6-1.2,1.2c-0.1,0.2-0.1,0.3-0.2,0.5c-0.4,0.9-0.4,1.9-0.1,2.8c-1.8,6.2-2.5,12.8-2,19.2
|
|
1705
|
+
c0,0.2,0.1,0.5,0.1,0.7c-0.3,0.6-0.4,1.5-0.2,2.1c0.1,0.4,0.3,0.9,0.6,1.2c0.6,4,1.6,7.9,2.6,11.8c-0.9,1-1,2.7-0.4,3.8
|
|
1706
|
+
c-1,1.3-0.8,3.5,0.5,4.5c-0.3,0.9-0.3,1.9,0.1,2.7c-0.3,0.8-0.4,1.7-0.2,2.5c-0.6,0.8-0.7,2-0.4,3c-0.3,0.6-0.4,1.2-0.4,1.9
|
|
1707
|
+
c0,0-0.1,0-0.1,0c-2.4,0-3.1,2.9-2.1,4.7c-0.6,1.6,0.1,3.9,2,4.2c-0.1,0.7,0.1,1.5,0.5,2.1c0,0.1-0.1,0.1-0.1,0.2
|
|
1708
|
+
c-1.7,0.1-2.5,1.7-2.3,3.2c-2.6,0.5-2.7,4.9-0.2,5.7c0,0.9,0.3,1.9,0.9,2.5c-0.4,0.9-0.3,1.9,0,2.8c-1.2,0.8-1.5,2.7-0.8,4
|
|
1709
|
+
c-1.7,1.4-1.2,5.2,1.4,5.3c-0.3,0.5-0.5,1.1-0.5,1.7v0.5c0,0.7,0.3,1.4,0.7,2c-1.2,1-1.4,3.2-0.4,4.4c-0.1,0-0.2,0-0.3,0
|
|
1710
|
+
c-1.4,0-2.3,1-2.5,2.2c-0.1,0-0.2,0-0.4,0c-1,0-1.7,0.5-2.1,1.2c-0.1-1.4-0.9-2.7-2.5-2.7c-0.3,0-0.5,0.1-0.8,0.1
|
|
1711
|
+
c-0.4-0.4-1-0.6-1.6-0.6c-0.4,0-0.7,0.1-1,0.2c-0.3-0.2-0.7-0.4-1.1-0.4c0-0.7-0.1-1.3-0.4-1.9c1.6-0.5,2.1-2.6,1.5-4.1
|
|
1712
|
+
c1.1-1.4,0.9-3.9-0.7-4.8c-0.2-0.5-0.6-0.9-1-1.2c0-0.1,0-0.2,0-0.3c0.4-0.7,0.5-1.5,0.4-2.3c1.7-1.5,1.1-5.3-1.6-5.3
|
|
1713
|
+
c-1.9,0-2.8,1.9-2.5,3.6c-0.6,0.6-0.9,1.5-0.9,2.3c-0.8,1.4-0.5,3.5,0.9,4.3c-0.1,1.2,0.3,2.4,1.3,2.9c-0.8,1-0.9,2.5-0.3,3.7
|
|
1714
|
+
c-2,0.7-2.3,3.9-0.7,5.2c-0.8,1.7-0.1,4.5,2.2,4.5c0.8,0,1.3-0.3,1.8-0.8c0.3,0,0.5-0.1,0.8-0.2c0,0,0,0,0,0
|
|
1715
|
+
c-0.2,1.6,0.6,3.4,2.5,3.4c1,0,1.7-0.5,2.1-1.2c0,0,0,0,0,0c-0.2,1.6,0.7,3.4,2.5,3.4c0.3,0,0.6-0.1,0.9-0.2
|
|
1716
|
+
c0.4,0.8,1.1,1.4,2.2,1.4c0.9,0,1.6-0.5,2-1.1c0.2,0.1,0.5,0.1,0.7,0.1c0.2,1.3,1,2.5,2.5,2.5c0,0,0,0,0.1,0c-0.1,0.3-0.2,0.6-0.3,1
|
|
1717
|
+
c-0.9,1.8-0.1,4.5,2.5,4.5c0.5,0,1-0.1,1.4-0.3c0.6,1.2,1.3,2.3,2.3,3.4c2,2.1,4.8,0.3,5.1-2c0.2,0,0.4-0.1,0.5-0.2
|
|
1718
|
+
c0.5,0.6,1.2,1,2.2,1c0.9,0,1.5-0.3,2-0.8c0.5,0.5,1.1,0.8,2,0.8c1,0,1.8-0.4,2.2-1c0.5,0.3,1,0.5,1.8,0.5c1.4,0,2.3-0.8,2.7-1.9
|
|
1719
|
+
c0.4,1,1.3,1.7,2.6,1.7c1.2,0,2-0.6,2.5-1.4c0.5,0.6,1.2,1,2.2,1c0.4,0,0.8-0.1,1.1-0.2c0.5,0.4,1.1,0.7,1.9,0.7
|
|
1720
|
+
c0.7,0,1.3-0.2,1.8-0.6c0.2,0,0.3,0.1,0.5,0.1c0.1,0,0.2,0,0.3,0c0.2,0.9,0.8,1.7,2.1,1.9c2.8,0.5,6.7,2,9.5,1.5
|
|
1721
|
+
c0.7-0.1,1.4-0.4,2.1-0.7c0.7-0.1,1.3-0.4,1.7-0.9c0.1-0.1,0.3-0.2,0.4-0.2c0.4,1,1.3,1.7,2.6,1.7c0.6,0,1.2-0.2,1.6-0.5
|
|
1722
|
+
c0.5,0.4,1.1,0.6,1.6,0.8c2.8,0.9,6.5-0.2,9.3-0.7c0.9-0.1,1.4-0.5,1.8-1.1c0.8,0,1.5-0.2,2.1-0.7l5.1-0.5c0.3,1.1,1.2,2.1,2.7,2.3
|
|
1723
|
+
c1.8,0.2,3.1-0.2,4.5-1.4c0.1,0,0.3-0.4,0.6-0.8c0.4,1,1.3,1.7,2.6,1.7c0.9,0,1.6-0.3,2.1-0.9c3,1.7,5.1,0.4,8.5-0.7
|
|
1724
|
+
c1.7-0.6,3.4,0,5-0.3c0.5,0.7,1.2,1.2,2.4,1.2c1.3,0,2.1-0.7,2.6-1.6c0.2,0,0.4,0.1,0.7,0.1c0.7,0,1.3-0.2,1.7-0.5
|
|
1725
|
+
c0.5,0.5,1.1,0.8,2,0.8c1.1,0,1.9-0.5,2.4-1.2c1.4,0.1,2.7-0.1,4.1-0.5c0,0,0,0,0.1,0c0.3,0.1,0.7,0.2,1.2,0.2c0.2,0,0.3,0,0.4,0
|
|
1726
|
+
c0.4,0.2,0.8,0.3,1.3,0.3c2,0,2.9-1.6,2.9-3.1l0.8-0.1c0.3,1.2,1.2,2.2,2.8,2.2c0.2,0,0.4,0,0.6-0.1c0.2,0,0.4,0.1,0.6,0.1
|
|
1727
|
+
c1.3,0,2.1-0.6,2.5-1.5c0.4,0.4,0.8,0.7,1.4,0.9c0.7,0.1,1.4,0.2,2.1,0c0.7-0.2,1.2-0.5,1.8-1c0.6-0.4,0.9-1.4,0.9-2.1
|
|
1728
|
+
c0-0.1,0-0.2,0-0.4c0.1-0.1,0.2-0.1,0.3-0.2c0.3,0.2,0.8,0.3,1.2,0.3c1.5,0,2.4-1.2,2.6-2.5c0.3,0,0.5,0,0.7-0.1
|
|
1729
|
+
c0.4,0.7,1.1,1.1,2.1,1.1c1.1,0,1.8-0.6,2.2-1.4c0.3,0.1,0.6,0.2,0.9,0.2c1.9,0,2.7-1.8,2.6-3.4c0,0,0,0,0,0
|
|
1730
|
+
c0.4,0.7,1.1,1.2,2.1,1.2c1.9,0,2.8-1.8,2.6-3.4c0,0,0,0,0,0c0.2,0.1,0.5,0.2,0.8,0.2c0.4,0.5,1,0.8,1.8,0.8c2.4,0,3.1-2.7,2.2-4.5
|
|
1731
|
+
c1.6-1.3,1.3-4.5-0.7-5.2c0.6-1.1,0.5-2.7-0.3-3.7c1-0.6,1.4-1.8,1.3-2.9c1.4-0.8,1.7-3,0.9-4.3c0-0.9-0.3-1.8-0.9-2.3
|
|
1732
|
+
c0.3-1.6-0.6-3.6-2.5-3.6c-2.8,0-3.3,3.8-1.6,5.3c-0.1,0.8,0,1.7,0.4,2.3c0,0.1,0,0.2,0,0.3c-0.5,0.3-0.8,0.7-1.1,1.2
|
|
1733
|
+
c-1.6,0.8-1.9,3.4-0.7,4.8c-0.6,1.5-0.1,3.6,1.5,4.1c-0.3,0.6-0.4,1.2-0.4,1.9c-0.4,0.1-0.8,0.2-1.1,0.4c-0.3-0.1-0.6-0.2-1-0.2
|
|
1734
|
+
c-0.7,0-1.2,0.2-1.7,0.6c-0.2-0.1-0.5-0.1-0.8-0.1c-1.6,0-2.5,1.3-2.6,2.7c-0.4-0.7-1.1-1.2-2.1-1.2c-0.1,0-0.3,0-0.4,0
|
|
1735
|
+
c-0.2-1.2-1.1-2.2-2.5-2.2c-0.1,0-0.2,0-0.3,0c1-1.3,0.8-3.5-0.5-4.4c0.4-0.5,0.7-1.2,0.7-2v-0.5c0-0.7-0.2-1.3-0.5-1.7
|
|
1736
|
+
c2.7-0.1,3.2-3.9,1.4-5.3c0.6-1.3,0.4-3.2-0.8-4c0.4-0.8,0.4-1.9,0-2.8c0.7-0.6,1-1.5,0.9-2.5c2.5-0.8,2.4-5.2-0.2-5.7
|
|
1737
|
+
c0.1-1.5-0.7-3.1-2.4-3.2c0-0.1-0.1-0.1-0.1-0.2c0.4-0.6,0.5-1.3,0.5-2.1c2-0.2,2.6-2.5,2-4.2c1-1.7,0.3-4.7-2.1-4.7
|
|
1738
|
+
c0,0-0.1,0-0.1,0c0-0.7-0.1-1.3-0.4-1.9c0.3-1,0.2-2.2-0.4-3c0.2-0.8,0.2-1.7-0.2-2.5c0.4-0.8,0.4-1.8,0.1-2.7
|
|
1739
|
+
c1.3-1,1.5-3.2,0.5-4.5c0.8-1.4,0.5-3.5-1-4.3c0.4-0.5,0.6-1.1,0.6-1.8v-0.2c0-0.5-0.1-1-0.3-1.4c0.4-1,0.3-2.2-0.2-3.1
|
|
1740
|
+
c0.1-0.7,0-1.4-0.3-2c0.1-0.4,0.2-0.7,0.2-1.1v-0.2c0-0.2,0-0.5-0.1-0.7c0,0,0,0,0,0l0.7,0.1c0.8,0.1,1.4,0.1,2.1-0.3
|
|
1741
|
+
c0.6-0.4,1-1,1.2-1.8c0.2-0.7,0.1-1.6-0.3-2.3c-0.3-0.6-1-1.3-1.6-1.4c-0.1,0-0.2,0-0.3,0c0.4-1.2,0-2.8-1-3.5
|
|
1742
|
+
c0.3-1.9-0.9-3.9-0.6-5.8c0.1-0.6,0.3-1.2,0.4-1.7c0.8-1,0.9-2.7,0.1-3.8c0.7-0.7,0.9-1.9,0.6-2.9c0.7-0.9,0.8-2.3,0.3-3.4
|
|
1743
|
+
c-0.1-0.2-0.1-0.3-0.2-0.5c-0.4-0.8-1-1.2-1.8-1.4c0-0.2-0.1-0.4-0.2-0.5c0.2-0.2,0.4-0.5,0.5-0.8c0.3-0.6,0.5-1.2,0.6-1.8
|
|
1744
|
+
c2.4-0.6,2.5-4.6,0.3-5.6c-0.1-1.4-0.1-2.7,0.4-3.9c0.7-1.5,0.3-3.1-1-4c-0.2-0.2-0.5-0.3-0.7-0.5c1.1-1.2,2-2.5,2.5-4.1
|
|
1745
|
+
c0.5-1.7,0.1-3.1-0.8-4.3c0.1-0.4,0.2-0.8,0.3-1.2c0.1-0.7-0.5-5.3-0.1-5.5c1.9-1.1,1.6-3.9,0-5.1c-1.3-0.9,0.3-4.6,0.5-5.8
|
|
1746
|
+
c0.2-1.8,0.1-3-0.4-4.7c-0.2-0.8-0.6-1.3-1.1-1.6c0-0.4,0-0.8,0-1.3c0-0.6-0.1-1.1-0.4-1.5c0.1-0.3,0.2-0.6,0.2-0.9v-0.2
|
|
1747
|
+
c0-0.4-0.1-0.8-0.2-1.2c0,0,0-0.1,0-0.1c0-0.4-0.1-0.8-0.1-1.2c0-0.3,0-0.6-0.1-0.9c0-0.3,0-0.6-0.1-0.9c0.2-0.8,0.2-1.8-0.2-2.5
|
|
1748
|
+
c-0.1-0.9-0.1-1.9-0.2-2.8c1-1.1,0.9-3.1,0-4.2c1.3-0.9,1.6-3.1,0.6-4.4c0.6-1.2,0.4-2.9-0.5-3.8c0.1-0.1,0.1-0.2,0.2-0.3
|
|
1749
|
+
c1.2-1.1,1.2-3.5,0-4.6c0.4-0.9,0.4-2.1-0.1-3c1.7-1.1,1.7-4.3-0.1-5.2c0,0,0-0.1,0-0.1c0.8-1,1-2.6,0.3-3.8
|
|
1750
|
+
c0.2-2.3,0.4-4.5,0.5-6.8c0.4-0.8,0.5-1.8,0.3-2.6c0.2-0.9,0.1-1.9-0.3-2.7c0.5-1.2,0.2-2.9-0.8-3.7c-0.2-0.8-0.5-1.6-0.8-2.4
|
|
1751
|
+
c0,0,0,0,0,0c0.1,0.1,0.3,0.1,0.5,0.1c0.1,0.5,0.6,1,1.2,1c0.3,0,0.6-0.1,0.8-0.3c0.2,0.3,0.5,0.5,1,0.5c0.3,0,0.6-0.1,0.8-0.3
|
|
1752
|
+
c0.1,0.5,0.6,1,1.2,1c0.1,0,0.2,0,0.2,0c0.1,0,0.1,0,0.2,0c0,0,0.1,0,0.1,0c0.1,0.5,0.6,1,1.2,1c0.4,0,0.6-0.1,0.9-0.3
|
|
1753
|
+
c0.1,0.1,0.3,0.1,0.5,0.1c0.3,0,0.5-0.1,0.7-0.2c-0.1,0.8,0.3,1.7,1.3,1.7c0.1,0,0.2,0,0.2,0c0,0,0,0,0,0c0,0.3,0.2,0.6,0.4,0.9
|
|
1754
|
+
c-0.4,1.1,0.7,2.6,1.9,1.8c1-0.6,1.8-0.1,2.6,0c-0.8,0.8-1.2,2.1-0.5,3.5c0.3,0.6,0.5,1.1,0.8,1.7c-1.2,0.8-1.8,2.7-1,4
|
|
1755
|
+
c1.7,2.7,1.7,3.7,1.3,6.6c-0.2,1.4,0.4,3,0.1,4.2c-0.7,2.9-2.6,3.7-1.7,7.1c0.9,3.2,1.5,4.7,0.4,8.2c-0.5,1.5-1.4,2.9-1.7,4.5
|
|
1756
|
+
c-0.6,3.5,2.5,6.7,2.7,10.3c0.3,4-1.7,7.1-1.1,10.9c0.6,3.9-0.3,7.3,0.1,11.3c0.4,4.3,0.5,8.8,1.5,13c0.8,3.3,0.5,5.2-1,8.1l-3.1,6
|
|
1757
|
+
c-0.9,1.8,0,3.7,1.6,4.3c0.6,0.2,1.1,0.4,1.7,0.5c0,0.1,0,0.1,0,0.2c-0.5,2.6-2.2,4.8-0.9,8c1.1,2.9,1.4,3.6,0.7,6.8
|
|
1758
|
+
c-0.2,0.8-0.3,1.5-0.3,2.2c-1.4,1.2-1.1,4.3,0.9,5.2c0,0.1,0,0.1,0,0.2c0,0.6,0,1,0.2,1.5c0.4,1.2,2.1,1.6,0.4,2.4
|
|
1759
|
+
c-1.7,0.8-1.6,3.4-0.5,4.6c0.2,0.3,0.5,0.5,0.7,0.8c-0.5,0.7-0.6,2.1-0.6,2.7c0,1.4,0.5,2.6,0.5,4.1c0,1.5,0.1,2.9,0.3,4.3
|
|
1760
|
+
c-1.8,1.1-1.7,4.5,0.3,5.3c0,0.4,0,0.7,0.1,1.1c-1.3,0.8-1.6,2.8-0.9,4.1c-2.3,0.6-2.5,4.3-0.6,5.4c0.2,0.5,0.4,0.9,0.8,1.2
|
|
1761
|
+
c-1.6,1.4-1.2,4.8,1.2,5.2c-0.3,1.4,0.2,3,1.5,3.5c-2.2,0.3-2.8,3.3-1.6,4.9c-0.1,0.4-0.2,0.8-0.1,1.1c-2.6,0.8-2.4,5.8,0.8,5.8
|
|
1762
|
+
c1.8,0,2.6-1.6,2.6-3.1c1.9-0.6,2.3-3.3,1.2-4.7c0.4-1.4-0.1-3.2-1.5-3.7c3-0.3,3-5.3,0.2-5.8c0.2-1.1,0-2.4-0.9-3.1
|
|
1763
|
+
c0.9-0.8,1.1-2.2,0.8-3.3c0.9-1,1.1-2.6,0.4-3.8c0.2-0.6,0.2-1.3,0.1-2c1.6-1.1,1.6-4.1,0-5.1c0.8-0.6,1.4-1.7,1.2-3.1
|
|
1764
|
+
c-0.1-0.5-0.1-0.9-0.1-1.4C290.4,197.7,290.4,195.3,289.1,194.2z M128.8,119.5c0.2,1.8,0.2,3.5-0.2,5.4c0.1-0.7,0.2-1.4,0.1-1.9
|
|
1765
|
+
c-0.1-0.6-0.3-1.1-0.5-1.6C128.4,120.9,128.6,120.3,128.8,119.5z M126,220.4c0.1-0.7-0.1-1.4-0.4-2c0.2-0.5,0.2-1,0.2-1.5
|
|
1766
|
+
c0,0,0.1,0,0.1,0c0.6,0,1-0.2,1.4-0.4c0,0.3,0,0.7-0.1,1c-0.1,1.1-0.2,2.2-0.3,3.3C126.7,220.6,126.4,220.5,126,220.4z M127.5,255.2
|
|
1767
|
+
c0.5-1.1,0.4-2.6-0.3-3.5c0-0.2,0.1-0.4,0.1-0.7v0c1.1-1.1,1-3.3,0-4.4c0.5-0.6,0.6-1.5,0.6-2.3c0.5-0.3,0.9-0.8,1.1-1.4
|
|
1768
|
+
c0,0.3,0.1,0.5,0.1,0.8c-0.1,0.7-0.2,1.5-0.2,2.2c0,1,0.2,1.9,0.4,2.8C129.1,251.1,128.6,253.3,127.5,255.2
|
|
1769
|
+
C127.5,255.3,127.5,255.2,127.5,255.2z M128.6,266.9c0,0.2,0,0.3-0.1,0.5c-0.1-0.3-0.2-0.7-0.4-0.9c0.9-1,1.1-2.7,0.4-3.9
|
|
1770
|
+
c0.4,0,0.7-0.1,1-0.3C129.2,263.9,128.8,265.4,128.6,266.9z M134.6,190.8c-0.1,0-0.3,0.1-0.4,0.1c0.2-1,0.3-2,0.5-3L134.6,190.8z
|
|
1771
|
+
M135.8,125.1c-0.1,0-0.2,0-0.3,0c0.1-0.8,0.2-1.6,0.3-2.4L135.8,125.1z M136.2,101.8c-0.2-2.3-0.3-4.7,0.1-7c0-0.1,0-0.1,0-0.2
|
|
1772
|
+
L136.2,101.8z M136.6,82.1c-0.2-1.5-0.2-3-0.1-4.7c0.1-0.7,0.1-1.4,0.2-2.2L136.6,82.1z M136.9,66.1c-0.1-1-0.3-2-0.7-3
|
|
1773
|
+
c0.3-0.2,0.5-0.4,0.7-0.7L136.9,66.1z M137.2,50.2c-0.4-1.3-0.7-2.6-0.7-4c0.2,0,0.5,0.1,0.8,0.1L137.2,50.2z M251.9,81.2
|
|
1774
|
+
c0.4,10.4,0.7,20.9,0.9,31.3L251.9,81.2z M257,263.7c-0.1-3.1-0.2-6.3-0.1-9.4C257.2,257.2,257.5,261.1,257,263.7z M258.3,95.4
|
|
1775
|
+
c0-1.2-0.1-2.4-0.1-3.6c0.1-0.1,0.2-0.1,0.2-0.2C258.4,92.9,258.4,94.1,258.3,95.4z M259.1,187.6c0-0.5-0.1-1-0.1-1.5
|
|
1776
|
+
c0-1.3,0-2.6,0-3.9C259.1,184,259.2,185.8,259.1,187.6z M264,266.2c-0.2,0-0.3,0-0.5,0c-0.3,0-0.5,0-0.7,0.1
|
|
1777
|
+
c0.2-0.7,0.4-1.5,0.5-2.3c0.1-0.5,0.1-1.1,0.1-1.7c0.2,0.3,0.4,0.6,0.7,0.8C263.6,264,263.6,265.2,264,266.2z M264.6,217.8
|
|
1778
|
+
c0-0.6-0.1-1.1-0.1-1.7c0.2,0.3,0.4,0.6,0.7,0.8C265,217.2,264.8,217.5,264.6,217.8z"/>
|
|
1779
|
+
<polygon class="st128" points="194.5,46.4 194.9,270.2 196.3,164.4 "/>
|
|
1780
|
+
<polygon class="st128" points="135,46.4 135.4,270.2 136.8,164.4 "/>
|
|
1781
|
+
<polygon class="st121" points="131.2,149.1 131.6,244.3 133,199.3 "/>
|
|
1782
|
+
<polygon class="st121" points="259.7,88.4 260.1,183.6 261.5,138.6 "/>
|
|
1783
|
+
<polygon class="st128" points="256.5,46.4 256.9,270.2 258.3,164.4 "/>
|
|
1784
|
+
<polygon class="st129" points="98,48.6 135,35.8 135,281.1 97.9,268.7 "/>
|
|
1785
|
+
<polygon class="st129" points="296.5,48.6 259.2,35.8 259.2,281.1 296.6,268.7 "/>
|
|
1786
|
+
<path class="st130" d="M24.8,125.1"/>
|
|
1787
|
+
<polygon class="st131" points="136.6,36.6 195,30.5 195.2,285.8 134,279.4 "/>
|
|
1788
|
+
</svg>
|