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,430 @@
|
|
|
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="69.8px" height="122px" viewBox="0 0 69.8 122" style="enable-background:new 0 0 69.8 122;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill:#505050;}
|
|
7
|
+
.st1{fill:#AAAAAA;stroke:#6C6C6C;stroke-width:0.7224;stroke-miterlimit:10;}
|
|
8
|
+
.st2{fill:#050505;}
|
|
9
|
+
.st3{fill:#181818;}
|
|
10
|
+
.st4{fill-rule:evenodd;clip-rule:evenodd;fill:none;stroke:#000000;stroke-width:0.76;stroke-miterlimit:10;}
|
|
11
|
+
.st5{fill-rule:evenodd;clip-rule:evenodd;fill:#727272;}
|
|
12
|
+
.st6{fill:none;stroke:#000000;stroke-width:0.67;stroke-miterlimit:10;}
|
|
13
|
+
.st7{opacity:0.3;}
|
|
14
|
+
.st8{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
15
|
+
.st9{opacity:0.5;fill-rule:evenodd;clip-rule:evenodd;fill:url(#SVGID_1_);}
|
|
16
|
+
.st10{fill-rule:evenodd;clip-rule:evenodd;fill:#3B3B3B;}
|
|
17
|
+
.st11{fill:none;stroke:#000000;stroke-width:1.34;stroke-miterlimit:10;}
|
|
18
|
+
.st12{fill:none;stroke:#000000;stroke-width:0.8166;stroke-miterlimit:10;}
|
|
19
|
+
.st13{stroke:#6D6D6D;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
20
|
+
.st14{opacity:0.5;fill:#6D6D6D;}
|
|
21
|
+
.st15{fill:#A9A9A9;stroke:#000000;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
22
|
+
.st16{fill:url(#SVGID_2_);stroke:#595959;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
23
|
+
.st17{fill:#929292;}
|
|
24
|
+
.st18{fill:#EEEEEE;}
|
|
25
|
+
.st19{fill:url(#SVGID_3_);}
|
|
26
|
+
.st20{fill:#595959;}
|
|
27
|
+
.st21{fill:url(#SVGID_4_);}
|
|
28
|
+
.st22{fill:url(#SVGID_5_);}
|
|
29
|
+
.st23{fill:url(#SVGID_6_);stroke:#595959;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
30
|
+
.st24{fill:url(#SVGID_7_);}
|
|
31
|
+
.st25{fill:url(#SVGID_8_);}
|
|
32
|
+
.st26{fill:url(#SVGID_9_);}
|
|
33
|
+
.st27{fill:#5B5B5B;stroke:#333333;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
34
|
+
.st28{opacity:0.5;fill:#3F3F3F;}
|
|
35
|
+
.st29{fill:url(#SVGID_10_);stroke:#595959;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
36
|
+
.st30{fill:url(#SVGID_11_);stroke:#595959;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
37
|
+
.st31{fill:url(#SVGID_12_);stroke:#595959;stroke-width:0.5067;stroke-miterlimit:10;}
|
|
38
|
+
.st32{fill:#3E3E3E;stroke:#000000;stroke-width:0.76;}
|
|
39
|
+
.st33{opacity:0.1011;enable-background:new ;}
|
|
40
|
+
.st34{opacity:0.2697;stroke:#000000;stroke-width:0.2103;enable-background:new ;}
|
|
41
|
+
.st35{opacity:0.294;stroke:#000000;stroke-width:0.1524;enable-background:new ;}
|
|
42
|
+
.st36{fill:#FFFFFF;stroke:#9D9D9D;stroke-width:0.5067;}
|
|
43
|
+
.st37{fill:none;stroke:#000000;stroke-width:0.2112;}
|
|
44
|
+
.st38{opacity:0.1124;enable-background:new ;}
|
|
45
|
+
.st39{fill:#FFFFFF;stroke:#575757;stroke-width:0.5067;}
|
|
46
|
+
.st40{opacity:9.550560e-02;enable-background:new ;}
|
|
47
|
+
.st41{fill-opacity:0.2235;}
|
|
48
|
+
.st42{fill:#FFFFFF;}
|
|
49
|
+
.st43{fill:#676767;}
|
|
50
|
+
.st44{fill:#484848;}
|
|
51
|
+
.st45{fill:#141414;}
|
|
52
|
+
</style>
|
|
53
|
+
<path class="st0" d="M41.8,63.5h-2.6c-5.9,0-10.8-4.8-10.8-10.8V35.4c0-5.9,4.8-10.8,10.8-10.8h2.6c5.9,0,10.8,4.8,10.8,10.8v17.3
|
|
54
|
+
C52.5,58.7,47.7,63.5,41.8,63.5z"/>
|
|
55
|
+
<g>
|
|
56
|
+
<rect x="17.8" y="57" class="st1" width="3.6" height="65"/>
|
|
57
|
+
<rect x="63.7" y="57" class="st1" width="3.6" height="65"/>
|
|
58
|
+
</g>
|
|
59
|
+
<path class="st2" d="M48.1,18.7C48.1,18.7,48.1,18.7,48.1,18.7c0-0.1-0.1-0.3,0-0.4C48.2,18.5,48.2,18.6,48.1,18.7z"/>
|
|
60
|
+
<path d="M45.2,25C45.1,25,45.1,25,45.2,25c-0.1-0.1,0-0.1,0-0.1C45.2,24.9,45.2,24.9,45.2,25C45.2,25,45.2,25,45.2,25z"/>
|
|
61
|
+
<path class="st3" d="M46.6,20.6c-0.1,0.2-0.1,0.4-0.2,0.6c-0.1,0.4-0.3,0.7-0.6,1c-0.1,0-0.1,0.1-0.2,0c-0.1-0.1-0.1-0.1-0.1,0.1
|
|
62
|
+
c0,0.2,0,0.3-0.1,0.5c0,0-0.1,0.1,0,0.1c0.1,0,0.1,0,0.1-0.1c0.1-0.1,0.2-0.2,0.4-0.4c0,0.3-0.2,0.5-0.3,0.6c0,0.1-0.4,0-0.4-0.1
|
|
63
|
+
c-0.1-0.1-0.1-0.4,0-0.5c0.3-0.3,0.5-0.6,0.8-0.9c0.1-0.1,0.2-0.2,0.1-0.4C46.2,21,46.4,20.8,46.6,20.6z"/>
|
|
64
|
+
<path class="st2" d="M48.1,18.8c0.1,0.1,0,0.3,0,0.3c-0.2,0.2-0.3,0.5-0.3,0.7c-0.1,0.2-0.2,0.4-0.3,0.4c-0.2,0.1-0.3,0.1-0.5,0.1
|
|
65
|
+
c0-0.2,0.1-0.2,0.2-0.3c0.3-0.3,0.4-0.7,0.7-1C47.8,19,47.9,18.8,48.1,18.8z"/>
|
|
66
|
+
<path d="M42.6,16.7C42.6,16.7,42.5,16.6,42.6,16.7c-0.1-0.1,0-0.2,0-0.2C42.7,16.5,42.7,16.6,42.6,16.7
|
|
67
|
+
C42.7,16.7,42.6,16.7,42.6,16.7z"/>
|
|
68
|
+
<path d="M42.4,19.3C42.4,19.4,42.4,19.4,42.4,19.3C42.4,19.4,42.4,19.4,42.4,19.3C42.4,19.4,42.4,19.3,42.4,19.3
|
|
69
|
+
C42.4,19.3,42.4,19.3,42.4,19.3z"/>
|
|
70
|
+
<path d="M41.8,21.7C41.7,21.7,41.7,21.7,41.8,21.7C41.7,21.7,41.7,21.7,41.8,21.7z"/>
|
|
71
|
+
<path d="M42.7,19C42.7,19,42.7,19,42.7,19C42.7,19,42.7,19,42.7,19C42.7,19,42.7,19,42.7,19z"/>
|
|
72
|
+
<path d="M39.3,20.8c-0.3-0.1-0.5-0.2-0.7-0.4c0,0,0-0.3,0.1-0.1c0.2,0,0.3,0.4,0.5,0.2c0.1,0,0,0.1,0.1,0.1
|
|
73
|
+
C39.4,20.7,39.3,20.8,39.3,20.8z"/>
|
|
74
|
+
<path d="M39.2,18.3c0-0.1,0.1-0.1,0.1-0.1C39.3,18.3,39.2,18.3,39.2,18.3z"/>
|
|
75
|
+
<path d="M38.5,20.2C38.5,20.2,38.4,20.2,38.5,20.2C38.5,20.2,38.5,20.2,38.5,20.2z"/>
|
|
76
|
+
<path class="st3" d="M44.4,23.5c0,0-0.1,0-0.1-0.1c0-0.1,0-0.1,0-0.2c0.1-0.2,0.3-0.3,0.5-0.4c0,0,0.1,0,0.1,0.1
|
|
77
|
+
C44.9,23.1,44.6,23.5,44.4,23.5z"/>
|
|
78
|
+
<path class="st2" d="M37.3,18.7c0.2,0,0.2,0.3,0.4,0.3c0,0,0,0.2,0,0.2C37.5,19.1,37.4,18.9,37.3,18.7z"/>
|
|
79
|
+
<path d="M38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4C38.4,18.4,38.4,18.4,38.4,18.4
|
|
80
|
+
C38.4,18.4,38.4,18.4,38.4,18.4z"/>
|
|
81
|
+
<path d="M38.8,18.2C38.8,18.2,38.9,18.3,38.8,18.2C38.9,18.3,38.9,18.3,38.8,18.2C38.8,18.3,38.8,18.3,38.8,18.2
|
|
82
|
+
C38.8,18.3,38.8,18.3,38.8,18.2z"/>
|
|
83
|
+
<path d="M36.1,15.9C36.1,15.9,36.1,15.9,36.1,15.9C36.1,15.8,36.1,15.9,36.1,15.9C36.1,15.9,36.1,15.9,36.1,15.9
|
|
84
|
+
C36.1,15.9,36.1,15.9,36.1,15.9z"/>
|
|
85
|
+
<path d="M37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6C37.8,16.6,37.8,16.6,37.8,16.6z"/>
|
|
86
|
+
<path d="M36.4,17C36.4,17,36.4,17,36.4,17C36.4,16.9,36.4,16.9,36.4,17C36.4,16.9,36.4,16.9,36.4,17C36.4,17,36.4,17,36.4,17z"/>
|
|
87
|
+
<path class="st2" d="M38.9,24.5C38.9,24.5,38.8,24.5,38.9,24.5C38.8,24.5,38.8,24.5,38.9,24.5C38.8,24.4,38.9,24.5,38.9,24.5
|
|
88
|
+
C38.9,24.5,38.9,24.5,38.9,24.5z"/>
|
|
89
|
+
<path class="st4" d="M20.7,55.2"/>
|
|
90
|
+
<g>
|
|
91
|
+
<g>
|
|
92
|
+
<g>
|
|
93
|
+
<path class="st5" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
|
|
94
|
+
c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
|
|
95
|
+
<path class="st6" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
|
|
96
|
+
c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
|
|
97
|
+
</g>
|
|
98
|
+
</g>
|
|
99
|
+
<g class="st7">
|
|
100
|
+
<path class="st8" d="M18,112.7c0.8-0.6,1.9-38.2,1.9-39.5c0-1.3-2.2-1.5-2.2-1.5L18,112.7z"/>
|
|
101
|
+
<path class="st8" d="M66.3,112.7c-0.8-0.6-1.9-38.2-1.9-39.5c0-1.3,2.2-1.5,2.2-1.5L66.3,112.7z"/>
|
|
102
|
+
</g>
|
|
103
|
+
<g>
|
|
104
|
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="42.1584" y1="72.0804" x2="42.1584" y2="73.0168">
|
|
105
|
+
<stop offset="0" style="stop-color:#000000;stop-opacity:0"/>
|
|
106
|
+
<stop offset="1" style="stop-color:#000000"/>
|
|
107
|
+
</linearGradient>
|
|
108
|
+
<path class="st9" d="M20,73.2c0,0,0,0.1,0,0.2h44.4c0-0.1,0-0.2,0-0.2c0-1.3,2.2-1.5,2.2-1.5H17.7C17.7,71.7,20,71.9,20,73.2z"/>
|
|
109
|
+
</g>
|
|
110
|
+
<g>
|
|
111
|
+
<path class="st10" d="M16.2,115.5c-0.3,0-0.6-0.4-0.6-0.9V70.7c0-0.5,0.4-0.9,0.9-0.9h51.3c0.5,0,0.9,0.4,0.9,0.9v43.9
|
|
112
|
+
c0,0.5-0.3,0.9-0.6,0.9s-0.6-0.4-0.6-0.9V71.8c0-0.5-0.4-0.9-0.9-0.9H17.7c-0.5,0-0.9,0.4-0.9,0.9v42.7
|
|
113
|
+
C16.8,115.1,16.5,115.5,16.2,115.5z"/>
|
|
114
|
+
</g>
|
|
115
|
+
<g>
|
|
116
|
+
<path class="st11" d="M68.8,115.1c0,0.5-0.4,0.9-0.9,0.9H16.5c-0.5,0-0.9-0.4-0.9-0.9V70.9c0-0.5,0.4-0.9,0.9-0.9h51.3
|
|
117
|
+
c0.5,0,0.9,0.4,0.9,0.9V115.1z"/>
|
|
118
|
+
</g>
|
|
119
|
+
</g>
|
|
120
|
+
<line class="st12" x1="43.4" y1="25.9" x2="57" y2="79.1"/>
|
|
121
|
+
<line class="st12" x1="36.6" y1="23.3" x2="27" y2="81.2"/>
|
|
122
|
+
<g>
|
|
123
|
+
<g>
|
|
124
|
+
<path class="st13" d="M45.1,79.3c0,0,3.4-2.8,5.3-2.3c1.9,0.6,0.6,5.4,0.6,5.4L45.1,79.3z"/>
|
|
125
|
+
<path class="st14" d="M45.5,79.3l5.4,2.9c0.2-0.6,0.3-1.6,0.4-2.5c-1.2-0.7-3-1.1-4.3-1.4C46.3,78.7,45.8,79.1,45.5,79.3z"/>
|
|
126
|
+
</g>
|
|
127
|
+
<g>
|
|
128
|
+
<path class="st13" d="M39.5,79.7c0,0-3.4-2.8-5.3-2.3c-1.9,0.6-0.6,5.4-0.6,5.4L39.5,79.7z"/>
|
|
129
|
+
<path class="st14" d="M33.4,80.5c0.1,0.8,0.2,1.6,0.3,2.2l5.4-2.9c-0.4-0.3-1.5-1.1-2.6-1.6C35.4,78.5,34.2,79.4,33.4,80.5z"/>
|
|
130
|
+
</g>
|
|
131
|
+
<g>
|
|
132
|
+
<g>
|
|
133
|
+
<ellipse class="st15" cx="43" cy="90.1" rx="13.4" ry="11.4"/>
|
|
134
|
+
</g>
|
|
135
|
+
<g>
|
|
136
|
+
<ellipse cx="43" cy="90.6" rx="12.8" ry="10.8"/>
|
|
137
|
+
</g>
|
|
138
|
+
</g>
|
|
139
|
+
<g>
|
|
140
|
+
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="55.6784" y1="78.4675" x2="59.5293" y2="87.4053">
|
|
141
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
142
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
143
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
144
|
+
</linearGradient>
|
|
145
|
+
<path class="st16" d="M52.7,81.3c0.5-0.8,3.8-3.9,8.4-1.8c1.7,0.7,1.4,3.9,1.4,3.9s0,3-5.3,3.5S52.4,81.8,52.7,81.3z"/>
|
|
146
|
+
<path class="st17" d="M58.4,84.7c-1.9-0.1-4.3-2.3-5.4-3.4c-0.1,0.1-0.1,0.1-0.1,0.2c-0.1,0.2-0.4,2.2,0.5,3.6
|
|
147
|
+
c0.7,1.2,2,1.8,3.8,1.6c2.9-0.2,4.2-1.3,4.7-2.1C61.1,84.6,60.1,84.8,58.4,84.7z"/>
|
|
148
|
+
<path class="st17" d="M57.9,79c-1.6,0-2.9,0.6-3.7,1.2c1.1,1.1,3.5,1.9,3.5,1.9s2.3-1.8,3.3-1.5l-1.9-0.9c0,0,0.1-0.2,0.2-0.5
|
|
149
|
+
C58.8,79,58.4,79,57.9,79z"/>
|
|
150
|
+
<g>
|
|
151
|
+
<path class="st18" d="M58.8,81.4c0,0,0.6-0.4,1.2-0.6c0.3-0.1,0.6-0.2,0.9-0.2c0.2,0,0.4,0.1,0.4,0.1s-0.2-0.1-0.4-0.1
|
|
152
|
+
c-0.2,0-0.6,0.1-0.8,0.2c-0.6,0.3-1.1,0.7-1.1,0.7L58.8,81.4z"/>
|
|
153
|
+
</g>
|
|
154
|
+
<g>
|
|
155
|
+
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="57.1513" y1="78.0758" x2="57.1513" y2="86.1115">
|
|
156
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
157
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
158
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
159
|
+
</linearGradient>
|
|
160
|
+
<path class="st19" d="M57.7,84.5c-1.3-0.6-3.4-1.2-3.3-3.2c0.1-1.9,4.3,0.1,5.5,0.9"/>
|
|
161
|
+
<path class="st20" d="M57.7,84.5c0,0-0.2-0.1-0.5-0.2c-0.3-0.1-0.7-0.2-1.2-0.4c-0.5-0.2-1.1-0.5-1.5-1.1c-0.2-0.3-0.4-0.7-0.4-1
|
|
162
|
+
l0-0.3c0-0.1,0-0.1,0-0.2l0-0.1c0-0.1,0.2-0.5,0.3-0.6c0.4-0.3,0.8-0.3,1.2-0.2c0.4,0,0.7,0.1,1,0.2c0.6,0.2,1.2,0.5,1.7,0.7
|
|
163
|
+
c0.9,0.5,1.5,1,1.5,1s-0.6-0.3-1.6-0.7c-0.5-0.2-1.1-0.4-1.7-0.6c-0.3-0.1-0.6-0.1-1-0.2c-0.3,0-0.6,0-0.8,0.1
|
|
164
|
+
c-0.1,0-0.1,0.1-0.1,0.1c0,0-0.1,0.1-0.1,0.2l0,0.1c0,0,0,0.1,0,0.1l0,0.2c0,0.3,0.1,0.6,0.3,0.8c0.3,0.5,0.8,0.9,1.3,1.1
|
|
165
|
+
c0.4,0.3,0.8,0.5,1.1,0.6C57.6,84.4,57.7,84.5,57.7,84.5z"/>
|
|
166
|
+
</g>
|
|
167
|
+
<g>
|
|
168
|
+
<path class="st18" d="M54.7,81.1c0,0,0-0.1,0.1-0.2c0.1-0.1,0.3-0.2,0.5-0.2c0.5,0,1.1,0.1,1.7,0.3c0.6,0.2,1.2,0.4,1.6,0.6
|
|
169
|
+
c0.4,0.2,0.7,0.3,0.7,0.3s-0.3-0.1-0.7-0.2c-0.4-0.1-1-0.3-1.6-0.5c-0.6-0.2-1.2-0.3-1.6-0.4c-0.2,0-0.4,0-0.5,0.1
|
|
170
|
+
C54.7,81,54.7,81.1,54.7,81.1z"/>
|
|
171
|
+
</g>
|
|
172
|
+
<g>
|
|
173
|
+
<path class="st20" d="M58.6,81.5c0,0,0.4-0.6,1.1-0.9c0.6-0.3,1.4-0.3,1.4-0.3l0,0.5c0,0-0.6-0.1-1.3,0
|
|
174
|
+
C59.1,81.1,58.6,81.5,58.6,81.5z"/>
|
|
175
|
+
</g>
|
|
176
|
+
<g>
|
|
177
|
+
<g>
|
|
178
|
+
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="63.6165" y1="78.0758" x2="63.6165" y2="86.1115">
|
|
179
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
180
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
181
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
182
|
+
</linearGradient>
|
|
183
|
+
<path class="st21" d="M60.7,84.5l1.8,1.8l-1.4,0.7c0,0,1.8,3.7,2,3.8s3.9-3.7,3.5-5c-0.4-1.3-3.7-2.1-4.9-2.3"/>
|
|
184
|
+
<path class="st20" d="M60.7,84.5c0.4,0.2,0.7,0.4,1.1,0.7c0.3,0.3,0.6,0.6,0.9,0.9l0.2,0.3l-0.3,0.1l0,0l-1.4,0.7l0.1-0.3l0,0
|
|
185
|
+
l0.9,1.8c0.3,0.6,0.6,1.2,1,1.7c-0.4,0.2,0.1-0.1,0.3-0.3c0.2-0.2,0.5-0.5,0.7-0.7c0.4-0.5,0.9-1,1.2-1.5
|
|
186
|
+
c0.2-0.3,0.4-0.5,0.5-0.8c0.2-0.3,0.3-0.6,0.4-0.8c0-0.1,0-0.3,0-0.3c-0.1-0.2-0.1-0.3-0.2-0.4c-0.2-0.2-0.5-0.4-0.7-0.6
|
|
187
|
+
c-0.6-0.3-1.2-0.6-1.8-0.8c-0.3-0.1-0.6-0.2-1-0.3c-0.3-0.1-0.6-0.2-0.9-0.4c0.4-0.2,0.7-0.1,1,0c0.3,0.1,0.7,0.2,1,0.3
|
|
188
|
+
c0.7,0.2,1.3,0.4,1.9,0.8c0.3,0.2,0.6,0.4,0.9,0.6c0.1,0.2,0.3,0.4,0.3,0.5c0.1,0.3,0.1,0.5,0,0.7c-0.1,0.4-0.2,0.7-0.4,1
|
|
189
|
+
c-0.2,0.3-0.4,0.6-0.6,0.9c-0.4,0.6-0.8,1.1-1.3,1.6c-0.2,0.3-0.5,0.5-0.7,0.7c-0.1,0.1-0.2,0.2-0.4,0.4
|
|
190
|
+
c-0.1,0.1-0.3,0.2-0.4,0.2c-0.3,0-0.1,0-0.1,0l0,0l0,0l0,0c0,0-0.1,0-0.1-0.1c-0.1-0.1,0-0.1-0.1-0.1l-0.1-0.1
|
|
191
|
+
c-0.4-0.6-0.6-1.2-0.9-1.8l-0.9-1.8l0,0l-0.1-0.2l0.2-0.1l1.4-0.7l0,0l-0.1,0.4c-0.3-0.3-0.6-0.6-0.9-0.9
|
|
192
|
+
C61.1,85.2,60.9,84.9,60.7,84.5z"/>
|
|
193
|
+
</g>
|
|
194
|
+
<path class="st17" d="M65.7,87.3c-0.7-0.7-1.8-1.2-3-1.2l0.2-0.1c-0.1,0-0.2,0.1-0.3,0.1l0.2,0.2l-0.2,0.1l0,0L61.3,87l0.8,1.6
|
|
195
|
+
l0.5,0.9c0.2,0.3,0.3,0.6,0.5,0.9c0,0,0,0,0,0c0,0,0,0,0,0c0.1-0.1,0.2-0.2,0.4-0.3c0.2-0.2,0.5-0.5,0.7-0.7
|
|
196
|
+
c0.4-0.5,0.9-1,1.3-1.5C65.5,87.7,65.6,87.5,65.7,87.3z"/>
|
|
197
|
+
<g>
|
|
198
|
+
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="62.3232" y1="85.9077" x2="64.6804" y2="85.9077">
|
|
199
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
200
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
201
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
202
|
+
</linearGradient>
|
|
203
|
+
<line class="st22" x1="62.3" y1="86.3" x2="64.7" y2="85.5"/>
|
|
204
|
+
<polygon class="st20" points="62.2,86.1 64.7,85.5 62.4,86.6 "/>
|
|
205
|
+
</g>
|
|
206
|
+
</g>
|
|
207
|
+
</g>
|
|
208
|
+
<g>
|
|
209
|
+
|
|
210
|
+
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="504.1351" y1="80.8254" x2="507.986" y2="89.7632" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
|
|
211
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
212
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
213
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
214
|
+
</linearGradient>
|
|
215
|
+
<path class="st23" d="M32.6,83.7c-0.4-0.8-3.1-3.9-6.8-1.8c-1.4,0.7-1.1,3.9-1.1,3.9s0,3,4.3,3.5C33.3,89.7,32.8,84.1,32.6,83.7z"
|
|
216
|
+
/>
|
|
217
|
+
<path class="st17" d="M27.9,87c1.5-0.1,3.5-2.3,4.4-3.4c0.1,0.1,0.1,0.1,0.1,0.2c0.1,0.2,0.3,2.2-0.4,3.6
|
|
218
|
+
c-0.6,1.2-1.6,1.8-3.1,1.6c-2.4-0.2-3.4-1.3-3.8-2.1C25.7,87,26.6,87.1,27.9,87z"/>
|
|
219
|
+
<path class="st17" d="M28.3,81.4c1.3,0,2.3,0.6,3,1.2c-0.9,1.1-2.8,1.9-2.8,1.9s-1.8-1.8-2.7-1.5l1.5-0.9c0,0-0.1-0.2-0.1-0.5
|
|
220
|
+
C27.6,81.4,28,81.4,28.3,81.4z"/>
|
|
221
|
+
<g>
|
|
222
|
+
<path class="st18" d="M27.4,84c0,0-0.4-0.4-0.8-0.7c-0.2-0.1-0.5-0.2-0.7-0.2c-0.2,0-0.3,0.1-0.3,0.1c0,0,0.1-0.1,0.3-0.1
|
|
223
|
+
c0.2,0,0.5,0.1,0.7,0.2c0.5,0.2,1,0.6,1,0.6L27.4,84z"/>
|
|
224
|
+
</g>
|
|
225
|
+
<g>
|
|
226
|
+
|
|
227
|
+
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="505.6081" y1="80.4337" x2="505.6081" y2="88.4695" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
|
|
228
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
229
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
230
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
231
|
+
</linearGradient>
|
|
232
|
+
<path class="st24" d="M28.5,86.9c1.1-0.6,2.8-1.2,2.7-3.2c-0.1-1.9-3.5,0.1-4.5,0.9"/>
|
|
233
|
+
<path class="st20" d="M28.5,86.9c0,0,0.1-0.1,0.3-0.2c0.2-0.1,0.5-0.4,0.9-0.6c0.4-0.3,0.7-0.6,1-1.1c0.1-0.2,0.2-0.5,0.2-0.8
|
|
234
|
+
c0-0.1,0-0.3,0-0.4c0-0.1,0-0.3-0.1-0.4c-0.1-0.1-0.3-0.2-0.5-0.2c-0.3,0-0.5,0.1-0.8,0.2c-0.5,0.2-1,0.4-1.4,0.6
|
|
235
|
+
c-0.8,0.4-1.4,0.7-1.4,0.7s0.4-0.5,1.2-1c0.4-0.2,0.9-0.5,1.4-0.7c0.3-0.1,0.6-0.2,0.9-0.2c0.3,0,0.8,0.1,1,0.5
|
|
236
|
+
c0.1,0.2,0.1,0.3,0.1,0.5c0,0.2,0,0.3,0,0.5c0,0.3-0.2,0.6-0.3,0.9c-0.3,0.6-0.8,0.9-1.2,1.1c-0.4,0.2-0.8,0.4-1,0.5
|
|
237
|
+
C28.6,86.8,28.5,86.9,28.5,86.9z"/>
|
|
238
|
+
</g>
|
|
239
|
+
<g>
|
|
240
|
+
<path class="st18" d="M30.9,83.4c0,0,0-0.1-0.1-0.1c-0.1-0.1-0.2-0.1-0.4-0.1c-0.4,0-0.8,0.2-1.3,0.4c-0.5,0.2-0.9,0.4-1.3,0.5
|
|
241
|
+
c-0.4,0.1-0.6,0.2-0.6,0.2s0.2-0.1,0.5-0.3c0.3-0.2,0.8-0.4,1.3-0.6c0.5-0.2,1-0.3,1.4-0.3c0.2,0,0.4,0.1,0.4,0.2
|
|
242
|
+
C30.9,83.4,30.9,83.5,30.9,83.4z"/>
|
|
243
|
+
</g>
|
|
244
|
+
<g>
|
|
245
|
+
<path class="st20" d="M27.8,83.9c0,0-0.4-0.4-0.9-0.6c-0.5-0.2-1-0.1-1-0.1l0-0.5c0,0,0.7,0,1.2,0.3
|
|
246
|
+
C27.5,83.4,27.8,83.9,27.8,83.9z"/>
|
|
247
|
+
</g>
|
|
248
|
+
<g>
|
|
249
|
+
<g>
|
|
250
|
+
|
|
251
|
+
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="512.0732" y1="80.4337" x2="512.0732" y2="88.4695" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
|
|
252
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
253
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
254
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
255
|
+
</linearGradient>
|
|
256
|
+
<path class="st25" d="M26.1,86.9l-1.4,1.8l1.1,0.7c0,0-1.5,3.7-1.6,3.8c-0.2,0.1-3.1-3.7-2.8-5c0.3-1.3,3-2.1,4-2.3"/>
|
|
257
|
+
<path class="st20" d="M26.1,86.9c-0.1,0.4-0.3,0.7-0.5,1.1c-0.2,0.3-0.4,0.6-0.7,0.9l-0.1-0.4l0,0l1.1,0.7l0.2,0.1L26,89.4l0,0
|
|
258
|
+
c-0.4,1.2-0.9,2.3-1.4,3.5l-0.1,0.2l-0.1,0.1l-0.1,0.1c0,0-0.1,0.1-0.1,0.1c0,0-0.3,0-0.1,0l0,0l0,0l0,0
|
|
259
|
+
c-0.2-0.1-0.2-0.1-0.3-0.2l-0.1-0.1L23.6,93c-0.2-0.2-0.4-0.5-0.6-0.7c-0.4-0.5-0.7-1-1.1-1.6c-0.3-0.5-0.6-1.1-0.8-1.7
|
|
260
|
+
c-0.1-0.3-0.2-0.7,0-1.1c0.1-0.3,0.4-0.6,0.7-0.8c0.5-0.4,1.1-0.7,1.7-0.9c0.3-0.1,0.6-0.2,0.9-0.3c0.3-0.1,0.6-0.1,1,0
|
|
261
|
+
c-0.3,0.3-0.5,0.4-0.8,0.5c-0.3,0.1-0.6,0.2-0.8,0.3c-0.6,0.2-1.1,0.5-1.5,0.9c-0.2,0.2-0.4,0.4-0.5,0.6c-0.1,0.2,0,0.4,0,0.7
|
|
262
|
+
c0.2,0.5,0.5,1.1,0.8,1.6c0.3,0.5,0.7,1,1,1.5c0.2,0.2,0.4,0.5,0.6,0.7l0.1,0.2l0.1,0.1c0,0,0.1,0-0.1,0c0,0,0,0,0,0l0,0l0,0
|
|
263
|
+
c0.1,0-0.2,0-0.1,0c0,0-0.1,0.1-0.1,0.1c0,0,0,0,0,0l0-0.1l0.1-0.2c0.5-1.1,1-2.2,1.4-3.4l0,0l0.1,0.3l-1.1-0.7l0,0l-0.2-0.1
|
|
264
|
+
l0.2-0.3c0.2-0.3,0.4-0.6,0.7-0.9C25.4,87.3,25.7,87.1,26.1,86.9z"/>
|
|
265
|
+
</g>
|
|
266
|
+
<path class="st17" d="M22,89.7c0.6-0.7,1.5-1.2,2.4-1.2l-0.2-0.1c0.1,0,0.2,0.1,0.2,0.1l-0.1,0.2l0.2,0.1l0,0l1,0.6L24.9,91
|
|
267
|
+
l-0.4,0.9c-0.1,0.3-0.3,0.6-0.4,0.9c0,0,0,0,0,0c0,0,0,0,0,0c-0.1-0.1-0.2-0.2-0.3-0.3c-0.2-0.2-0.4-0.5-0.6-0.7
|
|
268
|
+
c-0.4-0.5-0.7-1-1-1.5C22.2,90,22.1,89.9,22,89.7z"/>
|
|
269
|
+
<g>
|
|
270
|
+
|
|
271
|
+
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="510.7799" y1="88.2657" x2="513.1371" y2="88.2657" gradientTransform="matrix(-0.8117 0 0 1 439.3701 0)">
|
|
272
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
273
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
274
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
275
|
+
</linearGradient>
|
|
276
|
+
<line class="st26" x1="24.8" y1="88.7" x2="22.8" y2="87.8"/>
|
|
277
|
+
<polygon class="st20" points="24.7,88.9 22.8,87.8 24.9,88.5 "/>
|
|
278
|
+
</g>
|
|
279
|
+
</g>
|
|
280
|
+
</g>
|
|
281
|
+
<g>
|
|
282
|
+
<path class="st27" d="M22.1,94.6c0-1.7,0.6-5.3,8.4-7s24.9-0.8,24.9-0.8s7.4-2.7,8.2,2.7c0.9,5.4-4,7.3-8,8.1S27,99.9,26.8,99.8
|
|
283
|
+
C26.6,99.6,22.1,100.4,22.1,94.6z"/>
|
|
284
|
+
<path class="st28" d="M62.3,94.2c-0.4-1.7-1.7-3.5-2.3-5.7c-0.3-1.1-0.3-1.7-0.6-2.2c-0.1,0-0.2,0-0.2,0c-1.9,0-3.7,0.6-3.7,0.6
|
|
285
|
+
l0,0l0,0c0,0-4.9-0.3-10.5-0.3c-6.4,0-11.3,0.3-14.3,1c-2.6,0.6-4.6,1.4-5.9,2.5c-1.2,2.8-1.4,5.7-0.7,8.6c1,0.7,2.1,0.8,2.6,0.8
|
|
286
|
+
c0.2,0,0.3,0,0.3,0c0,0,0.1,0,0.1,0c2.2,0,24.9-1.5,28.6-2.2C58.8,96.8,61,95.7,62.3,94.2z"/>
|
|
287
|
+
</g>
|
|
288
|
+
<linearGradient id="SVGID_10_" gradientUnits="userSpaceOnUse" x1="38.3741" y1="81.5938" x2="42.0823" y2="81.5938">
|
|
289
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
290
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
291
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
292
|
+
</linearGradient>
|
|
293
|
+
<circle class="st29" cx="40.2" cy="81.6" r="1.9"/>
|
|
294
|
+
<linearGradient id="SVGID_11_" gradientUnits="userSpaceOnUse" x1="24.8688" y1="94.799" x2="58.9677" y2="94.799">
|
|
295
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
296
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
297
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
298
|
+
</linearGradient>
|
|
299
|
+
<path class="st30" d="M58.8,92.2c1.1,7.3-5.6,14.4-14.9,15.8c-9.4,1.4-17.8-3.4-18.9-10.7c-1.1-7.3,5.6-14.4,14.9-15.8
|
|
300
|
+
C49.3,80.2,57.7,84.9,58.8,92.2z"/>
|
|
301
|
+
<g>
|
|
302
|
+
|
|
303
|
+
<linearGradient id="SVGID_12_" gradientUnits="userSpaceOnUse" x1="696.2031" y1="797.3051" x2="700.4656" y2="797.3051" gradientTransform="matrix(-1 0 0 -1 757.8086 890.3047)">
|
|
304
|
+
<stop offset="0" style="stop-color:#D8D8D8"/>
|
|
305
|
+
<stop offset="0.483" style="stop-color:#D2D2D2"/>
|
|
306
|
+
<stop offset="1" style="stop-color:#CACACA"/>
|
|
307
|
+
</linearGradient>
|
|
308
|
+
<path class="st31" d="M58.1,94.8c0,0,3.8-0.5,3.5-2.5s-4.1-0.8-4.2-0.7S58.1,94.8,58.1,94.8z"/>
|
|
309
|
+
<path class="st17" d="M58.2,94.6c0.4-0.1,1.3-0.3,2.1-0.7c0.1-0.8-0.1-1.7-0.3-2.5c-0.1,0-0.1,0-0.2,0h0c-0.9,0-1.9,0.3-2.2,0.4
|
|
310
|
+
C57.6,92.1,57.9,93.4,58.2,94.6z"/>
|
|
311
|
+
</g>
|
|
312
|
+
<g id="layer1_1_" transform="translate(-8.9025329,-24.385462)">
|
|
313
|
+
<path id="path1309_1_" class="st32" d="M47.6,136.1c-4.7-0.2-9.6-1.1-13.1-2.2c-3.5-1.1-12.6-3.8-14.7-4.7c-2.1-0.9-4.4-1-5.5-2.4
|
|
314
|
+
c-0.5-0.5,2.3-2.6,2.8-2.8c1.4-0.7,4-0.2,5.1-0.3c3.6-0.3,7.4-0.5,10.9-2.6c-0.7-0.3,0.4,0-1.5-3.6c-0.7-1.3-2.2-4.6-1-5.4
|
|
315
|
+
c1.2-0.8,2.4,1.6,3.6,1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0
|
|
316
|
+
c0.6,0,5.6,0.7,9.9-0.4c2.4-0.6,6.5-0.3,8.8-0.2c3.7,0.2,8.8,0.2,12-0.2c2.4-0.3,4.6,0.3,6.9,0.1c1.3-0.1,0.5,2.8,0.5,3
|
|
317
|
+
c0.1,1.4-2.4,3.9-3.5,5.9s-3.2,4.8-5.5,7c-2.3,2.2-5.5,5.1-7.9,6.2C53.1,135.6,52.7,136.3,47.6,136.1z"/>
|
|
318
|
+
<path id="path5882_1_" class="st33" d="M35.8,130.9c-3-0.1-6.4-5.7-10.1-6.2c-2.5-0.4-9.1-0.5-8.6-0.8c1.4-0.7,4-0.2,5.1-0.3
|
|
319
|
+
c3.6-0.3,7.4-0.5,10.9-2.6c-0.7-0.3,0.4,0-1.5-3.6c-0.7-1.3-2.2-4.6-1-5.4c1.2-0.8,2.4,1.6,3.6,1.1c0,0,0,0,0,0c0,0,0,0,0,0
|
|
320
|
+
c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0l0,0c0.6,0,5.6,0.7,9.9-0.4c2.4-0.6,6.5-0.3,8.8-0.2
|
|
321
|
+
c3.7,0.2,8.8,0.2,12-0.2c2.4-0.3,4.6,0.3,6.9,0.1c1.3-0.1-8.4,0.6-4.3,1.9c1.8,0.5-17.3,0.7-23.8,6.8
|
|
322
|
+
C37.3,127.1,38.9,131,35.8,130.9z"/>
|
|
323
|
+
<path id="path5878_1_" class="st34" d="M14.7,127.4c0.5-0.3,4-3.9,4.5-3.8c0.1,0.3-0.3,0.5-0.6,0.6c0.5,0.3,0.6,0.6-0.1,0.8
|
|
324
|
+
c-0.8,0.2-1.7,0.4-0.7,0.8c0.4,0.3,0.1,0.9-0.1,1.2c-0.6,0.3-1.1,0.8-1.3,1.1"/>
|
|
325
|
+
<path id="path5003_1_" class="st35" d="M66.4,113.7c-1.2,0.4-2.7,0.9-3.7,1c-0.7,0.5-1.3,0.1-2,0c0,0.8-1.9-0.1-2.7,0
|
|
326
|
+
c-0.6-0.1-0.1,0.6-1.1,0.4c-1.2,0.1-2,0.1-2.9,0c-0.3-0.8-2.4-1-2.5-0.1c-1.1-0.2-3.2-0.5-3.1,0.5c-1.8-0.6-2-1.4-3.7-1.5
|
|
327
|
+
c0.2,0.7-3.5,1.6-4.1,0.9c-1.1-0.1,0.3,0.9-1.2,0.8c-1.6,0.5-1-1.7-4.3-0.4c-1.9,0.3-1.1-1.6-2.4-2.2c-0.4-0.7-1.8,0.5-2.4,0.5
|
|
328
|
+
c0-1.2,0.4-0.9-0.1-1.7c-0.4-1-0.8-1.5,1-1.9c0.7,0.4,0,0.3,0-0.7c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4
|
|
329
|
+
c1.1-0.2,2.3-1.2,3.4-0.4c1.1,0.6,2.5,0.7,2.4,0.2c1.1-0.8,1.2-0.7,2.5-0.7c-0.2,0.9,2.9-0.3,1.3,0.8c0.7,0.3,2.6,0.3,3.6,0.1
|
|
330
|
+
c0.8-1,3.6-1.4,4.2-0.4c0.2,0.8,2.4,0.9,3.1,0.2c1.5,0.6,3.5-0.8,4.8-0.4c-1,1,1.7,1.2,2.1,0.5c1,0.2,2,1.2,3,0.3
|
|
331
|
+
c1.2,0.1,2.7,0.2,3.8,0.4c0.7-0.9,2.7-0.3,2,0.7c-0.4,0.7,1.5-0.5,1,0.4c-0.5,1-1.2,2.4-2.2,2.5c-1.4,0.4-2.3-0.1-2.5-0.9
|
|
332
|
+
c0.1,0.6-1.7,0.2-2.6,0.1l-0.5,0l-0.5,0.3"/>
|
|
333
|
+
<path id="path1307_1_" class="st36" d="M67.2,113.4c-1.2,0.4-2.3,0.6-3.4,0.7c-0.7,0.5-1.6,0.5-2.2,0.4c0,0.8-1.7-0.5-2.4-0.4
|
|
334
|
+
c-0.6-0.1-0.1,0.6-1.1,0.4c-1.2,0.1-2.6,0.8-3.5,0.6c-0.3-0.8-2.4-1-2.5-0.1c-1.1-0.2-2.6-1.1-2.5-0.1c-2,0.3-3-0.8-4.8-1
|
|
335
|
+
c0.2,0.7-2.4,1-3.1,0.4c-1.1-0.1-0.1,1.4-1.6,1.3c-1.6,0.5-1.9-1.6-3.8-0.9c-1.9,0.3-1.8-0.9-3.2-1.5c-0.4-0.7-1-0.1-1.6-0.1
|
|
336
|
+
c0.9-1-3.1-0.3-2.1-1.8c-0.4-1-0.1-1.8,1.7-2.3c0.7,0.4,1.3,0.8,1.3-0.2c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4
|
|
337
|
+
c1.1-0.2,2.3-1.2,3.4-0.4c1.1,0.6,1.1,0,1.1-0.6c1.1-0.8,2.6,0,3.8,0c-0.2,0.9,2.9-0.3,1.3,0.8c0.7,0.3,2.6,0.3,3.6,0.1
|
|
338
|
+
c0.8-0.7,3.6-1.4,4.2-0.4c0.2,0.8,2.4,0.9,3.1,0.2c1.5,0.6,3.5-0.8,4.8-0.4c-1,1,1.7,1.2,2.1,0.5c1,0.2,2,1.2,3,0.3
|
|
339
|
+
c1.2,0.1,6.5,0,5.8,1.1c-0.4,0.7,1.5-0.5,1,0.4c0.1,1-0.2,2.6-2.2,2.5c-1.4,0.4-2.3-0.1-2.5-0.9c0.1,0.6-2.2,0.7-3.1,0.6l-0.3-0.1
|
|
340
|
+
l-0.2-0.1"/>
|
|
341
|
+
<path id="path3126_1_" class="st37" d="M32.4,119.2c1.1,4.1,4.7,5.6,4.5,9c-0.1,2-3.1,0.9-2.4-1.1"/>
|
|
342
|
+
<path id="path3249_1_" class="st38" d="M33,113.3c-0.4-0.7-1-0.1-1.6-0.1c0.9-1-3.1-0.3-2.1-1.8c-0.4-1-0.1-1.8,1.7-2.3
|
|
343
|
+
c0.7,0.4,1.3,0.8,1.3-0.2c1.1,0.1,2.6,1,2.3-0.1c0.8,0.6,3.1,0.6,3.2,1.4c1.1-0.2,2.3-1.1,3.4-0.2c1.1,0.6,1.2-0.2,1.1-0.7
|
|
344
|
+
c1.1-0.8,2.6,0,3.8,0c-0.2,0.9,1.5,0,1.3,0.8c-0.1,0.5,5.5-0.4,4.8,0.3c-2.2,1.8-6.3,0.1-6.8,0.3c-0.5,0.2-1.1,0.2-0.4,0.3
|
|
345
|
+
c0.8,0.1-1.1,0-2.6,0.6c-1.5,0.6-2.7,0.3-2.9-0.6c-1.1,0.6-1.3,0.1-3.1,0c1.3,0.9-2,0.6-2,0.6s0.7,1.1-0.3,1.1
|
|
346
|
+
c0.6,0.5,0,0.8,0,0.8S34.4,113.8,33,113.3z"/>
|
|
347
|
+
<path id="path2251_1_" class="st39" d="M15.6,128.1c-0.2,0.3-0.8,0.4-0.9,0.6c0.2,0.2-0.4,0.1-0.5,0.3c-0.7-0.3-1.7-0.3-2.3-0.7
|
|
348
|
+
c0.3,0,0.3,0.2,0,0.1c-0.6-0.1-1.2-0.3-1-0.8c0-0.2-0.4-0.4,0.1-0.5c-0.1-0.3-1-0.2-1-0.5c0.1-0.4,0-0.7-0.5-0.9
|
|
349
|
+
c-0.5-0.2-0.3-0.6-0.4-0.9c-0.3-0.2-0.4-0.4-0.1-0.6c0-0.4,0.5-0.7,0.4-1.1c0.2-0.2,0.6-0.3,0.8-0.5c0.6-0.1,0.6-0.6,1.1-0.8
|
|
350
|
+
c0.5-0.2,1.1-0.2,1.5-0.3c0.3-0.2,0.7-0.4,1.2-0.5c0.5-0.3,0.8,0.2,1.2,0.4c0.1,0.3,0.4,0.3,0.6,0c0.5-0.3,1,0,1.4,0.2
|
|
351
|
+
c0.4,0.2,0.8,0.4,1.2,0.5c0.6,0.3,0.9,0.9,0.9,1.4c0.1,0.3-0.4,0.4-0.7,0.5c0.2,0.3,0.6,0.6-0.1,0.7c-0.4,0.1-1.3,0.6-0.7,0.8
|
|
352
|
+
c0.4,0.2-0.1,0.7-0.3,1c-0.4,0.3-0.6,0.6-0.8,0.9C16.2,127.5,15.7,127.7,15.6,128.1C15.6,128.4,15.6,128.2,15.6,128.1"/>
|
|
353
|
+
<path id="path4128_1_" class="st40" d="M10.8,125.1c-0.2,0.2,0.8,0,0.7,0.2c0.2,0.2,0,0.2-0.1,0.4c-0.7-0.3-0.5,0.6-1,0.1
|
|
354
|
+
c0.3,0,0.3,0.6,0,0.5c-0.6-0.1-0.4,0.7-0.4,0.3c0.1-0.4,0-0.7-0.5-0.9c-0.5-0.2-0.3-0.6-0.4-0.9c-0.3-0.2-0.4-0.4-0.1-0.6
|
|
355
|
+
c0-0.4,0.5-0.7,0.4-1.1c0.2-0.2,0.6-0.3,0.8-0.5c0.6-0.1,0.6-0.6,1.1-0.8c0.5-0.2,1.1-0.2,1.5-0.3c0.3-0.2,0.7-0.4,1.2-0.5
|
|
356
|
+
c0.5-0.3,0.8,0.2,1.2,0.4c0.1,0.3,0.4,0.3,0.6,0c0.5-0.3,1,0,1.4,0.2c0.4,0.2-1.4,0.1-0.9,0.3c0.6,0.3-1.3-0.4-1.3,0.1
|
|
357
|
+
c0.1,0.3-2.1-0.1-1.6,0.4c0.2,0.3,0.3,0-0.5,0.2c-0.4,0.1-1.5,0.8-0.9,1c0.4,0.2-0.2,0-0.4,0.3c-0.4,0.3-0.1,0.1-0.4,0.4
|
|
358
|
+
c-0.5,0.1-0.3,0.2-0.4,0.6C10.6,124.4,10.8,125.2,10.8,125.1z"/>
|
|
359
|
+
<path id="path5880_1_" class="st41" d="M33,121c0,0,2.6,3.1,3.3,4.4c0.7,1.2,0.8,3.2,0.2,3.6c-0.7,0.5-1.7,0-1.9-0.8
|
|
360
|
+
c-0.2-0.7-0.3-0.9,0-2.4c0.1-0.7-0.2-2.2-0.6-2.9C33.6,122.4,32.7,120.9,33,121z"/>
|
|
361
|
+
</g>
|
|
362
|
+
<g>
|
|
363
|
+
<g>
|
|
364
|
+
<path class="st42" d="M33.1,84.9c0.7-0.7,1.6-0.1,2.3-0.7c0.1-0.1,0.2-0.2,0.3-0.3c0.2-0.2,0.2-0.1,0.5-0.2
|
|
365
|
+
c0.4-0.1,0.6-0.4,0.9-0.6c0.6-0.4,0.2-1.3-0.5-1.2c-0.8,0.2-1.6,0.4-2.4,0.4c-0.8,0.1-0.8,1.3,0,1.3c0.9-0.1,1.9-0.2,2.8-0.5
|
|
366
|
+
c-0.2-0.4-0.3-0.8-0.5-1.2c-0.2,0.1-0.3,0.3-0.5,0.4c-0.1,0.1-0.2,0-0.4,0.1c-0.4,0.1-0.5,0.5-0.8,0.6c-0.3,0.2-0.8,0-1.2,0.1
|
|
367
|
+
c-0.5,0.1-0.9,0.4-1.3,0.8C31.6,84.6,32.5,85.5,33.1,84.9L33.1,84.9z"/>
|
|
368
|
+
</g>
|
|
369
|
+
</g>
|
|
370
|
+
<g>
|
|
371
|
+
<g>
|
|
372
|
+
<path class="st42" d="M46.3,82.3c0.7,0.6,1.1,0.5,1.9,0.7c0.5,0.1,0.5,0.4,0.8,0.6c0.2,0.1,0.5,0.1,0.8,0.2
|
|
373
|
+
c0.5,0.1,0.9,0.5,1.4,0.7c0.7,0.3,1.4,0.7,2.1,1c0.8,0.3,1.1-0.9,0.3-1.2c-0.6-0.2-1.1-0.6-1.7-0.8c-0.3-0.1-0.5-0.2-0.8-0.3
|
|
374
|
+
c-0.2-0.1-0.3-0.3-0.5-0.4c-0.2-0.1-0.3-0.1-0.4-0.1c-0.4-0.1-0.6-0.2-0.9-0.4c-0.6-0.4-1.7-0.3-2.2-0.7
|
|
375
|
+
C46.6,80.8,45.7,81.7,46.3,82.3L46.3,82.3z"/>
|
|
376
|
+
</g>
|
|
377
|
+
</g>
|
|
378
|
+
<g>
|
|
379
|
+
<g>
|
|
380
|
+
<path class="st42" d="M36.7,82.7c0.4-0.3,0.8-0.4,1.2-0.3c0.8,0.2,1.1-1.1,0.3-1.2c-0.8-0.2-1.5,0-2.2,0.4
|
|
381
|
+
C35.4,82.1,36,83.1,36.7,82.7L36.7,82.7z"/>
|
|
382
|
+
</g>
|
|
383
|
+
</g>
|
|
384
|
+
<g>
|
|
385
|
+
<g>
|
|
386
|
+
<path class="st42" d="M42.3,81.6c1.2-0.4,2.9-0.2,3.9,0.6c0.6,0.5,1.5-0.4,0.9-0.9c-1.4-1.1-3.5-1.5-5.1-0.9
|
|
387
|
+
C41.2,80.7,41.6,81.9,42.3,81.6L42.3,81.6z"/>
|
|
388
|
+
</g>
|
|
389
|
+
</g>
|
|
390
|
+
</g>
|
|
391
|
+
<path class="st43" d="M40.2,66h-0.3c-1,0-1.9-0.8-1.9-1.9v0c0-1,0.8-1.9,1.9-1.9h0.3c1,0,1.9,0.8,1.9,1.9v0
|
|
392
|
+
C42.1,65.2,41.2,66,40.2,66z"/>
|
|
393
|
+
<ellipse class="st43" cx="41.1" cy="18" rx="8.9" ry="12"/>
|
|
394
|
+
<path class="st44" d="M36.3,26.7c0.9,0.4,1.8,0.7,2.7,1c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0,0,0.1,0,0.1,0c0.3,0.1,0.7,0.2,1,0.3
|
|
395
|
+
c0.4,0.2,0.9,0.2,1.4,0.2c0.9,0,1.8-0.3,2.6-0.9c0.1,0,0.1-0.1,0.2-0.1c0.1,0.2,0,0.3-0.1,0.4c-0.3,0.3-0.6,0.7-0.9,1.1
|
|
396
|
+
c-0.1,0.1-0.1,0.5,0,0.6c0.1,0.1,0.4,0.2,0.5,0.1c0.2-0.2,0.4-0.4,0.4-0.8c-0.2,0.2-0.3,0.3-0.4,0.4c0,0-0.1,0.2-0.1,0.1
|
|
397
|
+
c-0.1-0.1,0-0.1,0.1-0.2c0.1-0.2,0.2-0.3,0.1-0.6c0-0.2,0-0.2,0.1-0.1c0.1,0.1,0.2,0,0.2,0c0.4-0.3,0.6-0.7,0.8-1.2
|
|
398
|
+
c0.1-0.2,0.1-0.5,0.2-0.8c0.1-0.1,0.2-0.2,0.3-0.2c0.2-0.1,0.4-0.1,0.6-0.2c0.2-0.1,0.4-0.2,0.4-0.5c0.1-0.3,0.1-0.7,0.4-0.9
|
|
399
|
+
c0.1-0.1,0.2-0.3,0-0.4c0,0,0-0.1,0.1-0.1c0,0,0,0,0,0c0,0.6-0.2,1.1-0.4,1.7c-0.1,0.2-0.2,0.3-0.3,0.3c-0.1,0-0.2,0.1-0.2,0.3
|
|
400
|
+
c0.1,0.7,0.1,1.4,0.3,2c0.1,0.4,0.2,0.8,0.4,1.2c-0.4-0.1-0.9-0.1-1.3-0.2c-0.1,0-0.2-0.1-0.2,0c-0.1-0.2-0.2,0-0.2,0.1
|
|
401
|
+
c-0.2,0.3-0.4,0.6-0.6,0.9c-0.2,0.3-0.5,0.5-0.7,0.6c-0.2,0.1-0.3,0.2-0.5,0.3c-0.1,0-0.2,0.1-0.4,0.2c-0.5,0.3-1,0.6-1.5,0.9
|
|
402
|
+
c-0.4,0.2-0.8,0.2-1.3,0.2c-0.1,0-0.2,0-0.3,0c0,0-0.1,0-0.1,0c-0.1-0.2-0.2-0.1-0.3-0.1c-0.1,0-0.1,0-0.2,0
|
|
403
|
+
c-0.2-0.1-0.4-0.1-0.5-0.1c0,0,0,0-0.1,0c-0.1-0.1-0.3,0-0.4-0.1c-0.3-0.1-0.6-0.2-0.9-0.4c0,0,0,0,0,0c-0.4-0.3-0.8-0.5-1.2-0.7
|
|
404
|
+
c-0.8-0.4-1.4-1-2-1.7c-0.2-0.3-0.3-0.5-0.5-0.8c0.1-0.5,0.4-1,0.7-1.4c0.2-0.3,0.2-0.7,0.3-1.1c0-0.1,0-0.1-0.1-0.2
|
|
405
|
+
c-0.2-0.1-0.3-0.3-0.4-0.5c-0.6-0.9-1.1-1.9-1.5-2.9c0,0,0.1,0,0.1,0c0.1,0.1,0.1,0.2,0.2,0.3c0.3,0.4,0.5,1,0.7,1.4
|
|
406
|
+
c0.1,0.3,0.3,0.5,0.5,0.7c0.2,0.2,0.3,0.4,0.5,0.6c0.2,0.1,0.2,0.5,0.4,0.5c0,0,0,0,0,0c0,0.1,0,0.1,0.1,0.1c0,0.1,0.1,0.2,0.2,0.2
|
|
407
|
+
C35.7,26.4,36,26.6,36.3,26.7z M42.5,30c0.2,0,0.6-0.5,0.6-0.7c0-0.1-0.1-0.1-0.1-0.1c-0.2,0.2-0.4,0.3-0.6,0.5c0,0.1-0.1,0.1,0,0.2
|
|
408
|
+
C42.4,30,42.5,30,42.5,30z"/>
|
|
409
|
+
<g>
|
|
410
|
+
<path class="st45" d="M47.5,15.7c0.8-0.1,1.5-0.7,1.9-1.4c0.4-0.7,0.7-1.5,1.2-2.1c0.3-0.3,0.7-0.7,1.1-0.6c0.2,0,0.4,0.2,0.6,0.4
|
|
411
|
+
c0.3,0.4,0.6,0.8,0.7,1.3c0.6-0.2,1-0.6,1.6-0.7c0.6-0.2,1.4,0.2,1.3,0.8c-0.1,0.8-1.4,0.8-1.7,1.5c0.4,0.3,1,0.5,1.6,0.5
|
|
412
|
+
c0.2,0,0.3,0,0.4,0.1c0,0.1,0,0.2,0,0.2c-0.2,1-1.1,1.9-2.1,2.1c-0.9,0.2-1.8-0.1-2.6-0.5c-0.5-0.2-0.9-0.5-1.4-0.6
|
|
413
|
+
c-1.2-0.3-2.5,0.2-3.7,0.7"/>
|
|
414
|
+
</g>
|
|
415
|
+
<g>
|
|
416
|
+
<path class="st45" d="M33.6,16.6c-0.8-0.2-1.3-1-1.5-1.8c-0.3-0.8-0.3-1.6-0.7-2.3c-0.2-0.4-0.5-0.8-0.9-0.8
|
|
417
|
+
c-0.2,0-0.5,0.1-0.6,0.2c-0.4,0.3-0.8,0.6-1,1.1c-0.5-0.3-0.9-0.8-1.4-1.1s-1.4-0.2-1.5,0.4c-0.1,0.8,1.1,1.1,1.3,1.9
|
|
418
|
+
c-0.5,0.2-1.1,0.2-1.6,0.1c-0.1,0-0.3-0.1-0.4,0c-0.1,0.1-0.1,0.1-0.1,0.2c0,1,0.6,2.1,1.6,2.5c0.8,0.4,1.7,0.3,2.6,0.1
|
|
419
|
+
c0.5-0.1,1-0.2,1.5-0.3c1.3,0,2.4,0.8,3.4,1.6"/>
|
|
420
|
+
</g>
|
|
421
|
+
<circle class="st44" cx="41.1" cy="4.5" r="3.1"/>
|
|
422
|
+
<g>
|
|
423
|
+
<ellipse class="st42" cx="36.8" cy="12.3" rx="1.2" ry="1.8"/>
|
|
424
|
+
<ellipse cx="37" cy="11.7" rx="0.6" ry="0.8"/>
|
|
425
|
+
</g>
|
|
426
|
+
<g>
|
|
427
|
+
<ellipse class="st42" cx="45.2" cy="12.3" rx="1.2" ry="1.8"/>
|
|
428
|
+
<ellipse cx="45.5" cy="11.7" rx="0.6" ry="0.8"/>
|
|
429
|
+
</g>
|
|
430
|
+
</svg>
|
game/static/game/sass/game.scss
CHANGED
|
@@ -310,13 +310,23 @@
|
|
|
310
310
|
}
|
|
311
311
|
}
|
|
312
312
|
|
|
313
|
+
.popup_video {
|
|
314
|
+
width: 100%;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.popup_video > iframe {
|
|
318
|
+
width: 100%;
|
|
319
|
+
height: 100%;
|
|
320
|
+
}
|
|
321
|
+
|
|
313
322
|
.ocargo-modal {
|
|
314
323
|
position: fixed;
|
|
315
|
-
width:
|
|
316
|
-
top:
|
|
317
|
-
left:
|
|
324
|
+
width: 61.9vw;
|
|
325
|
+
top: 0;
|
|
326
|
+
left: 0;
|
|
327
|
+
transform: translate(19.5vw, 10vh);
|
|
318
328
|
height: fit-content;
|
|
319
|
-
max-height:
|
|
329
|
+
max-height: 82vh;
|
|
320
330
|
margin-bottom: 10%;
|
|
321
331
|
background-color: white;
|
|
322
332
|
border-radius: 15px;
|
|
@@ -324,6 +334,12 @@
|
|
|
324
334
|
overflow-y: auto;
|
|
325
335
|
}
|
|
326
336
|
|
|
337
|
+
.main_popup_container {
|
|
338
|
+
display: flex;
|
|
339
|
+
flex-direction: row;
|
|
340
|
+
gap: 2rem;
|
|
341
|
+
}
|
|
342
|
+
|
|
327
343
|
.close-reveal-modal {
|
|
328
344
|
font-size: 2.5rem;
|
|
329
345
|
line-height: 1;
|
|
@@ -335,13 +351,13 @@
|
|
|
335
351
|
cursor: pointer;
|
|
336
352
|
}
|
|
337
353
|
|
|
338
|
-
#myModal
|
|
354
|
+
#myModal {
|
|
339
355
|
opacity: 0;
|
|
340
356
|
visibility: hidden;
|
|
341
357
|
transition: opacity 0.4s ease, visibility 0.4s ease-in-out;
|
|
342
358
|
}
|
|
343
359
|
|
|
344
|
-
#myModal
|
|
360
|
+
#myModal.show {
|
|
345
361
|
opacity: 1;
|
|
346
362
|
visibility: visible;
|
|
347
363
|
transition: opacity 0.4s ease, visibility 0.4s ease-in-out;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
game/templates/game/base.html
CHANGED
|
@@ -3,11 +3,29 @@
|
|
|
3
3
|
{% load i18n %}
|
|
4
4
|
{% load app_tags %}
|
|
5
5
|
|
|
6
|
-
{% block
|
|
6
|
+
{% block scripts %}
|
|
7
|
+
{{block.super}}
|
|
8
|
+
<script defer id="data">
|
|
9
|
+
var PATH = {{request.path}}
|
|
10
|
+
</script>
|
|
11
|
+
|
|
12
|
+
<script type='text/javascript' src="{% static 'django_reverse_js/js/reverse.js' %}"></script>
|
|
13
|
+
<script type='text/javascript' src="{% static 'game/js/foundation/vendor/js.cookie.min.js' %}"></script>
|
|
14
|
+
<script type='text/javascript' src="{% url 'rapid-router/javascript-catalog' %}"></script>
|
|
15
|
+
<script type='text/javascript' src="{% static 'game/js/jquery.touchy.min.js' %}"></script>
|
|
16
|
+
{% endblock %}
|
|
17
|
+
|
|
18
|
+
{% block title %}
|
|
19
|
+
{% if "rapidrouter" in request.path %}
|
|
20
|
+
Code for Life - Rapid Router
|
|
21
|
+
{% else %}
|
|
22
|
+
Code for Life - Python Den
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% endblock %}
|
|
7
25
|
|
|
8
26
|
{% block head %}
|
|
9
27
|
{% include 'game/crowdin.html' %}
|
|
10
|
-
<link rel="manifest" href="{% static
|
|
28
|
+
<link rel="manifest" href="{% static 'manifest.json' %}">
|
|
11
29
|
{% endblock head %}
|
|
12
30
|
|
|
13
31
|
{% block css %}
|
|
@@ -44,20 +62,30 @@
|
|
|
44
62
|
{% endif %}
|
|
45
63
|
|
|
46
64
|
{% block nav_ocargo_levels %}
|
|
47
|
-
|
|
65
|
+
{% if "/pythonden/" in request.path %}
|
|
66
|
+
<a class="button button--secondary button--secondary--light" href="{% url 'python_levels' %}">{% trans "Levels" %}</a>
|
|
67
|
+
{% else %}
|
|
68
|
+
<a class="button button--secondary button--secondary--light" href="{% url 'levels' %}">{% trans "Levels" %}</a>
|
|
69
|
+
{% endif %}
|
|
48
70
|
{% endblock nav_ocargo_levels %}
|
|
49
71
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
72
|
+
{% if "/pythonden/" not in request.path %}
|
|
73
|
+
{% block nav_ocargo_create %}
|
|
74
|
+
<a class="button button--secondary button--secondary--light" href="{% url 'level_editor' %}">{% trans "Create" %}</a>
|
|
75
|
+
{% endblock nav_ocargo_create %}
|
|
76
|
+
{% endif %}
|
|
53
77
|
|
|
54
78
|
{% if user|is_logged_in_as_school_user %}
|
|
55
79
|
{% block nav_ocargo_scoreboard %}
|
|
80
|
+
{% if "/pythonden/" in request.path %}
|
|
81
|
+
<a class="button button--secondary button--secondary--light" href="{% url 'python_scoreboard' %}">{% trans "Scoreboard" %}</a>
|
|
82
|
+
{% else %}
|
|
56
83
|
<a class="button button--secondary button--secondary--light" href="{% url 'scoreboard' %}">{% trans "Scoreboard" %}</a>
|
|
84
|
+
{% endif %}
|
|
57
85
|
{% endblock nav_ocargo_scoreboard %}
|
|
58
86
|
{% endif %}
|
|
59
87
|
|
|
60
|
-
{% if user|is_logged_in_as_teacher %}
|
|
88
|
+
{% if user|is_logged_in_as_teacher and "/pythonden/" not in request.path %}
|
|
61
89
|
{% block nav_ocargo_moderate %}
|
|
62
90
|
<a class="button button--secondary button--secondary--light" href="{% url 'level_moderation' %}">{% trans "Moderate" %}</a>
|
|
63
91
|
{% endblock nav_ocargo_moderate %}
|
|
@@ -67,11 +95,3 @@
|
|
|
67
95
|
{% endblock subNav %}
|
|
68
96
|
|
|
69
97
|
{% block content %}{% endblock %}
|
|
70
|
-
|
|
71
|
-
{% block scripts %}
|
|
72
|
-
{{block.super}}
|
|
73
|
-
<script type='text/javascript' src='{% static 'game/js/foundation/vendor/js.cookie.min.js' %}'></script>
|
|
74
|
-
<script type='text/javascript' src='{% url 'js-reverse' %}'></script>
|
|
75
|
-
<script type='text/javascript' src='{% url 'rapid-router/javascript-catalog' %}'></script>
|
|
76
|
-
<script type='text/javascript' src='{% static 'game/js/jquery.touchy.min.js' %}'></script>
|
|
77
|
-
{% endblock %}
|