lesli 5.0.13 → 5.0.14
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.
- checksums.yaml +4 -4
- data/app/assets/config/lesli_manifest.js +3 -6
- data/app/assets/images/lesli/brand/app-icon.svg +45 -39
- data/app/assets/javascripts/lesli/application.js +1 -0
- data/app/controllers/lesli/abouts_controller.rb +16 -14
- data/app/controllers/lesli/application_controller.rb +13 -0
- data/app/controllers/lesli/application_devise_controller.rb +10 -12
- data/app/controllers/lesli/application_lesli_controller.rb +12 -11
- data/app/controllers/lesli/apps_controller.rb +6 -0
- data/app/controllers/lesli/roles_controller.rb +2 -2
- data/app/helpers/lesli/general_helper.rb +18 -5
- data/app/helpers/lesli/html_helper.rb +8 -0
- data/app/helpers/lesli/navigation_helper.rb +30 -11
- data/app/helpers/lesli/system_helper.rb +2 -2
- data/app/helpers/lesli/turbo_helper.rb +58 -0
- data/app/interfaces/lesli/customization_interface.rb +42 -0
- data/app/interfaces/lesli/requester_interface.rb +103 -0
- data/app/interfaces/lesli/responder_interface.rb +127 -0
- data/app/lib/date2.rb +1 -199
- data/app/lib/lesli/courier.rb +54 -0
- data/app/mailers/lesli/application_lesli_mailer.rb +32 -59
- data/app/mailers/lesli/devise_mailer.rb +16 -8
- data/app/models/concerns/account_initializer.rb +27 -68
- data/app/models/concerns/lesli/has_activities.rb +29 -0
- data/app/models/concerns/user_extensions.rb +34 -19
- data/app/models/concerns/user_security.rb +4 -4
- data/app/models/lesli/account.rb +13 -20
- data/{lib/scss/layouts/application-container.scss → app/models/lesli/item/activity.rb} +11 -8
- data/app/models/lesli/role/{power.rb → action.rb} +6 -4
- data/app/models/lesli/role.rb +7 -15
- data/app/models/lesli/shared/catalog.rb +20 -0
- data/app/models/lesli/shared/dashboard.rb +1 -1
- data/app/models/lesli/user/activity.rb +5 -0
- data/app/models/lesli/user/detail.rb +5 -5
- data/app/models/lesli/user/{log.rb → journal.rb} +3 -3
- data/app/models/lesli/user/{power.rb → role.rb} +2 -3
- data/app/models/lesli/user/session.rb +3 -4
- data/app/models/lesli/user.rb +50 -46
- data/app/operators/lesli/controller_operator.rb +3 -1
- data/app/operators/lesli/{role_descriptor_operator.rb → role_operator.rb} +51 -28
- data/app/operators/lesli/user_registration_operator.rb +3 -2
- data/app/services/lesli/application_lesli_service.rb +8 -4
- data/app/services/lesli/role/action_service.rb +58 -0
- data/app/services/lesli/role_service.rb +232 -0
- data/app/services/lesli/{user_session_service.rb → user/session_service.rb} +23 -14
- data/app/services/lesli/user_service.rb +85 -1
- data/app/views/lesli/apps/show.html.erb +52 -0
- data/app/views/lesli/layouts/application-devise.html.erb +5 -7
- data/app/views/lesli/layouts/application-lesli.html.erb +18 -24
- data/app/views/lesli/partials/_application-analytics.html.erb +2 -2
- data/app/views/lesli/partials/_application-data.html.erb +3 -77
- data/app/views/lesli/partials/_application-head.html.erb +7 -4
- data/app/views/lesli/partials/_application-lesli-annoouncements.html.erb +49 -0
- data/app/views/lesli/partials/_application-lesli-header.html.erb +73 -49
- data/app/views/lesli/partials/_application-lesli-javascript.html.erb +3 -16
- data/app/views/lesli/partials/_application-lesli-navigation.html.erb +12 -9
- data/app/views/lesli/partials/{_application-lesli-notices.html.erb → _application-lesli-notifications.html.erb} +10 -8
- data/app/views/lesli/partials/_application-lesli-scss.html.erb +1 -1
- data/app/views/lesli/partials/_application-lesli-sidebar.html.erb +1 -1
- data/app/views/lesli/partials/_application-public-javascript.html.erb +1 -4
- data/app/views/lesli/shared/dashboards/_show.html.erb +63 -0
- data/app/views/lesli/wrappers/_application-devise.html.erb +4 -6
- data/config/importmap.rb +14 -0
- data/config/initializers/lesli.rb +20 -12
- data/config/initializers/lesli_migration_helpers.rb +61 -0
- data/config/locales/translations.en.yml +1 -26
- data/config/locales/translations.es.yml +1 -26
- data/config/locales/translations.fr.yml +1 -26
- data/config/locales/translations.it.yml +1 -26
- data/config/locales/translations.pt.yml +1 -26
- data/config/routes.rb +3 -1
- data/db/migrate/v1/{0010000110_create_lesli_accounts.rb → 0000000110_create_lesli_accounts.rb} +13 -12
- data/db/migrate/v1/0000000210_create_lesli_roles.rb +65 -0
- data/db/migrate/v1/0000000310_create_lesli_users.rb +99 -0
- data/db/migrate/v1/{0010000610_create_lesli_system_controllers.rb → 0000100110_create_lesli_system_controllers.rb} +3 -3
- data/db/migrate/v1/{0010000710_create_lesli_system_controller_actions.rb → 0000100210_create_lesli_system_controller_actions.rb} +3 -4
- data/{lib/scss/layouts/application-content.scss → db/migrate/v1/0000110310_create_lesli_account_settings.rb} +8 -6
- data/{app/models/lesli/user/agent.rb → db/migrate/v1/0000110410_create_lesli_account_activities.rb} +3 -3
- data/db/migrate/v1/0000120210_create_lesli_role_actions.rb +45 -0
- data/db/migrate/v1/{0010001410_create_lesli_account_logs.rb → 0000120310_create_lesli_role_privileges.rb} +8 -8
- data/db/{tables/0010003810_create_user_shortcuts.rb → migrate/v1/0000130210_create_lesli_user_roles.rb} +9 -12
- data/db/migrate/v1/0000130310_create_lesli_user_sessions.rb +56 -0
- data/db/{seed/production.rb → migrate/v1/0000130410_create_lesli_user_activities.rb} +7 -4
- data/db/{tables/0010001110_create_account_locations.rb → migrate2/0000100510_create_lesli_account_locations.rb} +6 -6
- data/db/{tables/0010001510_create_account_currencies.rb → migrate2/0000100610_create_lesli_account_currencies.rb} +4 -4
- data/db/seed/{development/accounts.rb → accounts.rb} +6 -2
- data/db/seed/{production/users.rb → users.rb} +4 -10
- data/db/seed/{tools.rb → xyz.rb} +2 -7
- data/db/seeds.rb +3 -2
- data/db/structure/00000020_catalogs.json +0 -0
- data/lib/generators/{application_lesli_generator.rb → application_lesli_generator_base.rb} +4 -4
- data/lib/generators/lesli/spec/spec_generator.rb +2 -2
- data/lib/generators/lesli/view/USAGE +8 -0
- data/lib/generators/lesli/view/templates/spec-factory.template +17 -0
- data/lib/generators/lesli/view/templates/spec-model.template +70 -0
- data/lib/generators/lesli/view/view_generator.rb +25 -0
- data/lib/lesli/configuration.rb +7 -10
- data/lib/lesli/engine.rb +22 -3
- data/lib/lesli/r_spec.rb +5 -2
- data/lib/lesli/routing.rb +42 -9
- data/lib/lesli/version.rb +2 -2
- data/lib/lesli.rb +11 -0
- data/lib/migrate/common.rb +94 -0
- data/lib/migrate/items/action_structure.rb +51 -0
- data/{db/migrate/v1/0010001210_create_lesli_account_activities.rb → lib/migrate/items/activity_structure.rb} +18 -16
- data/lib/migrate/items/attachment_structure.rb +62 -0
- data/{app/views/lesli/partials/_application-lesli-engines.html.erb → lib/migrate/items/discussion_structure.rb} +19 -27
- data/lib/migrate/items/subscriber_structure.rb +49 -0
- data/lib/migrate/items/version_structure.rb +53 -0
- data/lib/migrate/shared/account_structure.rb +21 -0
- data/lib/migrate/shared/catalog_structure.rb +30 -0
- data/lib/migrate/shared/dashboard_structure.rb +54 -0
- data/lib/migrate/shared/setting_structure.rb +20 -0
- data/lib/rspec/config/spec_coverage.rb +95 -0
- data/{db/migrate/v1/0010001110_create_lesli_account_settings.rb → lib/rspec/factories/lesli_account.rb} +10 -7
- data/{db/seed/development.rb → lib/rspec/factories/lesli_role.rb} +30 -3
- data/{db/seed/test.rb → lib/rspec/factories/lesli_user.rb} +32 -3
- data/lib/rspec/fixtures/files/lesli-icon.png +0 -0
- data/lib/rspec/fixtures/files/test_file_1.docx +0 -0
- data/{db/tables/0010001610_create_account_currency_exchange_rates.rb → lib/rspec/helpers/lesli_helper.rb} +21 -21
- data/lib/rspec/helpers/rails_helper.rb +134 -0
- data/lib/rspec/helpers/response_request_helper.rb +214 -0
- data/lib/rspec/helpers/response_service_helper.rb +66 -0
- data/lib/rspec/helpers/spec_helper.rb +99 -0
- data/lib/rspec/lesli_api_tester.rb +133 -0
- data/lib/rspec/lesli_service_tester.rb +46 -0
- data/{db/tables/0010001410_create_account_files.rb → lib/rspec/testers/controller.rb} +31 -20
- data/lib/rspec/testers/model.rb +36 -0
- data/lib/rspec/testers/request.rb +84 -0
- data/lib/tasks/lesli/db.rake +5 -3
- data/lib/tasks/lesli/git.rake +28 -32
- data/lib/tasks/lesli/github.rake +89 -0
- data/lib/tasks/lesli_tasks.rake +3 -3
- data/readme.md +28 -17
- metadata +134 -394
- data/app/assets/fonts/lesli/Domine/Domine-Variable.ttf +0 -0
- data/app/assets/fonts/lesli/Domine/OFL.txt +0 -97
- data/app/assets/fonts/lesli/MaterialDesign/icons.woff2 +0 -0
- data/app/assets/fonts/lesli/Montserrat/Montserrat-Variable.ttf +0 -0
- data/app/assets/fonts/lesli/OpenSans/OpenSans-Variable.ttf +0 -0
- data/app/assets/fonts/lesli/Remix/remixicon.eot +0 -0
- data/app/assets/fonts/lesli/Remix/remixicon.glyph.json +0 -1
- data/app/assets/fonts/lesli/Remix/remixicon.svg +0 -7633
- data/app/assets/fonts/lesli/Remix/remixicon.symbol.svg +0 -11
- data/app/assets/fonts/lesli/Remix/remixicon.ttf +0 -0
- data/app/assets/fonts/lesli/Remix/remixicon.woff +0 -0
- data/app/assets/fonts/lesli/Remix/remixicon.woff2 +0 -0
- data/app/assets/fonts/lesli/Roboto/LICENSE.txt +0 -202
- data/app/assets/fonts/lesli/Roboto/Roboto-Black.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-BlackItalic.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Bold.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-BoldItalic.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Italic.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Light.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-LightItalic.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Medium.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-MediumItalic.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Regular.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-Thin.ttf +0 -0
- data/app/assets/fonts/lesli/Roboto/Roboto-ThinItalic.ttf +0 -0
- data/app/assets/icons/lesli/engine-admin.svg +0 -1
- data/app/assets/icons/lesli/engine-audit.svg +0 -1
- data/app/assets/icons/lesli/engine-babel.svg +0 -1
- data/app/assets/icons/lesli/engine-bell.svg +0 -1
- data/app/assets/icons/lesli/engine-books.svg +0 -1
- data/app/assets/icons/lesli/engine-calendar.svg +0 -1
- data/app/assets/icons/lesli/engine-dashboard.svg +0 -1
- data/app/assets/icons/lesli/engine-dispatcher.svg +0 -1
- data/app/assets/icons/lesli/engine-focus.svg +0 -1
- data/app/assets/icons/lesli/engine-kb.svg +0 -1
- data/app/assets/icons/lesli/engine-leaf.svg +0 -1
- data/app/assets/icons/lesli/engine-lesli.svg +0 -1
- data/app/assets/icons/lesli/engine-letter.svg +0 -1
- data/app/assets/icons/lesli/engine-mailer.svg +0 -1
- data/app/assets/icons/lesli/engine-one.svg +0 -1
- data/app/assets/icons/lesli/engine-profile.svg +0 -1
- data/app/assets/icons/lesli/engine-proposal.svg +0 -1
- data/app/assets/icons/lesli/engine-scraper.svg +0 -1
- data/app/assets/icons/lesli/engine-security.svg +0 -1
- data/app/assets/icons/lesli/engine-shared.svg +0 -1
- data/app/assets/icons/lesli/engine-shield.svg +0 -1
- data/app/assets/icons/lesli/engine-storage.svg +0 -1
- data/app/assets/icons/lesli/engine-support.svg +0 -1
- data/app/assets/icons/lesli/engine-talk.svg +0 -1
- data/app/assets/icons/lesli/engine-team.svg +0 -1
- data/app/assets/icons/lesli/engine-time.svg +0 -1
- data/app/assets/icons/lesli/locale-en.svg +0 -1
- data/app/assets/icons/lesli/locale-es.svg +0 -1
- data/app/assets/icons/lesli/locale-fr.svg +0 -1
- data/app/assets/icons/lesli/locale-it.svg +0 -1
- data/app/assets/icons/lesli/locale-pt.svg +0 -1
- data/app/assets/icons/readme.md +0 -10
- data/app/assets/javascripts/lesli/templates/application.js +0 -14
- data/app/assets/javascripts/lesli/templates/public.js +0 -14
- data/app/assets/stylesheets/lesli/templates/application.css +0 -2918
- data/app/assets/stylesheets/lesli/templates/public.css +0 -1
- data/app/controllers/lesli/interfaces/application/authorization.rb +0 -107
- data/app/controllers/lesli/interfaces/application/customization.rb +0 -46
- data/app/controllers/lesli/interfaces/application/logger.rb +0 -134
- data/app/controllers/lesli/interfaces/application/requester.rb +0 -84
- data/app/controllers/lesli/interfaces/application/responder.rb +0 -132
- data/app/controllers/lesli/interfaces/controllers/actions.rb +0 -250
- data/app/controllers/lesli/interfaces/controllers/activities.rb +0 -215
- data/app/controllers/lesli/interfaces/controllers/discussions.rb +0 -270
- data/app/controllers/lesli/interfaces/controllers/files.rb +0 -467
- data/app/controllers/lesli/interfaces/controllers/subscribers.rb +0 -234
- data/app/lib/lesli/system.rb +0 -110
- data/app/models/lesli/cloud_object/action.rb +0 -70
- data/app/models/lesli/cloud_object/activity.rb +0 -311
- data/app/models/lesli/cloud_object/custom_field.rb +0 -158
- data/app/models/lesli/cloud_object/discussion.rb +0 -219
- data/app/models/lesli/cloud_object/subscriber.rb +0 -186
- data/app/operators/lesli/descriptor_privilege_operator.rb +0 -75
- data/app/views/lesli/emails/devise_mailer/confirmation_instructions.html.erb +0 -23
- data/app/views/lesli/emails/devise_mailer/reset_password_instructions.html.erb +0 -23
- data/app/views/lesli/partials/_application-lesli-icons.html.erb +0 -1
- data/config/initializers/devise.rb +0 -336
- data/db/seed/development/users.rb +0 -52
- data/db/seed/production/accounts.rb +0 -50
- data/db/structure/00000000_people.json +0 -34
- data/db/structure/00000003_actions.json +0 -14
- data/db/structure/00000004_activities.json +0 -20
- data/db/structure/00000005_discussions.json +0 -8
- data/db/structure/00000006_files.json +0 -32
- data/db/structure/00000007_subscribers.json +0 -11
- data/db/structure/00000501_dashboards.json +0 -14
- data/db/structure/00000502_dashboard_components.json +0 -23
- data/db/tables/0010003410_create_user_activities.rb +0 -51
- data/db/tables/0010003710_create_user_codes.rb +0 -43
- data/db/tables/0010004110_create_user_tokens.rb +0 -45
- data/db/tables/0010005610_create_role_activities.rb +0 -50
- data/db/tables/0010009010_create_feedbacks.rb +0 -56
- data/lib/mailer_previews/devise_mailer_preview.rb +0 -49
- data/lib/scss/cloud-objects/discussion.scss +0 -80
- data/lib/scss/cloud-objects/file.scss +0 -138
- data/lib/scss/components/keypad.scss +0 -109
- data/lib/scss/elements/autocomplete.scss +0 -72
- data/lib/scss/elements/card.scss +0 -37
- data/lib/scss/elements/empty.scss +0 -43
- data/lib/scss/elements/file-uploader.scss +0 -74
- data/lib/scss/elements/gallery.scss +0 -98
- data/lib/scss/elements/input-tag.scss +0 -73
- data/lib/scss/elements/loading.scss +0 -63
- data/lib/scss/elements/map.scss +0 -107
- data/lib/scss/elements/navbar.scss +0 -115
- data/lib/scss/elements/table.scss +0 -118
- data/lib/scss/elements/toolbar.scss +0 -66
- data/lib/scss/fonts/families.scss +0 -47
- data/lib/scss/fonts/mdicons.scss +0 -82
- data/lib/scss/fonts/remixicons.scss +0 -2602
- data/lib/scss/helpers/display.scss +0 -44
- data/lib/scss/helpers/tooltip.scss +0 -91
- data/lib/scss/layouts/application-announcements.scss +0 -40
- data/lib/scss/layouts/application-component.scss +0 -39
- data/lib/scss/layouts/application-engines.scss +0 -125
- data/lib/scss/layouts/application-footer.scss +0 -102
- data/lib/scss/layouts/application-header.scss +0 -91
- data/lib/scss/layouts/application-navigation.scss +0 -79
- data/lib/scss/layouts/application-search.scss +0 -71
- data/lib/scss/layouts/application-sidebar.scss +0 -219
- data/lib/scss/overrides/notification.scss +0 -75
- data/lib/scss/overrides/sweetalert.scss +0 -106
- data/lib/scss/pages/devise-simple.scss +0 -89
- data/lib/scss/pages/devise.scss +0 -179
- data/lib/scss/pages/invites.scss +0 -81
- data/lib/scss/panels/panel-announcements.scss +0 -56
- data/lib/scss/panels/panel-notification.scss +0 -67
- data/lib/scss/panels/panel-profile.scss +0 -62
- data/lib/scss/panels/panel-support-ticket.scss +0 -56
- data/lib/scss/panels/panel-tasks.scss +0 -41
- data/lib/scss/settings/variables.scss +0 -148
- data/lib/scss/shared/workflow-status-progress.scss +0 -135
- data/lib/scss/templates/application.scss +0 -127
- data/lib/scss/templates/component.scss +0 -39
- data/lib/scss/templates/dashboards.scss +0 -53
- data/lib/scss/templates/empty.scss +0 -42
- data/lib/scss/templates/pdf.scss +0 -45
- data/lib/scss/templates/public.scss +0 -72
- data/lib/vue/application.js +0 -285
- data/lib/vue/cloudobjects/discussion/content.vue +0 -62
- data/lib/vue/cloudobjects/discussion/element.vue +0 -170
- data/lib/vue/cloudobjects/discussion/filters.vue +0 -108
- data/lib/vue/cloudobjects/discussion/new.vue +0 -134
- data/lib/vue/cloudobjects/discussion.vue +0 -99
- data/lib/vue/cloudobjects/stores/discussion.js +0 -212
- data/lib/vue/layouts/application-announcements.vue +0 -78
- data/lib/vue/layouts/application-component.vue +0 -38
- data/lib/vue/layouts/application-container.vue +0 -48
- data/lib/vue/layouts/application-engines.vue +0 -66
- data/lib/vue/layouts/application-footer.vue +0 -123
- data/lib/vue/layouts/application-header.vue +0 -252
- data/lib/vue/layouts/application-navbar.vue +0 -110
- data/lib/vue/layouts/application-search.vue +0 -86
- data/lib/vue/layouts/application-sidebar.vue +0 -63
- data/lib/vue/pages/errors/app.js +0 -32
- data/lib/vue/pages/invites/app.js +0 -76
- data/lib/vue/pages/mfas/application.js +0 -77
- data/lib/vue/pages/onboarding/application.js +0 -45
- data/lib/vue/pages/onboarding/components/address.vue +0 -120
- data/lib/vue/pages/onboarding/components/buttons.vue +0 -67
- data/lib/vue/pages/onboarding/components/contact.vue +0 -148
- data/lib/vue/pages/onboarding/components/date-time.vue +0 -265
- data/lib/vue/pages/onboarding/components/finish.vue +0 -62
- data/lib/vue/pages/onboarding/components/general-info.vue +0 -93
- data/lib/vue/pages/onboarding/components/indicators.vue +0 -78
- data/lib/vue/pages/onboarding/components/welcome.vue +0 -66
- data/lib/vue/pages/onboarding/show.vue +0 -67
- data/lib/vue/pages/onboarding/store.js +0 -165
- data/lib/vue/pages/otps/application.js +0 -90
- data/lib/vue/pages/passes/application.js +0 -80
- data/lib/vue/pages/websites/application.js +0 -34
- data/lib/vue/panels/panel-announcements.vue +0 -248
- data/lib/vue/panels/panel-bell-notifications.vue +0 -102
- data/lib/vue/panels/panel-files.vue +0 -281
- data/lib/vue/panels/panel-profile.vue +0 -76
- data/lib/vue/panels/panel-support-tickets.vue +0 -163
- data/lib/vue/panels/panel-tasks.vue +0 -124
- data/lib/vue/panels/stores/bell-notifications.js +0 -46
- data/lib/vue/panels/stores/support-tickets.js +0 -103
- data/lib/vue/public.js +0 -83
- data/lib/vue/refactor/shared/cloudobjects/action.vue +0 -193
- data/lib/vue/refactor/shared/cloudobjects/file/grid.vue +0 -215
- data/lib/vue/refactor/shared/cloudobjects/file/list.vue +0 -106
- data/lib/vue/refactor/shared/cloudobjects/file.vue +0 -145
- data/lib/vue/refactor/shared/workflows2/apps/actions/form.vue +0 -232
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/chatroom-form.vue +0 -103
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/cloud-object-clone-form.vue +0 -125
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/cloud-object-file-form.vue +0 -102
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/email-form.vue +0 -190
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/notification-form.vue +0 -124
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/send-cloud-object-file.vue +0 -170
- data/lib/vue/refactor/shared/workflows2/apps/actions/forms/task-form.vue +0 -258
- data/lib/vue/refactor/shared/workflows2/apps/actions/index.vue +0 -146
- data/lib/vue/refactor/shared/workflows2/apps/checks/form.vue +0 -200
- data/lib/vue/refactor/shared/workflows2/apps/checks/index.vue +0 -160
- data/lib/vue/refactor/shared/workflows2/apps/index.vue +0 -177
- data/lib/vue/refactor/shared/workflows2/apps/new.vue +0 -97
- data/lib/vue/refactor/shared/workflows2/apps/show.vue +0 -146
- data/lib/vue/refactor/shared/workflows2/components/associations.vue +0 -215
- data/lib/vue/refactor/shared/workflows2/components/chart.vue +0 -91
- data/lib/vue/refactor/shared/workflows2/components/workflow-form.vue +0 -466
- data/lib/vue/refactor/shared/workflows2/components/workflow-status-dropdown.vue +0 -129
- data/lib/vue/refactor/stores/cloudobjects/action.js +0 -181
- data/lib/vue/refactor/stores/cloudobjects/file.js +0 -205
- data/lib/vue/refactor/stores/entities/announcements.js +0 -75
- data/lib/vue/refactor/stores/entities/dashboard.js +0 -251
- data/lib/vue/refactor/stores/entities/workflow.js +0 -185
- data/lib/vue/refactor/stores/panels/announcements.js +0 -153
- data/lib/vue/refactor/stores/panels/notification.js +0 -114
- data/lib/vue/refactor/stores/panels/task.js +0 -66
- data/lib/vue/refactor/stores/panels/tickets.js +0 -129
- data/lib/vue/refactor/stores/role.js +0 -243
- data/lib/vue/refactor/stores/translations.json +0 -60
- data/lib/vue/refactor/stores/users.js +0 -98
- data/lib/vue/shared/dashboards/apps/edit.vue +0 -215
- data/lib/vue/shared/dashboards/apps/index.vue +0 -112
- data/lib/vue/shared/dashboards/apps/new.vue +0 -89
- data/lib/vue/shared/dashboards/apps/show.vue +0 -88
- data/lib/vue/shared/dashboards/components/form.vue +0 -246
- data/lib/vue/shared/services/firebase.js +0 -163
- data/lib/vue/shared/services/translator.js +0 -87
- data/lib/vue/shared/stores/command.js +0 -154
- data/lib/vue/shared/stores/dashboard.js +0 -253
- data/lib/vue/shared/stores/layout.js +0 -61
- data/lib/vue/shared/stores/systemController.js +0 -67
- data/lib/vue/shared/stores/users.js +0 -57
- data/lib/vue/stores/translations.json +0 -177
- data/lib/vue/translation.js +0 -45
- data/lib/webpack/base.js +0 -191
- data/lib/webpack/core.js +0 -93
- data/lib/webpack/engines.js +0 -167
- data/lib/webpack/root.js +0 -105
- data/lib/webpack/version.js +0 -78
- data/vendor/bulma/LICENSE +0 -21
- data/vendor/bulma/bulma.sass +0 -10
- data/vendor/bulma/css/bulma-rtl.css +0 -11851
- data/vendor/bulma/css/bulma-rtl.min.css +0 -1
- data/vendor/bulma/css/bulma.css +0 -11851
- data/vendor/bulma/css/bulma.min.css +0 -1
- data/vendor/bulma/sass/base/_all.sass +0 -6
- data/vendor/bulma/sass/base/animations.sass +0 -5
- data/vendor/bulma/sass/base/generic.sass +0 -145
- data/vendor/bulma/sass/base/helpers.sass +0 -1
- data/vendor/bulma/sass/base/minireset.sass +0 -79
- data/vendor/bulma/sass/components/_all.sass +0 -15
- data/vendor/bulma/sass/components/breadcrumb.sass +0 -77
- data/vendor/bulma/sass/components/card.sass +0 -103
- data/vendor/bulma/sass/components/dropdown.sass +0 -83
- data/vendor/bulma/sass/components/level.sass +0 -79
- data/vendor/bulma/sass/components/media.sass +0 -59
- data/vendor/bulma/sass/components/menu.sass +0 -59
- data/vendor/bulma/sass/components/message.sass +0 -101
- data/vendor/bulma/sass/components/modal.sass +0 -117
- data/vendor/bulma/sass/components/navbar.sass +0 -446
- data/vendor/bulma/sass/components/pagination.sass +0 -167
- data/vendor/bulma/sass/components/panel.sass +0 -121
- data/vendor/bulma/sass/components/tabs.sass +0 -176
- data/vendor/bulma/sass/elements/_all.sass +0 -16
- data/vendor/bulma/sass/elements/box.sass +0 -26
- data/vendor/bulma/sass/elements/button.sass +0 -357
- data/vendor/bulma/sass/elements/container.sass +0 -29
- data/vendor/bulma/sass/elements/content.sass +0 -162
- data/vendor/bulma/sass/elements/form.sass +0 -1
- data/vendor/bulma/sass/elements/icon.sass +0 -46
- data/vendor/bulma/sass/elements/image.sass +0 -73
- data/vendor/bulma/sass/elements/notification.sass +0 -52
- data/vendor/bulma/sass/elements/other.sass +0 -31
- data/vendor/bulma/sass/elements/progress.sass +0 -73
- data/vendor/bulma/sass/elements/table.sass +0 -134
- data/vendor/bulma/sass/elements/tag.sass +0 -140
- data/vendor/bulma/sass/elements/title.sass +0 -70
- data/vendor/bulma/sass/form/_all.sass +0 -9
- data/vendor/bulma/sass/form/checkbox-radio.sass +0 -22
- data/vendor/bulma/sass/form/file.sass +0 -184
- data/vendor/bulma/sass/form/input-textarea.sass +0 -66
- data/vendor/bulma/sass/form/select.sass +0 -88
- data/vendor/bulma/sass/form/shared.sass +0 -60
- data/vendor/bulma/sass/form/tools.sass +0 -215
- data/vendor/bulma/sass/grid/_all.sass +0 -5
- data/vendor/bulma/sass/grid/columns.sass +0 -513
- data/vendor/bulma/sass/grid/tiles.sass +0 -36
- data/vendor/bulma/sass/helpers/_all.sass +0 -12
- data/vendor/bulma/sass/helpers/color.sass +0 -39
- data/vendor/bulma/sass/helpers/flexbox.sass +0 -35
- data/vendor/bulma/sass/helpers/float.sass +0 -10
- data/vendor/bulma/sass/helpers/other.sass +0 -14
- data/vendor/bulma/sass/helpers/overflow.sass +0 -2
- data/vendor/bulma/sass/helpers/position.sass +0 -7
- data/vendor/bulma/sass/helpers/spacing.sass +0 -31
- data/vendor/bulma/sass/helpers/typography.sass +0 -103
- data/vendor/bulma/sass/helpers/visibility.sass +0 -122
- data/vendor/bulma/sass/layout/_all.sass +0 -6
- data/vendor/bulma/sass/layout/footer.sass +0 -11
- data/vendor/bulma/sass/layout/hero.sass +0 -153
- data/vendor/bulma/sass/layout/section.sass +0 -17
- data/vendor/bulma/sass/utilities/_all.sass +0 -9
- data/vendor/bulma/sass/utilities/animations.sass +0 -1
- data/vendor/bulma/sass/utilities/controls.sass +0 -49
- data/vendor/bulma/sass/utilities/derived-variables.sass +0 -114
- data/vendor/bulma/sass/utilities/extends.sass +0 -25
- data/vendor/bulma/sass/utilities/functions.sass +0 -135
- data/vendor/bulma/sass/utilities/initial-variables.sass +0 -79
- data/vendor/bulma/sass/utilities/mixins.sass +0 -303
- data/vendor/lesli-css/_index.scss +0 -34
- data/vendor/lesli-css/lesli.scss +0 -51
- data/vendor/lesli-css/license +0 -28
- data/vendor/lesli-css/src/base/fonts.scss +0 -50
- data/vendor/lesli-css/src/base/normalize.scss +0 -118
- data/vendor/lesli-css/src/components/blockquote.scss +0 -61
- data/vendor/lesli-css/src/components/columns.scss +0 -92
- data/vendor/lesli-css/src/components/container.scss +0 -47
- data/vendor/lesli-css/src/components/navigation.scss +0 -59
- data/vendor/lesli-css/src/functions/colors.scss +0 -184
- data/vendor/lesli-css/src/helpers/units.scss +0 -44
- data/vendor/lesli-css/src/mixins/breakpoint.scss +0 -184
- data/vendor/lesli-css/src/mixins/flex.scss +0 -80
- data/vendor/lesli-css/src/mixins/scrollbar.scss +0 -46
- data/vendor/lesli-css/src/settings/variables.scss +0 -26
- data/vendor/lesli-css/tests/base/normalize.spec.scss +0 -125
- data/vendor/lesli-css/tests/functions/colors.spec.scss +0 -117
- data/vendor/lesli-css/tests/mixins/breakpoint.spec.scss +0 -429
- data/vendor/lesli-css/tests/mixins/scrollbar.spec.scss +0 -82
- data/vendor/lesli-css/vendor/normalize.scss +0 -351
- data/vendor/remixicon/License +0 -201
- data/vendor/remixicon/fonts/remixicon.css +0 -2583
- /data/{vendor/lesli-css/src/components/grid.scss → app/assets/stylesheets/lesli/application.css} +0 -0
- /data/db/migrate/v1/{0010001010_create_lesli_account_details.rb → 0000110210_create_lesli_account_details.rb} +0 -0
- /data/db/structure/{00000008_custom_fields.json → 00000300_custom_fields.json} +0 -0
- /data/lib/assets/javascripts/lesli/{i18n.js → i18n_js} +0 -0
Binary file
|
Binary file
|
Binary file
|
@@ -1,202 +0,0 @@
|
|
1
|
-
|
2
|
-
Apache License
|
3
|
-
Version 2.0, January 2004
|
4
|
-
http://www.apache.org/licenses/
|
5
|
-
|
6
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
-
|
8
|
-
1. Definitions.
|
9
|
-
|
10
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
-
|
13
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
-
the copyright owner that is granting the License.
|
15
|
-
|
16
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
-
other entities that control, are controlled by, or are under common
|
18
|
-
control with that entity. For the purposes of this definition,
|
19
|
-
"control" means (i) the power, direct or indirect, to cause the
|
20
|
-
direction or management of such entity, whether by contract or
|
21
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
-
|
24
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
-
exercising permissions granted by this License.
|
26
|
-
|
27
|
-
"Source" form shall mean the preferred form for making modifications,
|
28
|
-
including but not limited to software source code, documentation
|
29
|
-
source, and configuration files.
|
30
|
-
|
31
|
-
"Object" form shall mean any form resulting from mechanical
|
32
|
-
transformation or translation of a Source form, including but
|
33
|
-
not limited to compiled object code, generated documentation,
|
34
|
-
and conversions to other media types.
|
35
|
-
|
36
|
-
"Work" shall mean the work of authorship, whether in Source or
|
37
|
-
Object form, made available under the License, as indicated by a
|
38
|
-
copyright notice that is included in or attached to the work
|
39
|
-
(an example is provided in the Appendix below).
|
40
|
-
|
41
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
-
form, that is based on (or derived from) the Work and for which the
|
43
|
-
editorial revisions, annotations, elaborations, or other modifications
|
44
|
-
represent, as a whole, an original work of authorship. For the purposes
|
45
|
-
of this License, Derivative Works shall not include works that remain
|
46
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
-
the Work and Derivative Works thereof.
|
48
|
-
|
49
|
-
"Contribution" shall mean any work of authorship, including
|
50
|
-
the original version of the Work and any modifications or additions
|
51
|
-
to that Work or Derivative Works thereof, that is intentionally
|
52
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
-
means any form of electronic, verbal, or written communication sent
|
56
|
-
to the Licensor or its representatives, including but not limited to
|
57
|
-
communication on electronic mailing lists, source code control systems,
|
58
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
-
Licensor for the purpose of discussing and improving the Work, but
|
60
|
-
excluding communication that is conspicuously marked or otherwise
|
61
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
-
|
63
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
-
on behalf of whom a Contribution has been received by Licensor and
|
65
|
-
subsequently incorporated within the Work.
|
66
|
-
|
67
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
-
this License, each Contributor hereby grants to You a perpetual,
|
69
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
-
copyright license to reproduce, prepare Derivative Works of,
|
71
|
-
publicly display, publicly perform, sublicense, and distribute the
|
72
|
-
Work and such Derivative Works in Source or Object form.
|
73
|
-
|
74
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
-
this License, each Contributor hereby grants to You a perpetual,
|
76
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
-
(except as stated in this section) patent license to make, have made,
|
78
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
-
where such license applies only to those patent claims licensable
|
80
|
-
by such Contributor that are necessarily infringed by their
|
81
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
-
with the Work to which such Contribution(s) was submitted. If You
|
83
|
-
institute patent litigation against any entity (including a
|
84
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
-
or a Contribution incorporated within the Work constitutes direct
|
86
|
-
or contributory patent infringement, then any patent licenses
|
87
|
-
granted to You under this License for that Work shall terminate
|
88
|
-
as of the date such litigation is filed.
|
89
|
-
|
90
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
-
Work or Derivative Works thereof in any medium, with or without
|
92
|
-
modifications, and in Source or Object form, provided that You
|
93
|
-
meet the following conditions:
|
94
|
-
|
95
|
-
(a) You must give any other recipients of the Work or
|
96
|
-
Derivative Works a copy of this License; and
|
97
|
-
|
98
|
-
(b) You must cause any modified files to carry prominent notices
|
99
|
-
stating that You changed the files; and
|
100
|
-
|
101
|
-
(c) You must retain, in the Source form of any Derivative Works
|
102
|
-
that You distribute, all copyright, patent, trademark, and
|
103
|
-
attribution notices from the Source form of the Work,
|
104
|
-
excluding those notices that do not pertain to any part of
|
105
|
-
the Derivative Works; and
|
106
|
-
|
107
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
-
distribution, then any Derivative Works that You distribute must
|
109
|
-
include a readable copy of the attribution notices contained
|
110
|
-
within such NOTICE file, excluding those notices that do not
|
111
|
-
pertain to any part of the Derivative Works, in at least one
|
112
|
-
of the following places: within a NOTICE text file distributed
|
113
|
-
as part of the Derivative Works; within the Source form or
|
114
|
-
documentation, if provided along with the Derivative Works; or,
|
115
|
-
within a display generated by the Derivative Works, if and
|
116
|
-
wherever such third-party notices normally appear. The contents
|
117
|
-
of the NOTICE file are for informational purposes only and
|
118
|
-
do not modify the License. You may add Your own attribution
|
119
|
-
notices within Derivative Works that You distribute, alongside
|
120
|
-
or as an addendum to the NOTICE text from the Work, provided
|
121
|
-
that such additional attribution notices cannot be construed
|
122
|
-
as modifying the License.
|
123
|
-
|
124
|
-
You may add Your own copyright statement to Your modifications and
|
125
|
-
may provide additional or different license terms and conditions
|
126
|
-
for use, reproduction, or distribution of Your modifications, or
|
127
|
-
for any such Derivative Works as a whole, provided Your use,
|
128
|
-
reproduction, and distribution of the Work otherwise complies with
|
129
|
-
the conditions stated in this License.
|
130
|
-
|
131
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
-
any Contribution intentionally submitted for inclusion in the Work
|
133
|
-
by You to the Licensor shall be under the terms and conditions of
|
134
|
-
this License, without any additional terms or conditions.
|
135
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
-
the terms of any separate license agreement you may have executed
|
137
|
-
with Licensor regarding such Contributions.
|
138
|
-
|
139
|
-
6. Trademarks. This License does not grant permission to use the trade
|
140
|
-
names, trademarks, service marks, or product names of the Licensor,
|
141
|
-
except as required for reasonable and customary use in describing the
|
142
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
-
|
144
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
-
agreed to in writing, Licensor provides the Work (and each
|
146
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
-
implied, including, without limitation, any warranties or conditions
|
149
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
-
appropriateness of using or redistributing the Work and assume any
|
152
|
-
risks associated with Your exercise of permissions under this License.
|
153
|
-
|
154
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
-
whether in tort (including negligence), contract, or otherwise,
|
156
|
-
unless required by applicable law (such as deliberate and grossly
|
157
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
-
liable to You for damages, including any direct, indirect, special,
|
159
|
-
incidental, or consequential damages of any character arising as a
|
160
|
-
result of this License or out of the use or inability to use the
|
161
|
-
Work (including but not limited to damages for loss of goodwill,
|
162
|
-
work stoppage, computer failure or malfunction, or any and all
|
163
|
-
other commercial damages or losses), even if such Contributor
|
164
|
-
has been advised of the possibility of such damages.
|
165
|
-
|
166
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
-
or other liability obligations and/or rights consistent with this
|
170
|
-
License. However, in accepting such obligations, You may act only
|
171
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
-
of any other Contributor, and only if You agree to indemnify,
|
173
|
-
defend, and hold each Contributor harmless for any liability
|
174
|
-
incurred by, or claims asserted against, such Contributor by reason
|
175
|
-
of your accepting any such warranty or additional liability.
|
176
|
-
|
177
|
-
END OF TERMS AND CONDITIONS
|
178
|
-
|
179
|
-
APPENDIX: How to apply the Apache License to your work.
|
180
|
-
|
181
|
-
To apply the Apache License to your work, attach the following
|
182
|
-
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
-
replaced with your own identifying information. (Don't include
|
184
|
-
the brackets!) The text should be enclosed in the appropriate
|
185
|
-
comment syntax for the file format. We also recommend that a
|
186
|
-
file or class name and description of purpose be included on the
|
187
|
-
same "printed page" as the copyright notice for easier
|
188
|
-
identification within third-party archives.
|
189
|
-
|
190
|
-
Copyright [yyyy] [name of copyright owner]
|
191
|
-
|
192
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
-
you may not use this file except in compliance with the License.
|
194
|
-
You may obtain a copy of the License at
|
195
|
-
|
196
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
-
|
198
|
-
Unless required by applicable law or agreed to in writing, software
|
199
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
-
See the License for the specific language governing permissions and
|
202
|
-
limitations under the License.
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 228 256"><path d="M90.7 1.7c-.3 1-1.8 7.2-3.4 13.7l-2.8 11.9-5.3 2.4-5.4 2.4-10.2-6.2c-5.5-3.5-11-6.8-12.1-7.5-1.9-1.3-3.3-.1-18.3 14.9L17.1 49.5l7.5 12.2 7.5 12.1-2.4 5.4-2.4 5.4-13.7 3.3L0 91.2v45.7l3.8 1c2 .5 8.1 2 13.6 3.2l9.8 2.3 2.4 5.5 2.4 5.4-7.5 12.1-7.5 12.1 11.2 10.6 11.2 10.7 4.4-9.1c3.7-7.5 6-10.7 13.1-17.7 6.9-6.9 10.3-9.5 17.3-13l8.8-4.3-4.8-5.1c-6-6.4-8.7-10.8-11.3-18.2-2.9-8.5-3.4-18.5-1.5-26.8 9.1-38.7 56.2-52.7 84.1-25.1 14 13.9 18.8 33.7 12.6 51.9-2.6 7.4-5.3 11.8-11.3 18.2l-4.8 5.1 8.8 4.3c7 3.5 10.4 6.1 17.3 13 7.3 7.2 9.4 10.1 13 17.8 2.4 5 4.6 9.1 4.9 9.2.3 0 5.1-4.9 10.7-10.8l10.1-10.8-7.4-12.1-7.4-12 2.4-5.4 2.4-5.5 9.8-2.3c5.5-1.2 11.6-2.7 13.7-3.2l3.7-1V91.2l-13.6-3.3-13.7-3.3-2.4-5.4-2.4-5.4 7.5-12.1 7.5-12.2-16.1-16.2c-15-15-16.4-16.2-18.3-14.9-1.1.7-6.6 4-12.1 7.5l-10.2 6.2-5.4-2.4-5.3-2.4-2.8-11.9c-1.6-6.5-3.1-12.7-3.4-13.7C136.9.1 134.9 0 114 0S91.1.1 90.7 1.7Z"/><path d="M103.3 83.1c-8.5 2.7-16.9 10.4-20.8 19.1-7.7 17 0 37.5 17 45.8 4.3 2.2 6.4 2.5 15 2.5s10.7-.3 15-2.5c17-8.3 24.7-28.8 17-45.8-4-8.9-12.3-16.4-21.1-19.2-8.2-2.5-14.1-2.5-22.1.1ZM95 168.6c-15.8 3.4-29.9 14-37.3 28.1-5.5 10.5-6.7 17.5-6.7 40V256h127v-19.3c0-22.5-1.2-29.5-6.7-40-7.5-14.3-21.6-24.8-37.8-28.2-8.8-1.8-29.8-1.8-38.5.1Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 43.8 48.09"><path d="M36.5 12.29c-4.3-4.3-9-9.1-12.2-12.2 3.7 3.8 8.4 8.5 12.2 12.2Z" stroke="#000" stroke-miterlimit="10" stroke-width=".25"/><path d="m19.2 38.09.1-.3q-.1 0-.2-.1l.1.4Z"/><path d="m39.5 15.29-3-3 3 3Z" stroke="#000" stroke-miterlimit="10" stroke-width=".25"/><path d="m33.3 35.89.1-.4-.2.2.1.2z"/><path d="M31.26 40.61c-.13.04-.27.05-.41.05-.41 0-.79-.16-1.08-.45-.29-.29-.44-.67-.44-1.08 0-.39.15-.75.4-1.03a11.176 11.176 0 0 1-5.7 1.55c-1.31 0-2.62-.24-3.88-.68l-.35 1.61c-.1.1-.3.3-.6.3-.2 0-.4-.2-.5-.4l-.56-2.45c-.8-.47-1.57-1.04-2.26-1.72a11.167 11.167 0 0 1-3.38-7.98c-.01-2.25.62-4.4 1.82-6.25l-.72-3.01-4.1 8.4c-.1.2-.3.3-.4.3H1c-.3 0-.5-.2-.5-.5s.2-.5.5-.5h7.7l4.6-9.4c.1-.2.3-.3.5-.3s.4.2.4.4l.86 3.58c.25-.31.52-.62.81-.91 4.45-4.46 11.7-4.46 16.16 0 1.82 1.82 2.95 4.14 3.27 6.63h3.4c.3 0 .5.2.5.5s-.2.5-.5.5h-3.32c0 .15.02.3.02.45 0 2.07-.57 4.06-1.61 5.81.6-.58 1.55-.58 2.14.01.29.29.44.67.44 1.08 0 .14-.02.28-.05.41l3.18 3.18V15.39l-.1-.1H28.7c-2.4 0-4.4-2-4.4-4.4V.09H4.4C2 .09 0 2.09 0 4.49v39c0 2.4 2 4.4 4.4 4.4h30.7c.95 0 1.82-.32 2.55-.89l-6.39-6.39Z"/><path d="m29.718 35.787 1.768-1.768 4.454 4.455-1.767 1.768z"/><path d="M16.37 20.66c-4.2 4.2-4.2 11 0 15.1s11 4.2 15.1 0c4.2-4.2 4.2-10.9 0-15.1s-10.9-4.2-15.1 0Zm13.2 13.2c-3.1 3.1-8.2 3.1-11.3 0s-3.1-8.2 0-11.4c3.1-3.1 8.2-3.1 11.3 0 3.2 3.2 3.2 8.3 0 11.4Z"/><path d="M28.47 23.96c-2.4-2.4-6.3-2.4-8.7 0l1.7 1.7c2.1-2.1 5.6-2.1 7.7 0 .4.4.8.9 1 1.4-.3-1.1-.9-2.2-1.7-3.1Z" style="isolation:isolate"/><path d="M35.37 34.56c-.3-.3-.8-.3-1.1 0l-4 4c-.3.3-.3.8 0 1.1s.8.3 1.1 0l7.6 7.6c1.1 1.1 2.9 1.1 4 0s1.1-2.9 0-4l-7.6-7.6c.3-.3.3-.8 0-1.1Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50.77 47.31"><path d="M4 0C1.8 0 0 1.8 0 4v22c0 2.2 1.8 4 4 4h26V0H4Zm18 12h-2.18a10.86 10.86 0 0 1-1.8 4.57l-.57.82-.07-.05c-.33.42-.71.83-1.12 1.23.9.65 1.93 1.3 3.11 1.94l.88.48-.96 1.76-.88-.48c-1.22-.66-2.5-1.44-3.71-2.36-1.05.8-2.27 1.58-3.74 2.36l-.88.47-.94-1.76.88-.47a27.5 27.5 0 0 0 3.14-1.93c-1.75-1.69-3.14-3.82-3.59-6.59H8v-2h6v-2h2v2h6v2Z"/><path d="M11.6 12c.39 1.98 1.38 3.7 3.12 5.31.66-.63 1.2-1.27 1.65-1.95l.55-.84h.02c.42-.78.7-1.63.87-2.52h-6.2Z"/><path d="M8 12h5.95v2H8zm30.13 22.31-1.34-4.26-1.32 4.26h2.66zm-7.36 4h12v4h-12zm1-16h8v4h-8z"/><path d="M46.77 17.31H30.79v13.45H20.77v16.55h26c2.2 0 4-1.8 4-4v-22c0-2.2-1.8-4-4-4ZM21.21 45.74V31.2h8.77l-8.77 14.54Zm18.51-6.43-.95-3h-3.91l-.93 3-1.91-.59 4.74-15.35 4.87 15.34-1.91.61Z"/><path d="M20.77 47.31V30.7h10l-10 16.61Zm.98-15.62v12.08l7.27-12.08h-7.27Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 56 66"><circle cx="28" cy="4" r="4"/><path d="M51.5 48c-3.4-2.8-7.5-7.55-7.5-28H12c0 20.45-4.1 25.2-7.5 28C2.07 50 0 51.01 0 56h56c0-4.99-2.07-6-4.5-8Zm-8.43-32C41.61 12.51 37.81 8 28 8s-13.61 4.51-15.07 8h30.14ZM28 66c4.42 0 8-3.58 8-8H20c0 4.42 3.58 8 8 8Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 70 70" xml:space="preserve"><path d="M63.9 3.2c0-.5-.5-1-1-1H45.1v44.5h18.8V3.2zM49.4 6.4H58c.5 0 1 .5 1 1s-.5 1-1 1h-8.6c-.6 0-1-.5-1-1s.4-1 1-1zm0 4.9H58c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.6 0-1-.4-1-1s.4-1 1-1zm0 4.8H58c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.6 0-1-.4-1-1 0-.5.4-1 1-1zm.6 24.4c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9-1.3 2.9-2.9 2.9zm5.9-11.9h-4.5c-1.8 0-3.3-1.5-3.3-3.3 0-1.8 1.5-3.3 3.3-3.3h4.5c1.8 0 3.3 1.5 3.3 3.3 0 1.8-1.5 3.3-3.3 3.3zM24.6 2.2H6.9c-.5 0-1 .5-1 1v43.5h18.7V2.2zM11.9 6.4h8.6c.5 0 1 .5 1 1s-.5 1-1 1h-8.6c-.5 0-1-.5-1-1s.4-1 1-1zm0 4.9h8.6c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.5 0-1-.4-1-1s.4-1 1-1zm0 4.8h8.6c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.5 0-1-.4-1-1 0-.5.4-1 1-1zm.6 24.4c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9c1.6 0 2.9 1.3 2.9 2.9s-1.2 2.9-2.9 2.9zm5.9-11.9H14c-1.8 0-3.3-1.5-3.3-3.3 0-1.8 1.5-3.3 3.3-3.3h4.5c1.8 0 3.3 1.5 3.3 3.3-.1 1.8-1.6 3.3-3.4 3.3zm8.2-26.4v44.5h16.5V2.2H26.6zm4.3 4.2h8.6c.5 0 1 .5 1 1s-.5 1-1 1h-8.6c-.6 0-1-.5-1-1s.5-1 1-1zm0 4.9h8.6c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.6 0-1-.4-1-1s.5-1 1-1zm0 4.8h8.6c.5 0 1 .5 1 1 0 .6-.5 1-1 1h-8.6c-.6 0-1-.4-1-1 0-.5.5-1 1-1zm.7 24.4c-1.6 0-2.9-1.3-2.9-2.9s1.3-2.9 2.9-2.9 2.9 1.3 2.9 2.9-1.3 2.9-2.9 2.9zm5.9-11.9H33c-1.8 0-3.3-1.5-3.3-3.3 0-1.8 1.5-3.3 3.3-3.3h4.5c1.8 0 3.3 1.5 3.3 3.3-.1 1.8-1.5 3.3-3.3 3.3zM23.2 55.8h23.4v6H23.2zm-17.3 0h5.9v6H6.9c-.5 0-1-.5-1-1v-5zm7.9 0h7.4v11c0 .6-.4 1-1 1h-5.4c-.5 0-1-.4-1-1v-11zm34.9 0h7.4v11c0 .6-.5 1-1 1h-5.4c-.5 0-1-.4-1-1v-11zM68 49.7v4.1H2v-4.1c0-.6.5-1 1-1h64c.6 0 1 .4 1 1zm-9.9 6.1h5.8v5c0 .5-.5 1-1 1h-4.8v-6z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 21"><path d="M3 0c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1Zm12 0c-.55 0-1 .4-1 1v3c0 .5.45 1 1 1s1-.5 1-1V1c0-.6-.45-1-1-1ZM0 7.76V19c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V7.76H0ZM9 15c0 1.1-.9 2-2 2H5v-1h2c.55 0 1-.5 1-1 0-.6-.45-1-1-1H6v-1h1c.55 0 1-.5 1-1 0-.6-.45-1-1-1H5v-1h2c1.1 0 2 .9 2 2 0 .6-.27 1.1-.69 1.5.42.3.69.9.69 1.5Zm4 2h-3v-1h1v-5h-1v-1h2v6h1v1Z"/><path d="M16.28 2.03v1.7c.14.23.22.49.22.77 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.28.08-.55.22-.77V2H4.28v1.73c.14.23.22.49.22.77C4.5 5.33 3.83 6 3 6s-1.5-.67-1.5-1.5c0-.28.08-.55.22-.77v-1.7C.75 2.17 0 3 0 4v3h18V4c0-1-.75-1.83-1.72-1.97Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 913.9 792.9" xml:space="preserve"><path d="M913.9 396.4c0-82.4-62.7-152.8-148.6-167.1C800 141.5 752.7 43.7 659.7 10.9 586.9-14.7 505 6.6 456.4 63.8c-62-73.2-175.1-85.2-252.7-26.7-60.9 45.9-83.5 123.5-56.1 192.3C50 246.2-14.9 334.6 2.9 426.8c13.4 69.6 71.1 124 144.8 136.6-34.8 87.8 12.4 185.6 105.4 218.5 72.8 25.7 154.8 4.4 203.4-52.8 62 73.2 175.1 85.2 252.7 26.7 60.8-45.9 83.5-123.4 56.1-192.2 85.9-14.4 148.5-84.8 148.6-167.2zm-446 135.2v29.5h-55.3V448.2c0-17-14.6-30.8-32.7-30.8H260.2v-52.2h119.7c18 0 32.7-13.8 32.7-30.8v-113h55.3v112.9c0 17 14.7 30.8 32.7 30.8h119.6v52.2H500.5c-18 0-32.7 13.8-32.7 30.8l.1 83.5z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 43"><path d="M39.15 10H.85a.85.85 0 0 0-.85.85v7.31c0 .47.38.85.85.85h38.3c.47 0 .85-.38.85-.85v-7.31a.85.85 0 0 0-.85-.85ZM9 16.45c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9ZM34 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm5.15-17H.85A.85.85 0 0 0 0 .85v7.31c0 .47.38.85.85.85h38.3c.47 0 .85-.38.85-.85V.85a.85.85 0 0 0-.85-.85ZM9 6.45c0 .3-.25.55-.55.55h-4.9C3.25 7 3 6.75 3 6.45v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9ZM34 7c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm5.15 13H.85a.85.85 0 0 0-.85.85v7.31c0 .47.38.85.85.85h38.3c.47 0 .85-.38.85-.85v-7.31a.85.85 0 0 0-.85-.85ZM9 26.45c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9Zm7 0c0 .3-.25.55-.55.55h-4.9c-.3 0-.55-.25-.55-.55v-1.9c0-.3.25-.55.55-.55h4.9c.3 0 .55.25.55.55v1.9ZM34 27c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm-17 3h6v7h-6z"/><rect y="38" width="40" height="5" rx=".67" ry=".67"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48.9 48.97"><path d="M44.9 0h-20c-2.21 0-4 1.79-4 4v16h4c2.21 0 4 1.79 4 4v4h16c2.21 0 4-1.79 4-4V4c0-2.21-1.79-4-4-4Z"/><path d="m29.75 13.33 4.11 4.1 6.53-6.53M9.92 32.49l4.11 4.11 6.53-6.54" fill="none" stroke="#fff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4"/><path d="M24 20.97H4c-2.21 0-4 1.79-4 4v20c0 2.21 1.79 4 4 4h20c2.21 0 4-1.79 4-4v-20c0-2.21-1.79-4-4-4Z"/><path d="m8.85 34.3 4.11 4.1 6.53-6.53" fill="none" stroke="#fff" stroke-linecap="square" stroke-miterlimit="10" stroke-width="4"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 91 91" xml:space="preserve"><path d="m88.6 25.8-42-20c-.7-.3-1.5-.3-2.1 0l-42 20c-.9.4-1.4 1.3-1.4 2.2 0 1 .5 1.8 1.4 2.2l42 20c.3.2.7.2 1.1.2.4 0 .7-.1 1.1-.2l42-20c.7-.4 1.3-1.2 1.3-2.2 0-.9-.6-1.8-1.4-2.2z"/><path d="M45.5 68.1c-.5 0-1-.1-1.4-.3l-42-20C.5 47-.2 45.1.5 43.4c.8-1.6 2.7-2.3 4.4-1.6l40.6 19.3 40.6-19.3c1.6-.8 3.6-.1 4.4 1.6.8 1.6.1 3.6-1.6 4.4l-42 20c-.4.2-.9.3-1.4.3z"/><path d="M45.5 84.9c-.5 0-1-.1-1.4-.3l-42-20C.5 63.8-.2 61.9.5 60.2c.8-1.6 2.7-2.3 4.4-1.6L45.5 78l40.6-19.3c1.6-.8 3.6-.1 4.4 1.6.8 1.6.1 3.6-1.6 4.4l-42 20c-.4.1-.9.2-1.4.2z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 250 250" xml:space="preserve"><path d="M248.4 182.4c-5.9-5.4-30.3-15.2-47-21.5-3.8-1.5-3.7-6.9.2-8.2 11.3-3.8 26.6-13.5 40.2-37.6 1.7-3.2-.4-7.2-4-7.4l-21-1.4c-3.9-.3-5.9-4.8-3.6-7.9 10.6-14.3 31.4-47.7 23.9-81.7-.4-1.9-1.9-3.4-3.8-3.8-33.9-7.5-67.4 13.3-81.7 23.9-3.2 2.4-7.6.3-7.9-3.6l-1.4-21c-.3-3.7-4.2-5.8-7.4-4-24.1 13.6-33.8 28.9-37.6 40.2-1.3 3.9-6.8 4-8.2.2C82.8 31.9 73 7.5 67.6 1.6c-2-2.2-5.6-2.1-7.5.3C43.9 22 40.5 39.2 40.4 49.7c0 4.1-4.8 6.3-8 3.8l-9.2-7.3c-2.9-2.3-7.2-.7-7.9 3-3 16.9-1 31.2 2.3 42.1 1.5 4.9-4.4 8.5-8.1 5-2.9-2.8-7.8-1.1-8.3 2.9-8.3 64.3 28.1 93.2 41.2 101.4l35.9-35.9c-8-10.4-26.8-41.9-19.3-99.6.4-2.7 2.9-4.7 5.6-4.3 2.7.4 4.7 2.9 4.3 5.6-6.7 52.2 9.4 81.2 16.6 91.1l37.2-37.2c-4.2-9.2-13.4-35.2-4.1-68.8.7-2.7 3.5-4.2 6.2-3.5 2.7.7 4.2 3.5 3.5 6.2-7.5 26.8-1.8 48.3 2.1 58.4l70.9-70.9c2-2 5.1-2 7.1 0s2 5.1 0 7.1l-70.9 70.9c10.1 3.8 31.7 9.6 58.5 2.2 2.7-.7 5.4.8 6.2 3.5.7 2.7-.8 5.4-3.5 6.2-10.6 2.9-20.5 4-29.2 4-19.3 0-33.5-5.3-39.7-8.2l-37.2 37.2c10 7.1 39.1 23.3 91.2 16.7 2.7-.4 5.2 1.6 5.6 4.3.4 2.7-1.6 5.2-4.3 5.6-9.3 1.2-17.9 1.7-25.8 1.7-41.6 0-65.3-14.4-74-21l-35.9 35.9c8.2 13.1 37.2 49.5 101.3 41.1 4-.5 5.7-5.4 2.9-8.3-3.4-3.6.2-9.6 5-8.1 11 3.3 25.3 5.3 42.1 2.3 3.7-.6 5.3-5 3-7.9l-7.3-9.2c-2.5-3.2-.3-8 3.8-8 10.6-.1 27.7-3.5 47.8-19.7 2.5-2 2.6-5.6.4-7.6z"/><path d="M46.9 203.2s-1.7-.8-4.5-2.6L6.7 236.3c-2 2-2 5.1 0 7.1.9 1 2.2 1.5 3.5 1.5 1.3 0 2.5-.5 3.5-1.4l35.8-35.8c-1.8-2.8-2.6-4.5-2.6-4.5zm34.6-41.7z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 913.9 792.9" xml:space="preserve"><path d="M913.9 396.4c0-82.4-62.7-152.8-148.6-167.1C800 141.5 752.7 43.7 659.7 10.9 586.9-14.7 505 6.6 456.4 63.8c-62-73.2-175.1-85.2-252.7-26.7-60.9 45.9-83.5 123.5-56.1 192.3C50 246.2-14.9 334.6 2.9 426.8c13.4 69.6 71.1 124 144.8 136.6-34.8 87.8 12.4 185.6 105.4 218.5 72.8 25.7 154.8 4.4 203.4-52.8 62 73.2 175.1 85.2 252.7 26.7 60.8-45.9 83.5-123.4 56.1-192.2 85.9-14.4 148.5-84.8 148.6-167.2zm-446 135.2v29.5h-55.3V448.2c0-17-14.6-30.8-32.7-30.8H260.2v-52.2h119.7c18 0 32.7-13.8 32.7-30.8v-113h55.3v112.9c0 17 14.7 30.8 32.7 30.8h119.6v52.2H500.5c-18 0-32.7 13.8-32.7 30.8l.1 83.5z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 103.51 102.88"><path d="M88 98.88H8c-4.4 0-8-3.6-8-8v4c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8v-4c0 4.4-3.6 8-8 8Z" style="isolation:isolate" opacity=".1"/><path d="M79.98 49.09c-.1.93-.83 1.67-1.77 1.77L66.19 62.88H78c1.1 0 2 .9 2 2s-.9 2-2 2H62.19l-3.38 3.38s-.03.02-.04.03c-.23.23-.48.44-.73.63h-.03a7.1 7.1 0 0 1-3.82 1.41L20.34 84.89c-.24.08-.46.14-.66.18h-.07c-.18.02-.35.04-.51.02-.34-.03-.62-.16-.81-.36-.37-.4-.44-1.09-.11-2l5.73-15.85h-4.9c-1.1 0-2-.9-2-2s.9-2 2-2h6.35l4.34-12H19.02c-1.1 0-2-.9-2-2s.9-2 2-2h12.1c.24-.68.57-1.33 1.02-1.92.2-.26.41-.51.65-.74l9.33-9.33H19c-1.1 0-2-.9-2-2s.9-2 2-2h27.09l25-25.01H8c-4.4 0-8 3.6-8 8v81c0 4.4 3.6 8 8 8h80c4.4 0 8-3.6 8-8V33.07L79.98 49.09Z" style="isolation:isolate"/><path d="M34.71 47.48c-.19.19-.37.4-.53.61-.48.64-.81 1.35-1 2.09L22.76 79.01c-.27.75-.21 1.31.09 1.64.16.17.38.27.66.29h.01c.13.01.27 0 .42-.02h.05c.17-.03.35-.07.54-.14L52.24 70.5c1.11-.07 2.2-.46 3.13-1.16h.02c.21-.16.41-.33.6-.51 0 0 .02-.02.03-.02l38.07-38.06L73.47 8.73 34.71 47.48Zm67.09-24.44c.29-.29.54-.59.75-.92 1.5-2.28 1.25-5.4-.75-7.4l-13-13c-2.29-2.29-6.03-2.29-8.32 0l-4.01 4.01 20.62 22.02 4.71-4.71Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48.34"><g data-name="Layer 1"><path d="M6.83 4.21v18.16L24 35.42l17.18-13.06V4.21H6.83Zm2.85 2.98h14.59v2.02H9.68V7.19Zm28.66 13.64H9.67v-2.02h28.66v2.02Zm0-5.81H9.67V13h28.66v2.02Zm3.99 6.6L48 17.31 42.33 13v8.62zM5.67 12.93 0 17.24l5.67 4.31v-8.62zm22.51-9.75L24 0l-4.18 3.18h8.36z"/><path d="M19.57 33.47 24 36.83l4.43-3.36L48 48.34H0l19.57-14.87z"/><path d="M28.43 33.46v.01L48 48.34V18.59L28.43 33.46zm-8.86 0v.01L0 48.34V18.59l19.57 14.87z"/></g></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38.02 38.01"><path d="M21.84 34.01c-.3-.85-.97-1.53-1.83-1.83-.65-.24-1.35-.24-2 0-1.56.55-2.38 2.27-1.83 3.83s2.27 2.38 3.83 1.83 2.38-2.27 1.83-3.83ZM19.01 36c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1ZM5.83 29c-.55-1.56-2.27-2.38-3.83-1.83S-.38 29.44.17 31 2.44 33.38 4 32.83c.85-.3 1.53-.97 1.83-1.83.24-.65.24-1.35 0-2Zm-2.82 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Zm34.84-2c-.42-1.2-1.56-2-2.84-2-1.27 0-2.4.8-2.82 2-.24.65-.24 1.35 0 2a3.006 3.006 0 0 0 3.83 1.83A3.006 3.006 0 0 0 37.85 29Zm-2.84 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1Zm-16-23.56c-2.75 0-4.5.89-4.5 1.5 0 .47 1.01 1.11 2.88 1.39 1.07.15 2.16.15 3.24 0 1.99-.29 2.88-.98 2.88-1.38 0-.61-1.75-1.5-4.5-1.5Z"/><path d="M23.44 10.46c-.15.09-.3.17-.47.25-.05.02-.12.04-.17.07-.15.06-.3.12-.46.18-.1.03-.22.06-.34.09-.13.04-.26.08-.4.11-.26.06-.54.11-.82.15a12.902 12.902 0 0 1-3.52 0c-1.17-.17-2.1-.47-2.74-.88v2.45c0 .61 1.29 1.4 3.38 1.62.75.08 1.51.08 2.26 0 2.01-.21 3.36-1.01 3.36-1.62v-2.46c-.02.01-.05.02-.07.04Z"/><path d="M23.27 14.59c-.17.1-.35.2-.56.29-.04.02-.08.03-.12.05-.19.08-.38.15-.59.22-.15.05-.32.08-.48.12-.11.03-.21.06-.33.08-.3.06-.62.11-.94.15-.41.04-.82.06-1.23.06h-.01c-.41 0-.83-.02-1.24-.06-.15-.02-.29-.05-.44-.07-.16-.02-.33-.04-.49-.08l-.26-.06c-.22-.05-.44-.1-.64-.17a.3.3 0 0 1-.1-.04c-.24-.08-.47-.17-.68-.27 0 0-.01 0-.02-.01-.23-.11-.43-.23-.61-.35v2.5c0 .61 1.75 1.5 4.5 1.5s4.5-.89 4.5-1.5v-2.48c-.05.04-.12.07-.17.1l-.06.03Z"/><path d="M29.01 9C28.46 3.51 23.56-.5 18.06.05 14.08.45 10.72 3.18 9.52 7h-.51c-4.42 0-8 3.58-8 8s3.58 8 8 8h20c3.87 0 7-3.13 7-7s-3.13-7-7-7Zm-4.5 3.88v4.06c0 1.62-2.83 2.5-5.5 2.5s-5.5-.88-5.5-2.5v-8c0-1.62 2.83-2.5 5.5-2.5s5.5.88 5.5 2.5v3.94ZM31.19 31c-.24-.64-.24-1.35 0-2h-3.18c-1.1 0-2-.9-2-2v-3h-2v3c0 2.21 1.79 4 4 4h3.18ZM19 31.01c.35 0 .69.06 1.01.18v-7.18h-2v7.18c.31-.11.65-.18.99-.18ZM12.01 24v3c0 1.1-.9 2-2 2H6.84c.24.68.21 1.37-.02 2H10c2.21 0 4-1.79 4-4v-3h-2Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M37.84 0H2.16C.97 0 0 .97 0 2.16v35.68C0 39.03.97 40 2.16 40h35.68c1.19 0 2.16-.97 2.16-2.16V2.16C40 .97 39.03 0 37.84 0ZM29 20c0 2.72-1.21 5.15-3.12 6.8.08-.42.12-.86.12-1.3 0-2.54-1.34-4.73-3.3-5.8.49-.6.8-1.36.8-2.2 0-1.93-1.57-3.5-3.5-3.5s-3.5 1.57-3.5 3.5c0 .84.31 1.6.8 2.2-1.96 1.07-3.3 3.26-3.3 5.8 0 .45.04.88.12 1.3A8.957 8.957 0 0 1 11 20a9 9 0 0 1 18 0ZM14 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2ZM9 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2ZM2 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2Zm28 31.46c0 .3-.24.54-.54.54H3.54c-.3 0-.54-.24-.54-.54v-2.92c0-.3.24-.54.54-.54h25.92c.3 0 .54.24.54.54v2.92Zm7 0c0 .3-.24.54-.54.54h-4.92c-.3 0-.54-.24-.54-.54v-2.92c0-.3.24-.54.54-.54h4.92c.3 0 .54.24.54.54v2.92Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 452.6 480" xml:space="preserve"><path d="m263.5 360.7-3.4-49.9L370.6 117V52.6h-51.4V0H0v480h370.6V237l-59 103.5-48.1 20.2zM279.9 202H38.5v-19.2h241.4V202zm-68.6 119.4v19.2H38.5v-19.2h172.8zm-172.8-27v-19.2h172.8v19.2H38.5zm200.3 73.2v19.2H38.5v-19.2h200.3zM38.5 248.2V229h200.2v19.2H38.5zm0-152.3L42.9 85h8.6v-2.3C51.4 62 68.3 45.2 89 45.2s37.6 16.9 37.6 37.6h-10.9C115.7 68 103.8 56 89 56c-14.7 0-26.7 12-26.7 26.7V85h41.4l-4.4 10.9h-37v8.1h41.4l-4.4 10.9h-37v.4c0 14.7 12 26.7 26.7 26.7s26.7-12 26.7-26.7h10.9c0 20.7-16.9 37.6-37.6 37.6-20.7 0-37.6-16.9-37.6-37.6v-.4H38.5l4.3-10.9h8.6v-8.1H38.5zM279.9 433H38.5v-19.2h241.4V433z"/><path d="M370.6 52.6 319.2 0l51.4 52.6zm67.2 6.9c-8.5-4.9-19.4-2-24.3 6.5l30.9 17.8c4.8-8.5 1.9-19.4-6.6-24.3zM273.5 343.9l29.4-15.6-30.7-17.7zM442.6 96.8l-10.3 17.8.6 9.8-18.8 32.6 5.4 3.1 18.4-32 14.7-25.5zM272.22 310.518 407.343 76.41l30.92 17.846-135.124 234.107z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.78 14.92"><g data-name="Layer 1"><path d="M11.09.32a.326.326 0 0 0-.32-.32H3.52c-.18 0-.32.15-.33.33 0 .18.15.32.33.32h.76V4.6L1.05 7c-.08.06-.13.16-.13.26v.13c.1-.05.21-.08.32-.08h1.59c.37 0 .67.3.67.67v1.44c0 .38-.3.67-.67.67h-1.6a.73.73 0 0 1-.33-.08v1.21H2c.48-.95 1.45-1.56 2.52-1.57.72 0 1.4.28 1.92.77V4.76c0-.12.03-.23.08-.33H4.91V.65h4.42v3.44h.33c.12 0 .23.03.33.08V.65h.75c.18 0 .32-.15.33-.33ZM.76 9.43zm1.13 3.93c-.02-.05-.03-.1-.04-.15-.06-.22-.09-.44-.09-.67v-.13c0-.22.03-.45.08-.66.02-.06.03-.11.05-.17H.33c-.18 0-.33.15-.33.32v1.13c0 .18.15.32.33.33h1.56Zm8.25-1.61c.02-.06.03-.11.05-.17H7.21s.03.09.04.13c.05.24.08.46.1.68v.14c-.01.22-.04.44-.09.65-.02.06-.04.12-.05.18h2.98s-.03-.1-.05-.15c-.05-.23-.08-.45-.09-.67v-.14c.01-.23.05-.45.09-.66Zm6.25 1.28v-1.79l-2.41-1.81c-.15-.11-.24-.27-.27-.45s.02-.35.13-.5c.23-.3.64-.35.94-.14l1.6 1.2V8.9c0-1.41-1.15-2.56-2.57-2.56h-3.46v4.85c.29-.58.78-1.04 1.37-1.3a2.8 2.8 0 0 1 3.69 1.44c.06.13.1.26.14.38.04.17.07.34.09.51h.09v.48h-.09c-.01.16-.04.32-.08.48-.02.06-.03.12-.05.17h.54c.18 0 .32-.15.33-.33Z"/><path d="M14.06 8.94c.01.08.06.16.13.21l2.57 1.93v-.81l-2.18-1.64a.353.353 0 0 0-.19-.06c-.1 0-.2.04-.26.13-.05.07-.07.16-.06.24Zm4.61-.23h-1.24c-.18 0-.32.15-.33.33v3.99c0 .18.15.35.32.33h4.02c.18 0 .32-.15.33-.33v-1.04a.31.31 0 0 0-.09-.22l-2.77-2.95a.317.317 0 0 0-.25-.1Zm-8.06 4.75c.4.89 1.27 1.46 2.24 1.46.97 0 1.85-.58 2.25-1.46.05-.12.1-.24.13-.37.04-.18.07-.37.07-.57v-.13c0-.2-.03-.4-.08-.6-.03-.11-.07-.23-.12-.33a2.46 2.46 0 0 0-2.24-1.47c-.94 0-1.85.55-2.25 1.46-.05.12-.1.24-.13.36-.04.19-.07.39-.08.58v.12c.01.19.04.39.09.59.03.11.08.23.13.33ZM1.31 3.43l.78.78c.06.06.1.15.1.25v1.27l.65-.48v-.79c0-.26-.1-.52-.29-.71l-.78-.78c-.06-.06-.15-.09-.23-.09s-.17.03-.23.09a.32.32 0 0 0 0 .46ZM7.01 3c0-.65-.53-1.17-1.18-1.17h-.54v2.26h1.72V3Zm3 8.23V4.77s0-.09-.02-.13-.04-.08-.08-.11a.317.317 0 0 0-.23-.09H7.14c-.18 0-.32.15-.33.33v6.06c.1.13.19.26.26.41h.39v-.67h1.89v.67H10ZM7.47 5.09h1.89v1.26H7.47V5.09Zm0 1.91h1.89v1.13H7.47V7Zm0 2.91V8.78h1.89v1.13H7.47Zm-.67 1.56c-.07-.17-.17-.33-.29-.47-.46-.62-1.19-.98-1.96-.99-.97 0-1.85.58-2.25 1.47-.05.11-.1.23-.13.36-.04.18-.07.38-.07.58v.13c0 .19.03.39.08.58.03.12.07.23.13.33.25.57.69 1.01 1.25 1.25 1.24.55 2.69 0 3.24-1.24.05-.12.1-.24.13-.37.04-.18.07-.38.08-.57v-.11c-.01-.2-.04-.41-.09-.61-.03-.1-.07-.21-.12-.33Z"/><path d="M7.82 5.44h1.19V6H7.82zm0 1.91h1.19v.43H7.82zm0 1.78h1.19v.43H7.82zm0 1.78h1.19v.32H7.82zM.93 7.99v1.44a.326.326 0 0 0 .32.32h1.6c.18 0 .33-.15.33-.32V7.99c0-.18-.15-.33-.33-.33H1.26c-.18 0-.32.15-.33.33Z"/></g></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 925.424"><g data-name="Home Shield"><path fill="#d8e1ef" d="M901.8 196.946 516.16 4.125a38.564 38.564 0 0 0-34.708 0L95.81 196.945a38.564 38.564 0 0 0-21.21 34.323V809.73a115.693 115.693 0 0 0 115.693 115.692H807.32a115.693 115.693 0 0 0 115.69-115.691V231.268a38.564 38.564 0 0 0-21.21-34.322Z"/><path d="M691.626 385.525c-124.948 0-157.342-54.376-158.499-55.918a38.564 38.564 0 0 0-34.322-21.21 36.25 36.25 0 0 0-34.708 20.053s-25.452 42.42-112.607 53.99a347.078 347.078 0 0 1-45.506 3.085 38.564 38.564 0 0 0-38.564 38.564v74.814a269.95 269.95 0 0 0 169.682 250.668l47.434 18.896a38.564 38.564 0 0 0 28.538 0l47.434-18.896A269.95 269.95 0 0 0 730.19 498.903V424.09a38.564 38.564 0 0 0-38.564-38.564z" class="cls-2"/><path d="M961.575 308.396a35.865 35.865 0 0 1-17.354-4.242L498.805 81.64 53.389 304.154A38.564 38.564 0 0 1 18.68 235.51L481.45 4.125a38.564 38.564 0 0 1 34.708 0l462.77 231.385a38.564 38.564 0 0 1 16.968 51.676 38.564 38.564 0 0 1-34.322 21.21Z" class="cls-2"/></g></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg data-name="Layer 45" height="24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M15.985 18.857 4.557 12l11.428-6.857 1.03 1.714L8.443 12l8.572 5.143-1.03 1.714z"/><circle cx="16.5" cy="6.5" r="3.5"/><circle cx="6.5" cy="12" r="3.5"/><circle cx="16.5" cy="17.5" r="3.5"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1076.933"><path fill="#d8e1ef" d="M961.538 153.847c-326.538 0-429.23-136.154-430-137.308A38.462 38.462 0 0 0 500 .001a38.462 38.462 0 0 0-31.538 16.153S365 153.847 38.462 153.847A38.462 38.462 0 0 0 0 192.308v336.923c0 355.77 273.462 461.539 436.538 525.385l48.847 19.23a36.154 36.154 0 0 0 29.23 0l48.847-19.23C726.538 991.154 1000 884.616 1000 529.23V192.308a38.462 38.462 0 0 0-38.462-38.461z"/><path fill="#193d8d" d="M1000 192.308v336.923c0 355.77-273.462 461.539-436.538 525.385l-48.847 19.23a38.462 38.462 0 0 1-14.615 3.078V0a38.462 38.462 0 0 1 31.154 16.538S635 153.847 961.538 153.847A38.462 38.462 0 0 1 1000 192.308Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg data-name="Layer 1" viewBox="0 0 25 25" xmlns="http://www.w3.org/2000/svg"><path class="cloud-storage_svg__cls-1" d="M23.75 4h-10.4a.25.25 0 0 1-.19-.09l-2.05-2.46a1.25 1.25 0 0 0-1-.45H5.25A1.25 1.25 0 0 0 4 2.25V3h4.15a2.24 2.24 0 0 1 1.73.81L11.7 6h10A2.25 2.25 0 0 1 24 8.25v9.7a1.23 1.23 0 0 0 1-1.2V5.25A1.25 1.25 0 0 0 23.75 4Z"/><path class="cloud-storage_svg__cls-1" d="M21.75 7H11.23L9.11 4.45a1.25 1.25 0 0 0-1-.45H3.25A1.25 1.25 0 0 0 2 5.25V6h4.15a2.24 2.24 0 0 1 1.73.81L9.7 9h10a2.25 2.25 0 0 1 2.3 2.25v9.7a1.23 1.23 0 0 0 1-1.2V8.25A1.25 1.25 0 0 0 21.75 7Z"/><path class="cloud-storage_svg__cls-1" d="M19.75 10H9.23L7.11 7.45a1.25 1.25 0 0 0-1-.45H1.25A1.25 1.25 0 0 0 0 8.25v14.5A1.25 1.25 0 0 0 1.25 24h18.5A1.25 1.25 0 0 0 21 22.75v-11.5A1.25 1.25 0 0 0 19.75 10Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128.51 128.51"><path d="M112.25 62.35c-.1-1.4-.2-2.7-.3-4.1l2.6-2.6c11.5-11.5 11.5-30.3 0-41.7-11.5-11.5-30.2-11.5-41.7 0l-2.6 2.6c-1.3-.2-2.7-.3-4.1-.3l4.5-4.5c12.7-12.7 33.4-12.8 46.1 0 12.7 12.7 12.7 33.4 0 46.1l-4.5 4.5Zm-53.9-45.7-2.6-2.6c-11.5-11.5-30.3-11.5-41.7 0-11.6 11.4-11.6 30.2 0 41.7l2.6 2.6c-.2 1.3-.3 2.7-.3 4.1l-4.5-4.5c-12.7-12.7-12.8-33.4 0-46.1 12.7-12.7 33.4-12.7 46.1 0l4.5 4.5c-1.4 0-2.8.1-4.1.3Zm-42.1 49.5c.1 1.4.2 2.7.3 4.1l-2.6 2.6c-11.5 11.5-11.5 30.3-.1 41.7 11.5 11.5 30.2 11.5 41.7 0l2.6-2.6c1.3.2 2.7.3 4.1.3l-4.5 4.5c-12.7 12.7-33.4 12.8-46.1.1-12.7-12.7-12.7-33.4.1-46.1l4.5-4.6Zm53.9 45.7 2.6 2.6c11.5 11.5 30.3 11.5 41.7 0 11.5-11.5 11.5-30.2-.1-41.7l-2.6-2.6c.2-1.3.3-2.7.3-4.1l4.5 4.5c12.7 12.7 12.8 33.4.1 46.1-12.7 12.7-33.4 12.7-46.1-.1l-4.5-4.5c1.4.1 2.8 0 4.1-.2Z"/><path d="M64.25 24.55c-21.9 0-39.7 17.8-39.7 39.7s17.8 39.7 39.7 39.7 39.7-17.8 39.7-39.7-17.8-39.7-39.7-39.7Zm0 71.7c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32Z"/><path d="M64.25 9.25c-30.4 0-55 24.6-55 55s24.6 55 55 55 55-24.6 55-55-24.6-55-55-55Zm0 106c-28.2 0-51-22.8-51-51s22.8-51 51-51 51 22.8 51 51-22.8 51-51 51Z"/><path d="M35.85 79.05c.05.1.12.2.17.3-2.41-4.5-3.77-9.63-3.77-15.1 0-17.7 14.3-32 32-32 5.48 0 10.64 1.37 15.14 3.79-.12-.06-.22-.13-.34-.19l23.18-23.08C91.6 4.91 78.47.25 64.25.25S36.9 4.91 26.27 12.77l23.08 23.08c-5.8 3-10.5 7.7-13.5 13.5L12.77 26.27C4.91 36.9.25 50.04.25 64.25s4.65 27.36 12.5 38l23.1-23.2ZM87.6 42.36c-.55-.59-1.13-1.16-1.72-1.71.6.55 1.17 1.12 1.72 1.71ZM38.39 83.1s.03.04.04.06c-.01-.02-.03-.04-.04-.06Zm1.51 1.92.03.03c0-.01-.02-.02-.03-.03Zm42.44-47.18Zm-1.87-1.18c.51.3 1.01.61 1.49.93-.49-.32-.99-.63-1.49-.93Zm-1.32 55.99c5.8-3 10.5-7.7 13.5-13.5l23.08 23.08c7.86-10.63 12.52-23.77 12.52-37.98s-4.66-27.35-12.52-37.98L92.57 49.33c2.35 4.45 3.68 9.53 3.68 14.92 0 17.7-14.3 32-32 32-5.39 0-10.47-1.33-14.92-3.68l-23.08 23.18c10.62 7.85 23.76 12.5 38 12.5s27.35-4.66 37.98-12.52L79.15 92.65Zm9.62-48.98c-.22-.26-.45-.52-.67-.78.23.26.45.51.67.78ZM36.99 81.03c.07.11.14.21.21.32-.07-.11-.14-.21-.21-.32Zm53.05-35.75s-.04-.06-.07-.09c.02.03.04.06.07.09Z"/><path d="m84.75 30.25-5.6 5.6c5.8 3 10.5 7.7 13.5 13.5l5.6-5.6c-3.4-5.5-8-10.2-13.5-13.5Zm-48.9 48.8-5.6 5.7c3.3 5.5 8 10.1 13.5 13.5l5.6-5.6c-5.7-3.1-10.4-7.8-13.5-13.6Zm43.3 13.6 5.6 5.6c5.5-3.3 10.1-8 13.5-13.5l-5.6-5.6c-3.1 5.7-7.8 10.4-13.5 13.5Zm-29.7-56.7-5.7-5.7c-5.5 3.4-10.1 8-13.5 13.5l5.6 5.6c3.1-5.7 7.8-10.4 13.6-13.4Zm-27.4 57-2.9 2.9c3.7 5.2 8.2 9.8 13.5 13.5l2.9-2.9c-5.3-3.7-9.9-8.2-13.5-13.5Zm84.4 0c-3.6 5.3-8.2 9.9-13.5 13.5l2.9 2.9c5.2-3.7 9.8-8.3 13.5-13.5l-2.9-2.9Zm-84.4-57.4c3.6-5.3 8.2-9.9 13.5-13.5l-2.8-2.8c-5.2 3.7-9.8 8.3-13.5 13.5l2.8 2.8Z"/><circle cx="64.25" cy="64.25" r="63.75" fill="none" stroke="#000" stroke-miterlimit="10"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 44.66"><path d="M16 9h20V2c0-1.1-.9-2-2-2H2C.9 0 0 .9 0 2v26c0 1.1.9 2 2 2h3v5.83L12.33 30H14V11c0-1.1.9-2 2-2Z"/><path d="M48.09 10.53H17.61c-1.05 0-1.91.85-1.91 1.91v24.77c0 1.05.85 1.91 1.91 1.91h20.64l6.98 5.56v-5.56h2.86c1.05 0 1.91-.85 1.91-1.91V12.43c0-1.05-.85-1.91-1.91-1.91Zm-6.62 19.9H24.23V28.4h17.24v2.03Zm0-4.76H24.23v-2.03h17.24v2.03Zm0-4.76H24.23v-2.03h17.24v2.03Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 416"><path d="M409.8 112.8c-31.1 0-56.4 25.3-56.4 56.5s25.3 56.3 56.4 56.3 56.5-25.3 56.5-56.3-25.4-56.5-56.5-56.5Zm-319.6 0c-31.1 0-56.5 25.3-56.5 56.5s25.3 56.3 56.5 56.3 56.4-25.3 56.4-56.3-25.3-56.5-56.4-56.5ZM249.9 0c-46 0-83.5 37.4-83.5 83.4s37.4 83.5 83.5 83.5 83.5-37.5 83.5-83.5C333.5 37.4 296 0 249.9 0Zm130.9 416v-96c0-72.2-58.7-130.9-130.8-130.9S119.1 247.8 119.1 320v96h261.7Zm20.7-34H500v-44.3c0-49.8-40.5-90.2-90.3-90.2-8.9 0-17.3 1.7-25.4 4.1 10.6 20.7 17.1 43.7 17.1 68.4v62h.1Zm-303.1 0v-62c0-24.8 6.5-47.8 17.1-68.4-8-2.4-16.4-4.1-25.3-4.1-49.7 0-90.2 40.4-90.2 90.2V382h98.4Z"/><path d="M250 189.1V416h130.8v-96c0-72.1-58.7-130.8-130.8-130.9ZM250 0v167c46 0 83.4-37.5 83.4-83.5C333.5 37.4 296 0 250 0Z"/></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg data-name="Layer 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 426.79 511.88"><g data-name="Layer 1"><path d="M175.53 76.88c-3.36 0-6.61-1.94-8.1-5.2-3.06-6.64-4.61-13.74-4.61-21.11C162.82 22.68 185.5 0 213.38 0s50.57 22.68 50.57 50.57c0 7.01-1.4 13.84-4.2 20.24-1.98 4.5-7.22 6.57-11.73 4.6-4.54-1.97-6.59-7.22-4.63-11.75 1.81-4.12 2.72-8.54 2.72-13.09 0-18.04-14.67-32.72-32.73-32.72s-32.71 14.69-32.71 32.72c0 4.77.99 9.37 2.96 13.66 2.06 4.47.11 9.78-4.37 11.83-1.21.56-2.48.82-3.74.82Zm37.85 199.09c12.45 0 22.54 10.1 22.54 22.52s-10.1 22.52-22.54 22.52-22.52-10.1-22.52-22.52 10.1-22.52 22.52-22.52"/><path d="M226.79 85.53V51.84c0-7.4-6.01-13.4-13.41-13.4s-13.38 6-13.38 13.4v33.69C88.4 92.44 0 185.12 0 298.48s95.53 213.39 213.38 213.39 213.41-95.54 213.41-213.39-88.4-206.02-200-212.95ZM213.38 459.6c-88.84 0-161.11-72.29-161.11-161.12s72.27-161.14 161.11-161.14 161.15 72.27 161.15 161.14S302.25 459.6 213.38 459.6Z"/><path d="M234.62 296.16s-3.79-8.34-.44-13.44c3.35-5.11 48.47-94.91 48.47-94.91s2.08-3.43-.96-5.23c-1.45-.87-3.7-.92-5.03 1.68 0 0-57.14 82.69-59.99 88.07-2.88 5.38-12.02 6.05-12.02 6.05s19.91 4.21 29.98 17.78ZM213.4 181.67c-2.9 0-5.23-2.34-5.23-5.21V158.7c0-2.87 2.34-5.21 5.23-5.21s5.22 2.34 5.22 5.21v17.76c0 2.87-2.34 5.21-5.22 5.21ZM92.75 303.72H75c-2.88 0-5.21-2.36-5.21-5.23s2.34-5.23 5.21-5.23h17.75c2.88 0 5.22 2.33 5.22 5.23s-2.35 5.23-5.22 5.23Zm258.09 0H333.1c-2.88 0-5.23-2.36-5.23-5.23s2.36-5.23 5.23-5.23h17.74c2.88 0 5.21 2.33 5.21 5.23 0 2.87-2.34 5.23-5.21 5.23Zm-53.29-87.11c-1.33 0-2.69-.49-3.7-1.51a5.251 5.251 0 0 1 0-7.41l12.53-12.53a5.209 5.209 0 0 1 7.39 0 5.203 5.203 0 0 1 0 7.37l-12.54 12.57c-1.02 1.02-2.35 1.51-3.7 1.51Zm-171.61.99a5.17 5.17 0 0 1-3.68-1.53l-12.55-12.53c-2.04-2.04-2.04-5.35 0-7.39s5.36-2.04 7.4 0l12.53 12.53a5.191 5.191 0 0 1 0 7.39 5.183 5.183 0 0 1-3.7 1.53Zm182.51 182.5c-1.34 0-2.68-.51-3.7-1.53l-12.55-12.55a5.227 5.227 0 0 1 0-7.39 5.203 5.203 0 0 1 7.4 0l12.55 12.55a5.227 5.227 0 0 1-3.7 8.92Zm-194.45 0c-1.34 0-2.68-.51-3.68-1.53a5.227 5.227 0 0 1 0-7.39l12.53-12.55c2.07-2.06 5.36-2.06 7.4 0a5.209 5.209 0 0 1 0 7.39l-12.53 12.55a5.29 5.29 0 0 1-3.71 1.53Z"/></g></svg>
|
@@ -1 +0,0 @@
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 480"><path fill="#012169" d="M0 0h640v480H0z"/><path fill="#FFF" d="m75 0 244 181L562 0h78v62L400 241l240 178v61h-80L320 301 81 480H0v-60l239-178L0 64V0h75z"/><path fill="#C8102E" d="m424 281 216 159v40L369 281h55zm-184 20 6 35L54 480H0l240-179zM640 0v3L391 191l2-44L590 0h50zM0 0l239 176h-60L0 42V0z"/><path fill="#FFF" d="M241 0v480h160V0H241zM0 160v160h640V160H0z"/><path fill="#C8102E" d="M0 193v96h640v-96H0zM273 0v480h96V0h-96z"/></svg>
|