@coopenomics/desktop 2.2.2
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.
- package/.editorconfig +9 -0
- package/.env-example +3 -0
- package/.eslintignore +8 -0
- package/.eslintrc.cjs +91 -0
- package/.prettierrc +7 -0
- package/.vscode/extensions.json +15 -0
- package/.vscode/settings.json +14 -0
- package/CHANGELOG.md +495 -0
- package/Env-example.ts +12 -0
- package/README.md +38 -0
- package/extensions/powerup/boot.ts +17 -0
- package/extensions/powerup/src/Powerup.vue +3 -0
- package/index.html +78 -0
- package/package.json +98 -0
- package/postcss.config.cjs +27 -0
- package/public/documents/privacy_policy.pdf +0 -0
- package/public/documents/regulation_on_the_cpp_wallet.pdf +0 -0
- package/public/documents/regulation_on_the_procedure_and_rules_for_using_a_simple_electronic_signature.pdf +0 -0
- package/public/documents/user_agreement.pdf +0 -0
- package/public/documents/ustav.pdf +0 -0
- package/public/icons/favicon-128x128.png +0 -0
- package/public/icons/favicon-16x16.png +0 -0
- package/public/icons/favicon-32x32.png +0 -0
- package/public/icons/favicon-96x96.png +0 -0
- package/public/logo.svg +1 -0
- package/public/open.ttf +0 -0
- package/public/pwa/pwa_icon_128x128.png +0 -0
- package/public/pwa/pwa_icon_144x144.png +0 -0
- package/public/pwa/pwa_icon_152x152.png +0 -0
- package/public/pwa/pwa_icon_192x192.png +0 -0
- package/public/pwa/pwa_icon_256x256.png +0 -0
- package/public/pwa/pwa_icon_384x384.png +0 -0
- package/public/pwa/pwa_icon_48x48.png +0 -0
- package/public/pwa/pwa_icon_512x512.png +0 -0
- package/public/pwa/pwa_icon_72x72.png +0 -0
- package/public/pwa/pwa_icon_96x96.png +0 -0
- package/public/roboto.ttf +0 -0
- package/public/service-worker.js +17 -0
- package/public/ubuntu.ttf +0 -0
- package/quasar.config.cjs +256 -0
- package/src/app/App.vue +85 -0
- package/src/app/config/index.ts +188 -0
- package/src/app/providers/card/store.ts +39 -0
- package/src/app/providers/router.ts +28 -0
- package/src/app/providers/routes/index.ts +288 -0
- package/src/app/service-worker.js +12 -0
- package/src/app/styles/app.scss +29 -0
- package/src/app/styles/quasar-variables.sass +556 -0
- package/src/app/styles/style.css +388 -0
- package/src/assets/anime.svg +187 -0
- package/src/assets/bizsystem.svg +1 -0
- package/src/assets/blockchain.svg +1 -0
- package/src/assets/buycheaper.svg +1 -0
- package/src/assets/cart.svg +3 -0
- package/src/assets/club1.svg +1 -0
- package/src/assets/club2.svg +1 -0
- package/src/assets/clubs.png +0 -0
- package/src/assets/clubs.svg +1 -0
- package/src/assets/crown.svg +3 -0
- package/src/assets/dacom.png +0 -0
- package/src/assets/dacom2.png +0 -0
- package/src/assets/dacom_night.svg +1 -0
- package/src/assets/dacom_night2.png +0 -0
- package/src/assets/dao_free.svg +1 -0
- package/src/assets/flow1.svg +1 -0
- package/src/assets/flow2.svg +1 -0
- package/src/assets/flow3.svg +1 -0
- package/src/assets/flow4.svg +1 -0
- package/src/assets/header-logo.svg +25 -0
- package/src/assets/history.svg +4 -0
- package/src/assets/logo-white.png +0 -0
- package/src/assets/logo.png +0 -0
- package/src/assets/main.svg +1 -0
- package/src/assets/menu.svg +3 -0
- package/src/assets/order.svg +5 -0
- package/src/assets/pin.svg +4 -0
- package/src/assets/quasar-logo-vertical.svg +15 -0
- package/src/assets/sellmore.svg +1 -0
- package/src/assets/star.svg +4 -0
- package/src/assets/systemadmin.svg +1 -0
- package/src/assets/systemfunds.svg +1 -0
- package/src/assets/systemgoals.svg +1 -0
- package/src/assets/systemgov.svg +1 -0
- package/src/assets/systemprojects.svg +1 -0
- package/src/assets/systemtasks.svg +1 -0
- package/src/assets/ticket.svg +1 -0
- package/src/assets/union.svg +3 -0
- package/src/assets/user.png +0 -0
- package/src/assets/wallet.svg +4 -0
- package/src/assets/welcome.jpeg +0 -0
- package/src/boot/.gitkeep +0 -0
- package/src/boot/axios.ts +31 -0
- package/src/boot/branch-selector.ts +42 -0
- package/src/boot/i18n.ts +33 -0
- package/src/boot/init-stores.ts +43 -0
- package/src/boot/map.ts +7 -0
- package/src/boot/navigation-guards.ts +48 -0
- package/src/boot/sentry.ts +26 -0
- package/src/chainsMain.ts +8 -0
- package/src/components/history/AccountEvents.vue +137 -0
- package/src/components/history/AccountLink.vue +11 -0
- package/src/components/history/ActionCell.vue +96 -0
- package/src/components/history/DataCell.vue +84 -0
- package/src/components/menu/blockchainStatus.vue +84 -0
- package/src/components/menu/footerMobileMenu.vue +77 -0
- package/src/components/soviet/index.vue +76 -0
- package/src/components/soviet/staff.vue +272 -0
- package/src/css/quasar.variables.scss +50 -0
- package/src/desktops/Chairman/index.ts +1 -0
- package/src/desktops/Chairman/model/index.ts +63 -0
- package/src/desktops/Member/index.ts +1 -0
- package/src/desktops/Member/model/index.ts +63 -0
- package/src/desktops/Setup/index.ts +1 -0
- package/src/desktops/Setup/model/index.ts +63 -0
- package/src/desktops/User/index.ts +1 -0
- package/src/desktops/User/model/index.ts +325 -0
- package/src/desktops/index.ts +9 -0
- package/src/entities/Account/api/index.ts +17 -0
- package/src/entities/Account/index.ts +2 -0
- package/src/entities/Account/model/index.ts +1 -0
- package/src/entities/Account/model/store.ts +25 -0
- package/src/entities/Account/types/index.ts +3 -0
- package/src/entities/Agreement/api/index.ts +46 -0
- package/src/entities/Agreement/index.ts +2 -0
- package/src/entities/Agreement/model/index.ts +1 -0
- package/src/entities/Agreement/model/store.ts +49 -0
- package/src/entities/Branch/api/index.ts +34 -0
- package/src/entities/Branch/index.ts +2 -0
- package/src/entities/Branch/model/index.ts +2 -0
- package/src/entities/Branch/model/store.ts +36 -0
- package/src/entities/Branch/model/types.ts +7 -0
- package/src/entities/Cooperative/api/index.ts +106 -0
- package/src/entities/Cooperative/index.ts +2 -0
- package/src/entities/Cooperative/model/index.ts +2 -0
- package/src/entities/Cooperative/model/stores.ts +123 -0
- package/src/entities/Cooperative/model/types.ts +19 -0
- package/src/entities/Decision/index.ts +1 -0
- package/src/entities/Decision/model/index.ts +1 -0
- package/src/entities/Decision/model/types.ts +4 -0
- package/src/entities/Desktop/api/index.ts +10 -0
- package/src/entities/Desktop/index.ts +2 -0
- package/src/entities/Desktop/model/index.ts +1 -0
- package/src/entities/Desktop/model/store.ts +135 -0
- package/src/entities/Desktop/model/types.ts +29 -0
- package/src/entities/Extension/api/index.ts +19 -0
- package/src/entities/Extension/index.ts +2 -0
- package/src/entities/Extension/model/index.ts +2 -0
- package/src/entities/Extension/model/store.ts +71 -0
- package/src/entities/Extension/model/types.ts +28 -0
- package/src/entities/Installer/index.ts +1 -0
- package/src/entities/Installer/model/index.ts +1 -0
- package/src/entities/Installer/model/store.ts +36 -0
- package/src/entities/Menu/index.ts +2 -0
- package/src/entities/Menu/model/index.ts +2 -0
- package/src/entities/Menu/model/store.ts +69 -0
- package/src/entities/Menu/model/types.ts +11 -0
- package/src/entities/Menu/ui/index.ts +1 -0
- package/src/entities/Order/api/index.ts +14 -0
- package/src/entities/Order/index.ts +1 -0
- package/src/entities/Order/model/index.ts +1 -0
- package/src/entities/Order/model/store.ts +87 -0
- package/src/entities/Registrator/index.ts +2 -0
- package/src/entities/Registrator/model/index.ts +1 -0
- package/src/entities/Registrator/model/store.ts +237 -0
- package/src/entities/Registrator/ui/index.ts +1 -0
- package/src/entities/Request/api/index.ts +192 -0
- package/src/entities/Request/index.ts +3 -0
- package/src/entities/Request/model/index.ts +1 -0
- package/src/entities/Request/model/stores.ts +123 -0
- package/src/entities/Request/model/types.ts +57 -0
- package/src/entities/Request/ui/index.ts +1 -0
- package/src/entities/Session/api/index.ts +21 -0
- package/src/entities/Session/index.ts +2 -0
- package/src/entities/Session/model/index.ts +2 -0
- package/src/entities/Session/model/store.ts +100 -0
- package/src/entities/Session/model/types.ts +1 -0
- package/src/entities/Settings/api/index.ts +8 -0
- package/src/entities/Settings/index.ts +2 -0
- package/src/entities/Settings/model/index.ts +1 -0
- package/src/entities/Settings/model/store.ts +24 -0
- package/src/entities/System/api/index.ts +12 -0
- package/src/entities/System/index.ts +2 -0
- package/src/entities/System/model/index.ts +1 -0
- package/src/entities/System/model/store.ts +24 -0
- package/src/entities/System/types/index.ts +3 -0
- package/src/entities/Union/model/index.ts +1 -0
- package/src/entities/Union/model/store.ts +19 -0
- package/src/entities/User/api/index.ts +75 -0
- package/src/entities/User/index.ts +3 -0
- package/src/entities/User/model/entity.ts +47 -0
- package/src/entities/User/model/index.ts +2 -0
- package/src/entities/User/model/stores.ts +49 -0
- package/src/entities/User/model/types.ts +36 -0
- package/src/entities/User/ui/index.ts +1 -0
- package/src/entities/Wallet/api/index.ts +192 -0
- package/src/entities/Wallet/index.ts +3 -0
- package/src/entities/Wallet/model/index.ts +2 -0
- package/src/entities/Wallet/model/stores.ts +108 -0
- package/src/entities/Wallet/model/types.ts +77 -0
- package/src/entities/Wallet/ui/WalletBalance/WalletBalance.vue +35 -0
- package/src/entities/Wallet/ui/WalletBalance/index.ts +1 -0
- package/src/entities/Wallet/ui/WalletProgramsList/WalletProgramsList.vue +15 -0
- package/src/entities/Wallet/ui/WalletProgramsList/index.ts +1 -0
- package/src/entities/Wallet/ui/index.ts +2 -0
- package/src/env.d.ts +28 -0
- package/src/features/Agreementer/GenerateAgreement/index.ts +1 -0
- package/src/features/Agreementer/GenerateAgreement/model/index.ts +24 -0
- package/src/features/Agreementer/GenerateAgreement/ui/AgreementReader.vue +37 -0
- package/src/features/Agreementer/GenerateAgreement/ui/index.ts +1 -0
- package/src/features/Agreementer/ReadAgreementDialog/index.ts +1 -0
- package/src/features/Agreementer/ReadAgreementDialog/ui/ReadAgreementDialog.vue +58 -0
- package/src/features/Agreementer/ReadAgreementDialog/ui/index.ts +1 -0
- package/src/features/Agreementer/SignAgreementDialog/api/index.ts +26 -0
- package/src/features/Agreementer/SignAgreementDialog/index.ts +3 -0
- package/src/features/Agreementer/SignAgreementDialog/model/index.ts +27 -0
- package/src/features/Agreementer/SignAgreementDialog/ui/SignAgreementDialog.vue +73 -0
- package/src/features/Agreementer/SignAgreementDialog/ui/index.ts +1 -0
- package/src/features/Branch/CreateBranch/api/index.ts +16 -0
- package/src/features/Branch/CreateBranch/index.ts +2 -0
- package/src/features/Branch/CreateBranch/model/index.ts +49 -0
- package/src/features/Branch/CreateBranch/ui/CreateBranchButton.vue +61 -0
- package/src/features/Branch/CreateBranch/ui/index.ts +1 -0
- package/src/features/Branch/EditBranch/api/index.ts +16 -0
- package/src/features/Branch/EditBranch/index.ts +2 -0
- package/src/features/Branch/EditBranch/model/index.ts +34 -0
- package/src/features/Branch/SelectBranch/api/index.ts +15 -0
- package/src/features/Branch/SelectBranch/index.ts +1 -0
- package/src/features/Branch/SelectBranch/model/index.ts +18 -0
- package/src/features/Branch/SelectBranch/ui/SelectBranchOverlay.vue +109 -0
- package/src/features/Branch/SelectBranch/ui/index.ts +1 -0
- package/src/features/Cooperative/AddAdmin/index.ts +1 -0
- package/src/features/Cooperative/AddAdmin/model/index.ts +27 -0
- package/src/features/Cooperative/CreateBoard/index.ts +1 -0
- package/src/features/Cooperative/CreateBoard/model/index.ts +27 -0
- package/src/features/Cooperative/DeleteAdmin/index.ts +1 -0
- package/src/features/Cooperative/DeleteAdmin/model/index.ts +27 -0
- package/src/features/Cooperative/SetRights/index.ts +1 -0
- package/src/features/Cooperative/SetRights/model/index.ts +27 -0
- package/src/features/Cooperative/UpdateBoard/index.ts +1 -0
- package/src/features/Cooperative/UpdateBoard/model/index.ts +27 -0
- package/src/features/Cooperative/UpdateCoop/index.ts +1 -0
- package/src/features/Cooperative/UpdateCoop/model/index.ts +27 -0
- package/src/features/Decision/AuthorizeAndExecDecision/index.ts +1 -0
- package/src/features/Decision/AuthorizeAndExecDecision/model/index.ts +83 -0
- package/src/features/Decision/AutomateDecision/index.ts +1 -0
- package/src/features/Decision/AutomateDecision/model/index.ts +27 -0
- package/src/features/Decision/CreateProject/index.ts +1 -0
- package/src/features/Decision/CreateProject/model/index.ts +84 -0
- package/src/features/Decision/CreateProject/ui/CreateProjectFreeDecisionButton.vue +51 -0
- package/src/features/Decision/CreateProject/ui/index.ts +1 -0
- package/src/features/Decision/DisautomateDecision/index.ts +1 -0
- package/src/features/Decision/DisautomateDecision/model/index.ts +27 -0
- package/src/features/Decision/GenerateProjectDocument/index.ts +1 -0
- package/src/features/Decision/GenerateProjectDocument/model/index.ts +22 -0
- package/src/features/Decision/PublishProject/index.ts +1 -0
- package/src/features/Decision/PublishProject/model/index.ts +22 -0
- package/src/features/Decision/ValidateDecision/index.ts +1 -0
- package/src/features/Decision/ValidateDecision/model/index.ts +27 -0
- package/src/features/Decision/VoteAgainstDecision/index.ts +1 -0
- package/src/features/Decision/VoteAgainstDecision/model/index.ts +27 -0
- package/src/features/Decision/VoteForDecision/index.ts +1 -0
- package/src/features/Decision/VoteForDecision/model/index.ts +32 -0
- package/src/features/Extension/InstallExtension/index.ts +1 -0
- package/src/features/Extension/InstallExtension/model/index.ts +25 -0
- package/src/features/Extension/UninstallExtension/index.ts +1 -0
- package/src/features/Extension/UninstallExtension/model/index.ts +23 -0
- package/src/features/Extension/UpdateExtension/index.ts +1 -0
- package/src/features/Extension/UpdateExtension/model/index.ts +25 -0
- package/src/features/Fund/CreateFund/index.ts +1 -0
- package/src/features/Fund/CreateFund/model/index.ts +27 -0
- package/src/features/Fund/DeleteFund/index.ts +1 -0
- package/src/features/Fund/DeleteFund/model/index.ts +27 -0
- package/src/features/Fund/EditFund/index.ts +1 -0
- package/src/features/Fund/EditFund/model/index.ts +27 -0
- package/src/features/Installer/api/index.ts +13 -0
- package/src/features/Installer/index.ts +2 -0
- package/src/features/Installer/model/index.ts +20 -0
- package/src/features/Installer/ui/RequestKeyForm/RequestKeyForm.vue +57 -0
- package/src/features/Installer/ui/RequestKeyForm/index.ts +1 -0
- package/src/features/Installer/ui/SetSovietForm/SetSovietForm.vue +71 -0
- package/src/features/Installer/ui/SetSovietForm/index.ts +1 -0
- package/src/features/Installer/ui/index.ts +2 -0
- package/src/features/Order/SetStatus/api/index.ts +7 -0
- package/src/features/Order/SetStatus/index.ts +1 -0
- package/src/features/Order/SetStatus/model/index.ts +23 -0
- package/src/features/Order/SetStatus/ui/SetOrderCompletedStatusButton/SetOrderCompletedStatusButton.vue +48 -0
- package/src/features/Order/SetStatus/ui/SetOrderCompletedStatusButton/index.ts +1 -0
- package/src/features/Order/SetStatus/ui/SetOrderPaidStatusButton/SetOrderPaidStatusButton.vue +49 -0
- package/src/features/Order/SetStatus/ui/SetOrderPaidStatusButton/index.ts +1 -0
- package/src/features/Order/SetStatus/ui/SetOrderRefundedStatusButton/SetOrderRefundedStatusButton.vue +49 -0
- package/src/features/Order/SetStatus/ui/SetOrderRefundedStatusButton/index.ts +1 -0
- package/src/features/PaymentMethod/AddPaymentMethod/index.ts +2 -0
- package/src/features/PaymentMethod/AddPaymentMethod/model/index.ts +56 -0
- package/src/features/PaymentMethod/AddPaymentMethod/ui/AddPaymentButton.vue +166 -0
- package/src/features/PaymentMethod/AddPaymentMethod/ui/index.ts +1 -0
- package/src/features/PaymentMethod/DeletePaymentMethod/index.ts +1 -0
- package/src/features/PaymentMethod/DeletePaymentMethod/model/index.ts +29 -0
- package/src/features/PaymentMethod/DeletePaymentMethod/ui/DeletePaymentMethodButton.vue +67 -0
- package/src/features/PaymentMethod/DeletePaymentMethod/ui/index.ts +1 -0
- package/src/features/PaymentMethod/UpdateBankAccount/api/index.ts +14 -0
- package/src/features/PaymentMethod/UpdateBankAccount/index.ts +1 -0
- package/src/features/PaymentMethod/UpdateBankAccount/model/index.ts +34 -0
- package/src/features/Request/AcceptRequest/api/index.ts +53 -0
- package/src/features/Request/AcceptRequest/index.ts +3 -0
- package/src/features/Request/AcceptRequest/model/index.ts +1 -0
- package/src/features/Request/AcceptRequest/model/types.ts +5 -0
- package/src/features/Request/AcceptRequest/ui/AcceptButton.vue +37 -0
- package/src/features/Request/AcceptRequest/ui/index.ts +1 -0
- package/src/features/Request/CancelRequest/api/index.ts +44 -0
- package/src/features/Request/CancelRequest/index.ts +3 -0
- package/src/features/Request/CancelRequest/model/index.ts +1 -0
- package/src/features/Request/CancelRequest/model/types.ts +5 -0
- package/src/features/Request/CancelRequest/ui/CancelButton.vue +36 -0
- package/src/features/Request/CancelRequest/ui/index.ts +1 -0
- package/src/features/Request/CompleteOnRequest/api/index.ts +43 -0
- package/src/features/Request/CompleteOnRequest/index.ts +3 -0
- package/src/features/Request/CompleteOnRequest/model/index.ts +1 -0
- package/src/features/Request/CompleteOnRequest/model/types.ts +5 -0
- package/src/features/Request/CompleteOnRequest/ui/CompleteOnRequestButton.vue +37 -0
- package/src/features/Request/CompleteOnRequest/ui/index.ts +1 -0
- package/src/features/Request/ConfirmRecieveOnRequest/api/index.ts +53 -0
- package/src/features/Request/ConfirmRecieveOnRequest/index.ts +3 -0
- package/src/features/Request/ConfirmRecieveOnRequest/model/index.ts +1 -0
- package/src/features/Request/ConfirmRecieveOnRequest/model/types.ts +5 -0
- package/src/features/Request/ConfirmRecieveOnRequest/ui/ConfirmRecieveOnRequest.vue +37 -0
- package/src/features/Request/ConfirmRecieveOnRequest/ui/index.ts +1 -0
- package/src/features/Request/ConfirmSupplyOnRequest/api/index.ts +53 -0
- package/src/features/Request/ConfirmSupplyOnRequest/index.ts +3 -0
- package/src/features/Request/ConfirmSupplyOnRequest/model/index.ts +1 -0
- package/src/features/Request/ConfirmSupplyOnRequest/model/types.ts +5 -0
- package/src/features/Request/ConfirmSupplyOnRequest/ui/ConfirmSupplyOnRequestButton.vue +38 -0
- package/src/features/Request/ConfirmSupplyOnRequest/ui/index.ts +1 -0
- package/src/features/Request/CreateChildOrder/api/index.ts +60 -0
- package/src/features/Request/CreateChildOrder/index.ts +3 -0
- package/src/features/Request/CreateChildOrder/model/index.ts +1 -0
- package/src/features/Request/CreateChildOrder/model/types.ts +17 -0
- package/src/features/Request/CreateChildOrder/ui/CreateChildOrderButton/CreateChildOrderButton.vue +30 -0
- package/src/features/Request/CreateChildOrder/ui/CreateChildOrderButton/index.ts +1 -0
- package/src/features/Request/CreateChildOrder/ui/index.ts +1 -0
- package/src/features/Request/CreateParentOffer/api/index.ts +61 -0
- package/src/features/Request/CreateParentOffer/index.ts +3 -0
- package/src/features/Request/CreateParentOffer/model/index.ts +1 -0
- package/src/features/Request/CreateParentOffer/model/types.ts +22 -0
- package/src/features/Request/CreateParentOffer/ui/CreateParentOfferForm/CreateParentOfferForm.vue +78 -0
- package/src/features/Request/CreateParentOffer/ui/CreateParentOfferForm/index.ts +1 -0
- package/src/features/Request/CreateParentOffer/ui/ImageUploaderWithPreview/ImageUploaderWithPreview.vue +48 -0
- package/src/features/Request/CreateParentOffer/ui/ImageUploaderWithPreview/index.ts +1 -0
- package/src/features/Request/CreateParentOffer/ui/ImagesPreview/ImagesPreview.vue +104 -0
- package/src/features/Request/CreateParentOffer/ui/ImagesPreview/index.ts +1 -0
- package/src/features/Request/CreateParentOffer/ui/index.ts +3 -0
- package/src/features/Request/DeclineRequest/api/index.ts +45 -0
- package/src/features/Request/DeclineRequest/index.ts +3 -0
- package/src/features/Request/DeclineRequest/model/index.ts +1 -0
- package/src/features/Request/DeclineRequest/model/types.ts +5 -0
- package/src/features/Request/DeclineRequest/ui/DeclineButton.vue +37 -0
- package/src/features/Request/DeclineRequest/ui/index.ts +1 -0
- package/src/features/Request/DeliverOnRequest/api/index.ts +43 -0
- package/src/features/Request/DeliverOnRequest/index.ts +3 -0
- package/src/features/Request/DeliverOnRequest/model/index.ts +1 -0
- package/src/features/Request/DeliverOnRequest/model/types.ts +5 -0
- package/src/features/Request/DeliverOnRequest/ui/DeliverOnRequestButton.vue +38 -0
- package/src/features/Request/DeliverOnRequest/ui/index.ts +1 -0
- package/src/features/Request/DisputeOnRequest/api/index.ts +53 -0
- package/src/features/Request/DisputeOnRequest/index.ts +3 -0
- package/src/features/Request/DisputeOnRequest/model/index.ts +1 -0
- package/src/features/Request/DisputeOnRequest/model/types.ts +5 -0
- package/src/features/Request/DisputeOnRequest/ui/DisputeOnRequestButton.vue +37 -0
- package/src/features/Request/DisputeOnRequest/ui/index.ts +1 -0
- package/src/features/Request/ModerateRequest/api/index.ts +43 -0
- package/src/features/Request/ModerateRequest/index.ts +3 -0
- package/src/features/Request/ModerateRequest/model/index.ts +1 -0
- package/src/features/Request/ModerateRequest/model/types.ts +6 -0
- package/src/features/Request/ModerateRequest/ui/ModerateRequestButton.vue +40 -0
- package/src/features/Request/ModerateRequest/ui/index.ts +1 -0
- package/src/features/Request/ProhibitRequest/api/index.ts +43 -0
- package/src/features/Request/ProhibitRequest/index.ts +3 -0
- package/src/features/Request/ProhibitRequest/model/index.ts +1 -0
- package/src/features/Request/ProhibitRequest/model/types.ts +5 -0
- package/src/features/Request/ProhibitRequest/ui/ProhibitRequestButton.vue +36 -0
- package/src/features/Request/ProhibitRequest/ui/index.ts +1 -0
- package/src/features/Request/PublishRequest/api/index.ts +44 -0
- package/src/features/Request/PublishRequest/index.ts +3 -0
- package/src/features/Request/PublishRequest/model/index.ts +1 -0
- package/src/features/Request/PublishRequest/model/types.ts +5 -0
- package/src/features/Request/PublishRequest/ui/PublishRequestButton.vue +36 -0
- package/src/features/Request/PublishRequest/ui/index.ts +1 -0
- package/src/features/Request/RecieveOnRequest/api/index.ts +53 -0
- package/src/features/Request/RecieveOnRequest/index.ts +3 -0
- package/src/features/Request/RecieveOnRequest/model/index.ts +1 -0
- package/src/features/Request/RecieveOnRequest/model/types.ts +5 -0
- package/src/features/Request/RecieveOnRequest/ui/RecieveOnRequestButton.vue +37 -0
- package/src/features/Request/RecieveOnRequest/ui/index.ts +1 -0
- package/src/features/Request/SupplyOnRequest/api/index.ts +53 -0
- package/src/features/Request/SupplyOnRequest/index.ts +3 -0
- package/src/features/Request/SupplyOnRequest/model/index.ts +1 -0
- package/src/features/Request/SupplyOnRequest/model/types.ts +5 -0
- package/src/features/Request/SupplyOnRequest/ui/SupplyOnRequestButton.vue +37 -0
- package/src/features/Request/SupplyOnRequest/ui/index.ts +1 -0
- package/src/features/Request/UnpublishRequest/api/index.ts +44 -0
- package/src/features/Request/UnpublishRequest/index.ts +3 -0
- package/src/features/Request/UnpublishRequest/model/index.ts +1 -0
- package/src/features/Request/UnpublishRequest/model/types.ts +5 -0
- package/src/features/Request/UnpublishRequest/ui/UnpublishRequestButton.vue +36 -0
- package/src/features/Request/UnpublishRequest/ui/index.ts +1 -0
- package/src/features/Request/UpdateRequest/api/index.ts +47 -0
- package/src/features/Request/UpdateRequest/index.ts +3 -0
- package/src/features/Request/UpdateRequest/model/index.ts +1 -0
- package/src/features/Request/UpdateRequest/model/types.ts +10 -0
- package/src/features/Request/UpdateRequest/ui/UpdateRequestButton.vue +28 -0
- package/src/features/Request/UpdateRequest/ui/index.ts +1 -0
- package/src/features/Settings/UpdateSettings/api/index.ts +11 -0
- package/src/features/Settings/UpdateSettings/index.ts +2 -0
- package/src/features/Settings/UpdateSettings/model/index.ts +16 -0
- package/src/features/Settings/index.ts +2 -0
- package/src/features/Union/ActivateCooperative/index.ts +1 -0
- package/src/features/Union/ActivateCooperative/model/index.ts +33 -0
- package/src/features/Union/AddCooperative/index.ts +2 -0
- package/src/features/Union/AddCooperative/model/index.ts +33 -0
- package/src/features/Union/AddCooperative/ui/AddCooperativeForm.vue +91 -0
- package/src/features/Union/AddCooperative/ui/index.ts +1 -0
- package/src/features/Union/BlockCooperative/index.ts +1 -0
- package/src/features/Union/BlockCooperative/model/index.ts +33 -0
- package/src/features/Union/DeleteCooperative/index.ts +1 -0
- package/src/features/Union/DeleteCooperative/model/index.ts +32 -0
- package/src/features/Union/LoadCooperatives/api/index.ts +33 -0
- package/src/features/Union/LoadCooperatives/index.ts +2 -0
- package/src/features/Union/LoadCooperatives/model/index.ts +16 -0
- package/src/features/User/AddUser/api/index.ts +11 -0
- package/src/features/User/AddUser/index.ts +3 -0
- package/src/features/User/AddUser/model/index.ts +59 -0
- package/src/features/User/AddUser/ui/AddUserDialog/AddUserDialog.vue +232 -0
- package/src/features/User/AddUser/ui/AddUserDialog/index.ts +1 -0
- package/src/features/User/AddUser/ui/index.ts +1 -0
- package/src/features/User/CreateUser/api/index.ts +65 -0
- package/src/features/User/CreateUser/index.ts +2 -0
- package/src/features/User/CreateUser/model/index.ts +237 -0
- package/src/features/User/LoginUser/api/index.ts +20 -0
- package/src/features/User/LoginUser/index.ts +2 -0
- package/src/features/User/LoginUser/model/index.ts +69 -0
- package/src/features/User/LoginUser/ui/LoginForm/LoginForm.vue +78 -0
- package/src/features/User/LoginUser/ui/LoginForm/index.ts +1 -0
- package/src/features/User/Logout/api/index.ts +16 -0
- package/src/features/User/Logout/index.ts +2 -0
- package/src/features/User/Logout/model/index.ts +21 -0
- package/src/features/User/LostKey/api/index.ts +9 -0
- package/src/features/User/LostKey/index.ts +2 -0
- package/src/features/User/LostKey/model/index.ts +11 -0
- package/src/features/User/ResetKey/api/index.ts +9 -0
- package/src/features/User/ResetKey/index.ts +2 -0
- package/src/features/User/ResetKey/model/index.ts +11 -0
- package/src/features/User/UpdateMeta/index.ts +1 -0
- package/src/features/User/UpdateMeta/model/index.ts +34 -0
- package/src/features/Wallet/DepositToWallet/index.ts +1 -0
- package/src/features/Wallet/DepositToWallet/ui/DepositButton/DepositButton.vue +79 -0
- package/src/features/Wallet/DepositToWallet/ui/DepositButton/index.ts +1 -0
- package/src/features/Wallet/DepositToWallet/ui/index.ts +1 -0
- package/src/features/Wallet/WithdrawFromWallet/index.ts +1 -0
- package/src/features/Wallet/WithdrawFromWallet/ui/index.ts +1 -0
- package/src/features/Wallet/WithdrawFromWallet/ui/withdrawButton.vue +54 -0
- package/src/i18n/index.ts +5 -0
- package/src/i18n/ru-RU/index.ts +7 -0
- package/src/index.ts +1 -0
- package/src/pages/Cooperative/Contacts/index.ts +1 -0
- package/src/pages/Cooperative/Contacts/ui/ContactsPage.vue +7 -0
- package/src/pages/Cooperative/Contacts/ui/index.ts +1 -0
- package/src/pages/Cooperative/ListOfBranches/index.ts +1 -0
- package/src/pages/Cooperative/ListOfBranches/ui/ListOfBranchesPage.vue +101 -0
- package/src/pages/Cooperative/ListOfBranches/ui/index.ts +1 -0
- package/src/pages/Cooperative/ListOfOrders/index.ts +1 -0
- package/src/pages/Cooperative/ListOfOrders/ui/ListOfOrdersPage.vue +12 -0
- package/src/pages/Cooperative/ListOfOrders/ui/index.ts +1 -0
- package/src/pages/Cooperative/ListOfParticipants/index.ts +1 -0
- package/src/pages/Cooperative/ListOfParticipants/ui/ListOfParticipantsPage.vue +14 -0
- package/src/pages/Cooperative/ListOfParticipants/ui/index.ts +1 -0
- package/src/pages/Cooperative/MembersPage/MembersPage.vue +10 -0
- package/src/pages/Cooperative/MembersPage/index.ts +1 -0
- package/src/pages/Cooperative/SettingsPage/CooperativeSettingsPage.vue +5 -0
- package/src/pages/Cooperative/SettingsPage/index.ts +1 -0
- package/src/pages/Documentor/ListOfDocuments/ListOfDocumentsPage.vue +10 -0
- package/src/pages/Documentor/ListOfDocuments/index.ts +1 -0
- package/src/pages/ExtStore/BaseRoute/ExtensionStoreBase.vue +5 -0
- package/src/pages/ExtStore/BaseRoute/index.ts +1 -0
- package/src/pages/ExtStore/ExtensionPage/ExtensionPage.vue +205 -0
- package/src/pages/ExtStore/ExtensionPage/index.ts +1 -0
- package/src/pages/ExtStore/ExtensionsShowcase/ExtensionsShowcase.vue +18 -0
- package/src/pages/ExtStore/ExtensionsShowcase/index.ts +1 -0
- package/src/pages/ExtStore/InstalledExtensions/InstalledExtensions.vue +18 -0
- package/src/pages/ExtStore/InstalledExtensions/index.ts +1 -0
- package/src/pages/Installer/index.ts +1 -0
- package/src/pages/Installer/ui/InstallCooperativePage.vue +9 -0
- package/src/pages/Installer/ui/index.ts +1 -0
- package/src/pages/Marketplace/CreateParentOffer/index.ts +1 -0
- package/src/pages/Marketplace/CreateParentOffer/ui/CreateParentOfferPage.vue +13 -0
- package/src/pages/Marketplace/CreateParentOffer/ui/index.ts +1 -0
- package/src/pages/Marketplace/MainPage/index.ts +1 -0
- package/src/pages/Marketplace/MainPage/ui/MainPage.vue +36 -0
- package/src/pages/Marketplace/MainPage/ui/index.ts +1 -0
- package/src/pages/Marketplace/Moderation/index.ts +1 -0
- package/src/pages/Marketplace/Moderation/ui/ModerationPage.vue +59 -0
- package/src/pages/Marketplace/Moderation/ui/index.ts +1 -0
- package/src/pages/Marketplace/OfferPage/index.ts +1 -0
- package/src/pages/Marketplace/OfferPage/ui/OfferPage.vue +162 -0
- package/src/pages/Marketplace/OfferPage/ui/index.ts +1 -0
- package/src/pages/Marketplace/Showcase/index.ts +1 -0
- package/src/pages/Marketplace/Showcase/ui/ShowcasePage.vue +42 -0
- package/src/pages/Marketplace/Showcase/ui/index.ts +1 -0
- package/src/pages/Marketplace/SuppliesList/index.ts +1 -0
- package/src/pages/Marketplace/SuppliesList/ui/SuppliesListPage.vue +18 -0
- package/src/pages/Marketplace/SuppliesList/ui/index.ts +1 -0
- package/src/pages/Marketplace/UserParentOffers/index.ts +1 -0
- package/src/pages/Marketplace/UserParentOffers/ui/UserParentOffersPage.vue +44 -0
- package/src/pages/Marketplace/UserParentOffers/ui/index.ts +1 -0
- package/src/pages/Marketplace/UserSuppliesList/index.ts +1 -0
- package/src/pages/Marketplace/UserSuppliesList/ui/UserSuppliesListPage.vue +29 -0
- package/src/pages/Marketplace/UserSuppliesList/ui/index.ts +1 -0
- package/src/pages/Registrator/LostKey/index.ts +1 -0
- package/src/pages/Registrator/LostKey/ui/LostKeyPage.vue +13 -0
- package/src/pages/Registrator/LostKey/ui/index.ts +1 -0
- package/src/pages/Registrator/ResetKey/index.ts +1 -0
- package/src/pages/Registrator/ResetKey/ui/ResetKeyPage.vue +9 -0
- package/src/pages/Registrator/ResetKey/ui/index.ts +1 -0
- package/src/pages/Registrator/SignIn/index.ts +1 -0
- package/src/pages/Registrator/SignIn/ui/SignInPage.vue +26 -0
- package/src/pages/Registrator/SignIn/ui/index.ts +1 -0
- package/src/pages/Registrator/SignUp/EmailInput.vue +74 -0
- package/src/pages/Registrator/SignUp/GenerateAccount.vue +82 -0
- package/src/pages/Registrator/SignUp/PayInitial.vue +70 -0
- package/src/pages/Registrator/SignUp/ReadStatement.vue +103 -0
- package/src/pages/Registrator/SignUp/SelectBranch.vue +50 -0
- package/src/pages/Registrator/SignUp/SetUserData.vue +64 -0
- package/src/pages/Registrator/SignUp/SignStatement.vue +189 -0
- package/src/pages/Registrator/SignUp/SignUp.vue +119 -0
- package/src/pages/Registrator/SignUp/WaitingRegistration.vue +69 -0
- package/src/pages/Registrator/SignUp/Welcome.vue +30 -0
- package/src/pages/Registrator/SignUp/index.ts +1 -0
- package/src/pages/Support/SupportPage.vue +38 -0
- package/src/pages/Support/index.ts +1 -0
- package/src/pages/Union/Connection/ConnectionPage.vue +107 -0
- package/src/pages/Union/Connection/index.ts +1 -0
- package/src/pages/Union/ListOfCooperatives/index.ts +1 -0
- package/src/pages/Union/ListOfCooperatives/ui/UnionPageListOfCooperatives.vue +8 -0
- package/src/pages/Union/ListOfCooperatives/ui/index.ts +1 -0
- package/src/pages/User/CardPage/index.ts +1 -0
- package/src/pages/User/CardPage/ui/CoopCardPage.vue +8 -0
- package/src/pages/User/CardPage/ui/index.ts +1 -0
- package/src/pages/User/IdentityPage/index.ts +1 -0
- package/src/pages/User/IdentityPage/ui/IdentityPage.vue +15 -0
- package/src/pages/User/IdentityPage/ui/index.ts +1 -0
- package/src/pages/User/PaymentMethodsPage/index.ts +1 -0
- package/src/pages/User/PaymentMethodsPage/ui/PaymentMethods.vue +15 -0
- package/src/pages/User/PaymentMethodsPage/ui/index.ts +1 -0
- package/src/pages/User/SettingsPage/index.ts +1 -0
- package/src/pages/User/SettingsPage/ui/UserSettingsPage.vue +5 -0
- package/src/pages/User/SettingsPage/ui/index.ts +1 -0
- package/src/pages/User/WalletPage/index.ts +1 -0
- package/src/pages/User/WalletPage/ui/WalletPage.vue +14 -0
- package/src/pages/User/WalletPage/ui/index.ts +1 -0
- package/src/pages/_layouts/blank.vue +24 -0
- package/src/pages/_layouts/default.vue +78 -0
- package/src/pages/_layouts/permissionDenied.vue +20 -0
- package/src/pages/blank/blank.vue +9 -0
- package/src/pages/index.vue +5 -0
- package/src/quasar.d.ts +9 -0
- package/src/shared/api/alerts.ts +27 -0
- package/src/shared/api/axios.ts +72 -0
- package/src/shared/api/client.ts +13 -0
- package/src/shared/api/crypto.ts +86 -0
- package/src/shared/api/eosio.ts +122 -0
- package/src/shared/api/errors.ts +40 -0
- package/src/shared/api/index.ts +5 -0
- package/src/shared/api/indexDB.ts +39 -0
- package/src/shared/api/sleep.ts +1 -0
- package/src/shared/api/utils.ts +9 -0
- package/src/shared/api/wif.ts +9 -0
- package/src/shared/config/ActionsList.ts +23 -0
- package/src/shared/config/ContractsList.ts +32 -0
- package/src/shared/config/LimitsList.ts +7 -0
- package/src/shared/config/SecondaryIndexesNumbersList.ts +15 -0
- package/src/shared/config/SecondaryIndexesTypesList.ts +7 -0
- package/src/shared/config/TablesList.ts +12 -0
- package/src/shared/config/index.ts +6 -0
- package/src/shared/lib/composables/useEditableData.ts +58 -0
- package/src/shared/lib/composables/useEditableTableRows.ts +89 -0
- package/src/shared/lib/consts/workspaces/index.ts +1 -0
- package/src/shared/lib/document/api/index.ts +12 -0
- package/src/shared/lib/document/index.ts +2 -0
- package/src/shared/lib/document/model/entity.ts +64 -0
- package/src/shared/lib/document/model/index.ts +2 -0
- package/src/shared/lib/document/model/types.ts +9 -0
- package/src/shared/lib/types/crypto/index.ts +5 -0
- package/src/shared/lib/types/document/index.ts +15 -0
- package/src/shared/lib/types/errors/base.ts +5 -0
- package/src/shared/lib/types/errors/index.ts +1 -0
- package/src/shared/lib/types/graphql/index.ts +14 -0
- package/src/shared/lib/types/payments/index.ts +23 -0
- package/src/shared/lib/types/user/IUserData.ts +28 -0
- package/src/shared/lib/types/user/index.ts +53 -0
- package/src/shared/lib/utils/dates/formatToFromNow.ts +6 -0
- package/src/shared/lib/utils/dates/formatToHumanDate.ts +6 -0
- package/src/shared/lib/utils/dates/moment.ts +6 -0
- package/src/shared/lib/utils/formatAssetToReadable.ts +10 -0
- package/src/shared/lib/utils/formatDateForEos.ts +6 -0
- package/src/shared/lib/utils/formatToAsset.ts +4 -0
- package/src/shared/lib/utils/generateUsername.ts +9 -0
- package/src/shared/lib/utils/getNameFromUserData.ts +9 -0
- package/src/shared/lib/utils/index.ts +6 -0
- package/src/shared/lib/utils/isDomainRule.ts +4 -0
- package/src/shared/lib/utils/notEmptyPhoneRule.ts +3 -0
- package/src/shared/lib/utils/notEmptyRule.ts +3 -0
- package/src/shared/lib/utils/validEmailRule.ts +6 -0
- package/src/shared/lib/utils/validatePersonalNameRule.ts +3 -0
- package/src/shared/locales/ru/base.yml +12 -0
- package/src/shared/locales/ru.ts +12 -0
- package/src/shared/store/index.ts +202 -0
- package/src/shared/ui/AutoAvatar/AutoAvatar.vue +37 -0
- package/src/shared/ui/AutoAvatar/index.ts +1 -0
- package/src/shared/ui/BaseDocument/BaseDocument.vue +202 -0
- package/src/shared/ui/BaseDocument/index.ts +1 -0
- package/src/shared/ui/BranchSelector/BranchSelector.vue +47 -0
- package/src/shared/ui/BranchSelector/index.ts +1 -0
- package/src/shared/ui/ComplexDocument/ComplexDocument.vue +25 -0
- package/src/shared/ui/ComplexDocument/index.ts +1 -0
- package/src/shared/ui/DocumentHtmlReader/DocumentHtmlReader.vue +57 -0
- package/src/shared/ui/DocumentHtmlReader/index.ts +1 -0
- package/src/shared/ui/EditableActions/EditableActions.vue +34 -0
- package/src/shared/ui/EditableActions/index.ts +1 -0
- package/src/shared/ui/Footer/Contacts.vue +24 -0
- package/src/shared/ui/Footer/index.ts +1 -0
- package/src/shared/ui/Form/Form.vue +33 -0
- package/src/shared/ui/Form/index.ts +1 -0
- package/src/shared/ui/ImageCarousel/ImageCarousel.vue +68 -0
- package/src/shared/ui/ImageCarousel/index.ts +1 -0
- package/src/shared/ui/Loader/Loader.vue +19 -0
- package/src/shared/ui/Loader/index.ts +1 -0
- package/src/shared/ui/Map/Map.vue +52 -0
- package/src/shared/ui/Map/index.ts +1 -0
- package/src/shared/ui/ModalBase/ModalBase.vue +26 -0
- package/src/shared/ui/ModalBase/index.ts +1 -0
- package/src/shared/ui/PayWithProvider/PayWithProvider.vue +19 -0
- package/src/shared/ui/PayWithProvider/index.ts +1 -0
- package/src/shared/ui/Providers/Bank/Bank.vue +105 -0
- package/src/shared/ui/Providers/Bank/index.ts +1 -0
- package/src/shared/ui/Providers/Yookassa/Yookassa.vue +57 -0
- package/src/shared/ui/Providers/Yookassa/index.ts +1 -0
- package/src/shared/ui/ToogleDarkLight/ToogleDarkLight.vue +34 -0
- package/src/shared/ui/ToogleDarkLight/index.ts +1 -0
- package/src/shared/ui/UserDataForm/EntrepreneurDataForm/EntrepreneurDataForm.vue +115 -0
- package/src/shared/ui/UserDataForm/EntrepreneurDataForm/index.ts +1 -0
- package/src/shared/ui/UserDataForm/IndividualDataForm/IndividualDataForm.vue +40 -0
- package/src/shared/ui/UserDataForm/IndividualDataForm/index.ts +1 -0
- package/src/shared/ui/UserDataForm/OrganizationDataForm/OrganizationDataForm.vue +129 -0
- package/src/shared/ui/UserDataForm/OrganizationDataForm/index.ts +1 -0
- package/src/shared/ui/UserDataForm/UserDataForm/UserDataForm.vue +47 -0
- package/src/shared/ui/UserDataForm/UserDataForm/index.ts +1 -0
- package/src/shared/ui/ZodForm/ZodForm.vue +169 -0
- package/src/shared/ui/ZodForm/index.ts +1 -0
- package/src/shims-vue.d.ts +10 -0
- package/src/stores/index.ts +34 -0
- package/src/stores/store-flag.d.ts +10 -0
- package/src/types/index.ts +3 -0
- package/src/widgets/Agreementer/RequireAgreements/ui/RequireAgreements.vue +71 -0
- package/src/widgets/Agreementer/RequireAgreements/ui/index.ts +1 -0
- package/src/widgets/BankDetailsCard/index.ts +1 -0
- package/src/widgets/BankDetailsCard/ui/BankDetailsCard.vue +107 -0
- package/src/widgets/BankDetailsCard/ui/index.ts +1 -0
- package/src/widgets/BranchCard/index.ts +1 -0
- package/src/widgets/BranchCard/ui/BranchCard.vue +100 -0
- package/src/widgets/BranchCard/ui/index.ts +1 -0
- package/src/widgets/Commutator/Commutator.vue +7 -0
- package/src/widgets/Commutator/index.ts +1 -0
- package/src/widgets/Cooperative/Agenda/ListOfQuestions/index.ts +1 -0
- package/src/widgets/Cooperative/Agenda/ListOfQuestions/ui/ListOfQuestions.vue +265 -0
- package/src/widgets/Cooperative/Agenda/ListOfQuestions/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Contacts/index.ts +1 -0
- package/src/widgets/Cooperative/Contacts/ui/ChangeContacts.vue +56 -0
- package/src/widgets/Cooperative/Contacts/ui/Contacts.vue +52 -0
- package/src/widgets/Cooperative/Contacts/ui/index.ts +2 -0
- package/src/widgets/Cooperative/Contributions/index.ts +1 -0
- package/src/widgets/Cooperative/Contributions/ui/ChangeContributions.vue +88 -0
- package/src/widgets/Cooperative/Contributions/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Description/ui/SetDescription.vue +4 -0
- package/src/widgets/Cooperative/Description/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Details/index.ts +1 -0
- package/src/widgets/Cooperative/Details/ui/Details.vue +32 -0
- package/src/widgets/Cooperative/Details/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Documents/ListOfDocuments/index.ts +1 -0
- package/src/widgets/Cooperative/Documents/ListOfDocuments/ui/ListOfDocumentsWidget.vue +156 -0
- package/src/widgets/Cooperative/Documents/ListOfDocuments/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Funds/index.ts +1 -0
- package/src/widgets/Cooperative/Funds/ui/AccumulationFunds.vue +121 -0
- package/src/widgets/Cooperative/Funds/ui/AddAccumulationFund.vue +79 -0
- package/src/widgets/Cooperative/Funds/ui/AddExpenseFund.vue +76 -0
- package/src/widgets/Cooperative/Funds/ui/ChangeFunds.vue +11 -0
- package/src/widgets/Cooperative/Funds/ui/ExpenseFunds.vue +113 -0
- package/src/widgets/Cooperative/Funds/ui/index.ts +3 -0
- package/src/widgets/Cooperative/Install/InstallWidgetBase/index.ts +1 -0
- package/src/widgets/Cooperative/Install/InstallWidgetBase/ui/InstallWidgetBase.vue +29 -0
- package/src/widgets/Cooperative/Install/InstallWidgetBase/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Members/index.ts +1 -0
- package/src/widgets/Cooperative/Members/ui/Members.vue +220 -0
- package/src/widgets/Cooperative/Members/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Orders/ListOfOrders/index.ts +1 -0
- package/src/widgets/Cooperative/Orders/ListOfOrders/ui/ListOfOrdersWidget.vue +209 -0
- package/src/widgets/Cooperative/Orders/ListOfOrders/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Participants/ExitCard/index.ts +1 -0
- package/src/widgets/Cooperative/Participants/ExitCard/ui/ExitCard.vue +15 -0
- package/src/widgets/Cooperative/Participants/ExitCard/ui/index.ts +1 -0
- package/src/widgets/Cooperative/Participants/ListOfParticipants/index.ts +1 -0
- package/src/widgets/Cooperative/Participants/ListOfParticipants/ui/ListOfParticipantsWidget.vue +103 -0
- package/src/widgets/Cooperative/Participants/ListOfParticipants/ui/index.ts +1 -0
- package/src/widgets/Desktop/LeftDrawerMenu/LeftDrawerMenu.vue +10 -0
- package/src/widgets/Desktop/LeftDrawerMenu/index.ts +1 -0
- package/src/widgets/Desktop/SecondLevelMenu/SecondLevelMenu.vue +57 -0
- package/src/widgets/Desktop/SecondLevelMenu/index.ts +1 -0
- package/src/widgets/Desktop/SecondLevelMenuList/SecondLevelMenuList.vue +86 -0
- package/src/widgets/Desktop/SecondLevelMenuList/index.ts +1 -0
- package/src/widgets/Desktop/WorkspaceMenu/WorkspaceMenu.vue +94 -0
- package/src/widgets/Desktop/WorkspaceMenu/index.ts +1 -0
- package/src/widgets/ExtStore/ExtensionCard/ExtensionCard.vue +38 -0
- package/src/widgets/ExtStore/ExtensionCard/index.ts +1 -0
- package/src/widgets/Header/CommonHeader/Header.vue +203 -0
- package/src/widgets/Header/CommonHeader/index.ts +1 -0
- package/src/widgets/Header/SettingsDropdown/SettingsDropdown.vue +86 -0
- package/src/widgets/Header/SettingsDropdown/index.ts +1 -0
- package/src/widgets/IndividualCard/index.ts +1 -0
- package/src/widgets/IndividualCard/ui/IndividualCard.vue +170 -0
- package/src/widgets/IndividualCard/ui/index.ts +1 -0
- package/src/widgets/OrganizationCard/index.ts +1 -0
- package/src/widgets/OrganizationCard/ui/OrganizationCard.vue +44 -0
- package/src/widgets/OrganizationCard/ui/index.ts +1 -0
- package/src/widgets/Registrator/AlreadyRegistered/AlreadyRegistered.vue +19 -0
- package/src/widgets/Registrator/AlreadyRegistered/index.ts +1 -0
- package/src/widgets/Registrator/LostKey/index.ts +1 -0
- package/src/widgets/Registrator/LostKey/ui/LostKey.vue +63 -0
- package/src/widgets/Registrator/LostKey/ui/index.ts +1 -0
- package/src/widgets/Registrator/ResetKey/index.ts +1 -0
- package/src/widgets/Registrator/ResetKey/ui/ResetKey.vue +89 -0
- package/src/widgets/Registrator/ResetKey/ui/index.ts +1 -0
- package/src/widgets/Registrator/SignIn/SignIn.vue +12 -0
- package/src/widgets/Registrator/SignIn/index.ts +1 -0
- package/src/widgets/Request/CreateChildOrderCard/CreateChildOrderCard.vue +57 -0
- package/src/widgets/Request/CreateChildOrderCard/index.ts +1 -0
- package/src/widgets/Request/RequestCard/RequestCard.vue +37 -0
- package/src/widgets/Request/RequestCard/index.ts +1 -0
- package/src/widgets/Request/SupplyOrderRequestCard/index.ts +2 -0
- package/src/widgets/Request/SupplyOrderRequestCard/model/index.ts +1 -0
- package/src/widgets/Request/SupplyOrderRequestCard/model/types.ts +10 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Base/Base.vue +93 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Base/index.ts +1 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/EightStep.vue +28 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/FifthStep.vue +34 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/FirstStep.vue +39 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/FourthStep.vue +37 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/SecondStep.vue +18 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/SeventhStep.vue +37 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/SixthStep.vue +37 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/ThirdStep.vue +51 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/Steps/index.ts +8 -0
- package/src/widgets/Request/SupplyOrderRequestCard/ui/index.ts +1 -0
- package/src/widgets/Union/ListOfCooperatives/index.ts +1 -0
- package/src/widgets/Union/ListOfCooperatives/ui/UnionListOfCooperatives.vue +136 -0
- package/src/widgets/Union/ListOfCooperatives/ui/index.ts +1 -0
- package/src/widgets/User/CoopCard/index.ts +1 -0
- package/src/widgets/User/CoopCard/ui/CoopCard.vue +111 -0
- package/src/widgets/User/CoopCard/ui/index.ts +1 -0
- package/src/widgets/User/LogoutCard/index.ts +1 -0
- package/src/widgets/User/LogoutCard/ui/LogoutCard.vue +31 -0
- package/src/widgets/User/LogoutCard/ui/index.ts +1 -0
- package/src/widgets/User/PaymentMethods/index.ts +1 -0
- package/src/widgets/User/PaymentMethods/ui/PaymentMethods.vue +116 -0
- package/src/widgets/User/PaymentMethods/ui/index.ts +1 -0
- package/src/widgets/User/PersonalCard/index.ts +1 -0
- package/src/widgets/User/PersonalCard/ui/PersonalCard.vue +109 -0
- package/src/widgets/User/PersonalCard/ui/UserQR.vue +5 -0
- package/src/widgets/User/PersonalCard/ui/index.ts +2 -0
- package/src/widgets/User/WalletCard/index.ts +1 -0
- package/src/widgets/User/WalletCard/ui/WalletCard.vue +26 -0
- package/src/widgets/User/WalletCard/ui/index.ts +1 -0
- package/src-ssr/middlewares/render.ts +59 -0
- package/src-ssr/server.ts +134 -0
- package/src-ssr/ssr-flag.d.ts +10 -0
- package/tsconfig.json +25 -0
- package/tsconfig.vue-tsc.json +9 -0
- package/vite.111config.js +37 -0
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="16" height="15" viewBox="0 0 16 15" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M15.3147 2.37202C15.1715 2.29132 15.0071 2.2596 14.8452 2.28146C14.6834 2.30331 14.5324 2.37761 14.4142 2.49362L11.2781 5.54002L8.64498 0.420021C8.57847 0.29302 8.47985 0.186927 8.35959 0.112984C8.23933 0.0390401 8.1019 0 7.96186 0C7.82182 0 7.68439 0.0390401 7.56413 0.112984C7.44387 0.186927 7.34526 0.29302 7.27874 0.420021L4.64563 5.54002L1.5095 2.49362C1.39063 2.38133 1.24143 2.30894 1.08171 2.28608C0.921987 2.26322 0.759296 2.29096 0.615231 2.36562C0.473277 2.44194 0.357694 2.56162 0.284318 2.70828C0.210942 2.85493 0.183363 3.02138 0.20536 3.18482L1.65854 13.732C1.68406 13.922 1.77549 14.0961 1.91592 14.222C2.05634 14.3479 2.23626 14.4171 2.42239 14.4168H13.2902C13.4752 14.4178 13.6544 14.3506 13.7956 14.2274C13.9368 14.1041 14.0306 13.933 14.0602 13.7448L15.7122 3.20402C15.7389 3.03991 15.7149 2.87127 15.6436 2.72197C15.5723 2.57266 15.4572 2.45024 15.3147 2.37202Z" fill="#FFC700"/>
|
3
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="Слой_2" data-name="Слой 2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 548.7 618.29"><defs><style>.cls-1{fill:#fff;stroke:#000;stroke-miterlimit:10;stroke-width:10px;}</style></defs><title>Dacom_logo_vertical</title><ellipse class="cls-1" cx="475.2" cy="424.45" rx="66.76" ry="66.33" transform="translate(49.93 898.91) rotate(-89.9)"/><ellipse class="cls-1" cx="475.6" cy="191.94" rx="66.76" ry="66.33" transform="translate(282.84 667.21) rotate(-89.9)"/><ellipse class="cls-1" cx="72.64" cy="190.09" rx="66.76" ry="66.33" transform="translate(-117.57 262.4) rotate(-89.9)"/><ellipse class="cls-1" cx="72.24" cy="423.75" rx="66.76" ry="66.33" transform="translate(-351.63 495.24) rotate(-89.9)"/><ellipse class="cls-1" cx="273.37" cy="76.23" rx="67.53" ry="67.1" transform="translate(196.67 349.46) rotate(-89.9)"/><ellipse class="cls-1" cx="272.56" cy="541.24" rx="67.53" ry="67.1" transform="translate(-269.16 812.86) rotate(-89.9)"/></svg>
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:none;}.cls-2{fill:#fff;}.cls-3{fill:#00d6a0;}</style></defs><g id="Object"><path class="cls-1" d="M23.78,39.69v-.51a.64.64,0,0,0-.5-.62c0,.09-.05.18-.08.27a6,6,0,0,1,.05.74,6.47,6.47,0,0,1-.05.76A.66.66,0,0,0,23.78,39.69Z"/><path class="cls-1" d="M21.83,37.92c-2.32-.17-8.69-1.66-8.69-1.66A8.31,8.31,0,0,1,11,38.37c0,.13-.05.25-.07.37a5.69,5.69,0,0,0-.07.83,5.83,5.83,0,0,0,0,.59,5.42,5.42,0,0,0,.21,1,5.8,5.8,0,0,0,11,0,4.65,4.65,0,0,0,.2-1,5.85,5.85,0,0,0,0-.59,5.69,5.69,0,0,0-.07-.83,6.85,6.85,0,0,0-.2-.81Z"/><path class="cls-2" d="M17.36,47.83l.8,5.22h.95l1.48-7.77-.44,0h-.48a6.86,6.86,0,0,1-6.24,0H13l-.43,0L14,53.05H15l.79-5.22h0L15,46.39h3.12l-.78,1.44Z"/><path d="M20.59,45.28l-1.48,7.77H14l-1.48-7.77A5.84,5.84,0,0,0,7.11,51.1v2.84H26V51.1A5.85,5.85,0,0,0,20.59,45.28Z"/><polygon class="cls-3" points="14.95 53.05 18.16 53.05 17.36 47.83 17.33 47.83 18.11 46.39 14.99 46.39 15.77 47.83 15.74 47.83 14.95 53.05"/><path d="M8.36,39.18v.51A1.61,1.61,0,0,0,10,41.26h.1a6.53,6.53,0,0,0,3.33,4,6.86,6.86,0,0,0,6.24,0,6.54,6.54,0,0,0,3.34-4h.09a1.61,1.61,0,0,0,1.65-1.57v-.51a1.59,1.59,0,0,0-1.3-1.54A5.34,5.34,0,0,0,23.5,37v-.07a4.67,4.67,0,0,0,0-.52h0a6.13,6.13,0,0,0-1.06-2.92,7.33,7.33,0,0,0-1.05-1.18,5,5,0,0,0-2.68-1.43,7.5,7.5,0,0,0-2.94-.23,7.27,7.27,0,0,0-1.59.38,6.22,6.22,0,0,0-4.46,6v.13a5.24,5.24,0,0,0,0,.56A1.59,1.59,0,0,0,8.36,39.18Zm14.92-.62a.64.64,0,0,1,.5.62v.51a.66.66,0,0,1-.58.64,6.47,6.47,0,0,0,.05-.76,6,6,0,0,0-.05-.74C23.23,38.74,23.25,38.65,23.28,38.56Zm-12.39.18c0-.12,0-.24.07-.37a8.31,8.31,0,0,0,2.18-2.11s6.37,1.49,8.69,1.66H22a6.85,6.85,0,0,1,.2.81,5.69,5.69,0,0,1,.07.83,5.85,5.85,0,0,1,0,.59,4.65,4.65,0,0,1-.2,1,5.8,5.8,0,0,1-11,0,5.42,5.42,0,0,1-.21-1,5.83,5.83,0,0,1,0-.59A5.69,5.69,0,0,1,10.89,38.74Zm-1.56.44a.65.65,0,0,1,.56-.64c0,.13,0,.25,0,.37a4.77,4.77,0,0,0-.05.66,6.47,6.47,0,0,0,.05.76.66.66,0,0,1-.57-.64Z"/><path class="cls-1" d="M56.7,40v-.49a.63.63,0,0,0-.55-.61,5.88,5.88,0,0,1,0,.72,2.26,2.26,0,0,1,0,.26,5.84,5.84,0,0,1,0,.73A.63.63,0,0,0,56.7,40Z"/><path class="cls-1" d="M45.66,45.34l.42,0Z"/><path class="cls-1" d="M53,36.66s-6.23,1.43-8.5,1.6h-.18a4.06,4.06,0,0,0-.2.78,5.16,5.16,0,0,0-.07.79,5.46,5.46,0,0,0,0,.57,4.17,4.17,0,0,0,.2.93,5.7,5.7,0,0,0,10.75,0,5.69,5.69,0,0,0,.2-.93,5.44,5.44,0,0,0,0-.57,5.16,5.16,0,0,0-.07-.79c0-.12-.05-.24-.07-.36A7.85,7.85,0,0,1,53,36.66Z"/><path class="cls-1" d="M43.17,38.84c-.28.07-.61.34-.61.63V40a.63.63,0,0,0,.57.61,5.84,5.84,0,0,1-.05-.73,5.65,5.65,0,0,1,.05-.71A2.69,2.69,0,0,1,43.17,38.84Z"/><path d="M40.37,51v2.73H58.9V51a5.55,5.55,0,0,0-1.47-3.75,6.74,6.74,0,0,0,1-.51.14.14,0,0,0,.08-.14.17.17,0,0,0-.09-.14,4.55,4.55,0,0,1-1.95-1.72,3.67,3.67,0,0,0,2,.83.18.18,0,0,0,.17-.06.17.17,0,0,0,0-.17A24.21,24.21,0,0,1,57.19,41a1.59,1.59,0,0,0,.2-.24,1.42,1.42,0,0,0,.26-.81v-.49a1.44,1.44,0,0,0-.47-1.06,7.88,7.88,0,0,0-7.61-8,7.19,7.19,0,0,0-4.09,1.28,4,4,0,0,0-1.16,1A8.4,8.4,0,0,0,42,38.53h0a1.48,1.48,0,0,0-.34.93V40a1.48,1.48,0,0,0,.66,1.22,30.09,30.09,0,0,0,.86,5A5.59,5.59,0,0,0,40.37,51Zm13-4.33c-.08.15-2,1.88-2,1.88l1.28,1.24-3,3.23-3-3.23,1.28-1.24S46,46.77,46,46.62s1.17-1.16,1.17-1.16L49.63,53l2.52-7.51S53.47,46.35,53.32,46.62Zm-7.66-1.28.42,0Zm2.31,2,3.33,0-1.66,4.92h0Zm8.2-7.75a5.88,5.88,0,0,0,0-.72.63.63,0,0,1,.55.61V40a.63.63,0,0,1-.57.61,5.84,5.84,0,0,0,0-.73A2.26,2.26,0,0,0,56.17,39.58Zm-12.08-.53a4.06,4.06,0,0,1,.2-.78h.18c2.27-.17,8.5-1.6,8.5-1.6a7.85,7.85,0,0,0,2.13,2c0,.12,0,.24.07.36a5.16,5.16,0,0,1,.07.79,5.44,5.44,0,0,1,0,.57,5.69,5.69,0,0,1-.2.93,5.7,5.7,0,0,1-10.75,0,4.17,4.17,0,0,1-.2-.93,5.46,5.46,0,0,1,0-.57A5.16,5.16,0,0,1,44.09,39.05Zm-1,.08a5.65,5.65,0,0,0-.05.71,5.84,5.84,0,0,0,.05.73.63.63,0,0,1-.57-.61v-.49c0-.29.33-.56.61-.63A2.69,2.69,0,0,0,43.13,39.13Z"/><polygon class="cls-3" points="49.64 52.22 51.3 47.3 47.97 47.33 49.6 52.22 49.64 52.22"/><path class="cls-2" d="M53.32,46.62c.15-.27-1.17-1.16-1.17-1.16L49.63,53l3-3.23L51.33,48.5S53.24,46.77,53.32,46.62Z"/><path class="cls-2" d="M49.63,53l-2.51-7.51s-1.33.89-1.17,1.16,2,1.88,2,1.88l-1.28,1.24Z"/><path class="cls-1" d="M40.45,13.79v-.51a.65.65,0,0,0-.5-.62,2.76,2.76,0,0,1-.08.27,6.13,6.13,0,0,1,.05.74,6.33,6.33,0,0,1-.05.76A.66.66,0,0,0,40.45,13.79Z"/><path class="cls-1" d="M38.5,12c-2.32-.17-8.69-1.67-8.69-1.67a8.18,8.18,0,0,1-2.18,2.12c0,.12-.05.24-.07.37a5.55,5.55,0,0,0-.07.82,5.68,5.68,0,0,0,0,.59,5.23,5.23,0,0,0,.21,1,5.8,5.8,0,0,0,11,0,4.52,4.52,0,0,0,.2-1,5.65,5.65,0,0,0,0-.59,5.55,5.55,0,0,0-.07-.82,7.54,7.54,0,0,0-.2-.82Z"/><path class="cls-2" d="M34,21.93l.8,5.23h1l1.48-7.78-.44,0h-.48a6.86,6.86,0,0,1-6.24,0h-.48l-.43,0,1.48,7.78h.95l.79-5.23h0l-.78-1.43h3.12L34,21.93Z"/><path d="M37.26,19.38l-1.48,7.78H30.67l-1.48-7.78a5.85,5.85,0,0,0-5.41,5.83V28H42.67V25.21A5.86,5.86,0,0,0,37.26,19.38Z"/><polygon class="cls-3" points="31.62 27.16 34.83 27.16 34.03 21.93 34 21.93 34.78 20.5 31.66 20.5 32.44 21.93 32.41 21.93 31.62 27.16"/><path d="M25,13.28v.51a1.62,1.62,0,0,0,1.64,1.58h.1a6.51,6.51,0,0,0,3.33,4,6.86,6.86,0,0,0,6.24,0,6.49,6.49,0,0,0,3.34-4h.09a1.62,1.62,0,0,0,1.65-1.58v-.51a1.61,1.61,0,0,0-1.29-1.54c0-.22,0-.45,0-.69V11a5,5,0,0,0,0-.53h0a6.17,6.17,0,0,0-1.06-2.92,5.88,5.88,0,0,0-1-1.18,6.52,6.52,0,0,0-4-1.75,7.31,7.31,0,0,0-3.25.47,6.23,6.23,0,0,0-4.46,6v.13a5.15,5.15,0,0,0,0,.56A1.59,1.59,0,0,0,25,13.28ZM40,12.66a.65.65,0,0,1,.5.62v.51a.66.66,0,0,1-.58.64,6.33,6.33,0,0,0,.05-.76,6.13,6.13,0,0,0-.05-.74A2.76,2.76,0,0,0,40,12.66Zm-12.39.19c0-.13.05-.25.07-.37a8.18,8.18,0,0,0,2.18-2.12s6.37,1.5,8.69,1.67h.19a7.54,7.54,0,0,1,.2.82,5.55,5.55,0,0,1,.07.82,5.65,5.65,0,0,1,0,.59,4.52,4.52,0,0,1-.2,1,5.8,5.8,0,0,1-11,0,5.23,5.23,0,0,1-.21-1,5.68,5.68,0,0,1,0-.59A5.55,5.55,0,0,1,27.56,12.85ZM26,13.28a.64.64,0,0,1,.56-.63c0,.12,0,.24,0,.37a4.62,4.62,0,0,0-.05.65,6.33,6.33,0,0,0,.05.76.66.66,0,0,1-.57-.64Z"/><path class="cls-3" d="M32.35,12.94a.21.21,0,0,0-.18-.09H28a.22.22,0,0,0-.18.1.2.2,0,0,0,0,.2l.54,1.94a.23.23,0,0,0,.23.17h3.22a.22.22,0,0,0,.23-.18L32.24,14a.6.6,0,0,1,.3-.2,1.85,1.85,0,0,1,.69-.12,2,2,0,0,1,.68.11.68.68,0,0,1,.3.21l.22,1.12a.23.23,0,0,0,.23.18h3.23a.23.23,0,0,0,.23-.17l.54-1.94a.2.2,0,0,0,0-.2.22.22,0,0,0-.18-.1H34.27a.23.23,0,0,0-.18.09.21.21,0,0,0,0,.19l0,.17a2.37,2.37,0,0,0-.85-.14,2.23,2.23,0,0,0-.86.15l0-.18A.19.19,0,0,0,32.35,12.94Zm-.55.82a.43.43,0,0,1,0,.07h0l-.19,1H28.73l-.41-1.48h3.57Zm6.33-.44-.42,1.48H34.86l-.2-1h0s0-.05,0-.08l-.09-.44Z"/><path class="cls-3" d="M39.87,40.42H34.1v-9a.88.88,0,1,0-1.76,0v9.05H26.58a.89.89,0,0,0,0,1.77H39.87a.89.89,0,0,0,0-1.77Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}.cls-2{fill:#ccc;}</style></defs><g id="Object"><circle cx="32" cy="32.69" r="22.76"/><polygon class="cls-1" points="22.5 42.18 35.68 36.37 28.32 29.01 22.5 42.18"/><polygon class="cls-2" points="28.32 29.01 35.68 36.37 41.49 23.19 28.32 29.01"/><path class="cls-2" d="M34,50.87a2,2,0,1,1-2-2A2,2,0,0,1,34,50.87Z"/><path class="cls-2" d="M50,34.86a2,2,0,1,1,2-2A2,2,0,0,1,50,34.86Z"/><path class="cls-2" d="M14,34.86a2,2,0,1,1,2-2A2,2,0,0,1,14,34.86Z"/><path class="cls-1" d="M34.1,13.05a.31.31,0,0,0-.22-.09h-.61a.31.31,0,0,0-.22.09.28.28,0,0,0-.09.22v2.09c0,.26,0,.5,0,.74l-.28-.47-1.6-2.53a.31.31,0,0,0-.26-.14h-.71a.31.31,0,0,0-.22.09.28.28,0,0,0-.09.22v5a.31.31,0,0,0,.31.31h.61a.31.31,0,0,0,.31-.31V16.13c0-.29,0-.55,0-.8l.34.56L33,18.43a.32.32,0,0,0,.26.15h.66a.31.31,0,0,0,.31-.31v-5A.32.32,0,0,0,34.1,13.05Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}.cls-2{stroke:#00d6a0;stroke-miterlimit:10;stroke-width:0.25px;}</style></defs><g id="Object"><path class="cls-1" d="M59.28,21.18,55.84,17.6a.56.56,0,0,1,.31-.85,3.62,3.62,0,0,0,1.44-.85,3.51,3.51,0,1,0-4.85-5.07,3.57,3.57,0,0,0-.91,1.4.56.56,0,0,1-.87.26L47.54,8.9l-.15-.1a.55.55,0,0,0-.78,0l-4,3.8a.54.54,0,0,1-.57-.38,3.6,3.6,0,0,0-3-2.49,1.51,1.51,0,0,0-.52,0c-3.37.6-4.24,4.1-2.42,6a3.32,3.32,0,0,0,1.34.86.53.53,0,0,1,.33.61l-4,3.83a.58.58,0,0,0,0,.81l3.61,3.76.07,0,0,0a.57.57,0,0,0,.95-.29,3.84,3.84,0,0,1,3.14-2.75,4,4,0,0,1,1,.06,3.9,3.9,0,0,1,1.76,1,3.85,3.85,0,0,1,.92,1.8,3.57,3.57,0,0,1,0,1,3.83,3.83,0,0,1-2.89,3,.57.57,0,0,0-.33.94l0,0,0,.07,3.59,3.78a.58.58,0,0,0,.81,0l4-3.82a.55.55,0,0,1,.61.37A3.21,3.21,0,0,0,52,32.23c1.82,1.89,5.35,1.18,6.1-2.16a1.46,1.46,0,0,0,0-.51,3.59,3.59,0,0,0-2.35-3.07.53.53,0,0,1-.36-.58l4-3.79a.57.57,0,0,0,.05-.79Z"/><path class="cls-2" d="M34.74,37.44l-5,0-.18,0a.56.56,0,0,0-.48.33.87.87,0,0,1,.05.28v5.67l-.31-.06a.53.53,0,0,1-.46,0l-.09,0a3.12,3.12,0,0,0-.52,0h-.09a2.76,2.76,0,0,0-.54-.07A3.18,3.18,0,0,0,24,46.42c0,.14,0,.27,0,.42a3.85,3.85,0,0,0,.49,1.8c.07.13.14.27.23.41a1.14,1.14,0,0,0,.29.29,3.61,3.61,0,0,0,2.11.73,4.55,4.55,0,0,0,.53,0h.09l.36,0,.26-.11a.5.5,0,0,1,.53,0l.25,0v5.77a.76.76,0,0,1,0,.21.55.55,0,0,0,.5.33h5.33a.57.57,0,0,0,.45-.89,3.81,3.81,0,0,1,.19-4.16,3.52,3.52,0,0,1,.72-.67A3.81,3.81,0,0,1,38.24,50a3.87,3.87,0,0,1,1.94.58,3.57,3.57,0,0,1,.73.67,3.84,3.84,0,0,1,.16,4.17.57.57,0,0,0,.45.89h.11l5.22,0a.56.56,0,0,0,.56-.57l0-5.53a.52.52,0,0,1,.68-.18,3.38,3.38,0,0,0,1.55.38c2.62,0,4.56-3,2.67-5.89a1.45,1.45,0,0,0-.36-.38,3.6,3.6,0,0,0-3.84-.42.53.53,0,0,1-.67-.14l0-5.5a.56.56,0,0,0-.53-.58l-.18,0h-5a.56.56,0,0,1-.41-.81A3.52,3.52,0,1,0,34.77,35a3.56,3.56,0,0,0,.39,1.63A.58.58,0,0,1,34.74,37.44Z"/><path class="cls-2" d="M5.25,26c-1.9,2.84,0,5.89,2.65,5.9a3.22,3.22,0,0,0,1.54-.38.55.55,0,0,1,.68.19v5.53a.45.45,0,0,0,0,.2.71.71,0,0,1,.45-.16h0a.58.58,0,0,1,.19,0h4.93A.28.28,0,0,0,16,37l0-.13h0v0a3.82,3.82,0,0,1-.4-1.69h0A4.06,4.06,0,0,1,15.67,34a3.72,3.72,0,0,1,3.55-2.73h.16a3.87,3.87,0,0,1,3.71,3.81h0a3.88,3.88,0,0,1-.4,1.71v0h0l0,.12a.29.29,0,0,0,.23.28h4.92a.58.58,0,0,1,.19,0h0a.73.73,0,0,1,.46.16l0-.15,0-5.54a.53.53,0,0,1,.68-.18,3.23,3.23,0,0,0,1.54.39c2.63,0,4.57-3,2.67-5.89a1.31,1.31,0,0,0-.36-.38,3.6,3.6,0,0,0-3.84-.42.52.52,0,0,1-.66-.15l0-5.49A.57.57,0,0,0,28,19l-.19,0H22.88a.57.57,0,0,1-.42-.81,3.63,3.63,0,0,0,.4-1.62,3.51,3.51,0,1,0-7,0,3.69,3.69,0,0,0,.38,1.63.56.56,0,0,1-.41.8l-5,0-.18,0a.56.56,0,0,0-.54.57v5.5a.54.54,0,0,1-.67.14,3.61,3.61,0,0,0-3.84.4A1.49,1.49,0,0,0,5.25,26Z"/><path class="cls-2" d="M10.39,50l0,.07v5.63a.29.29,0,0,0,.28.29h5.33a.23.23,0,0,0,.18-.08.3.3,0,0,0,.08-.2l-.06-.18a3.9,3.9,0,0,1-.57-2,4.44,4.44,0,0,1,.76-2.44h0l0,0a3.77,3.77,0,0,1,.78-.71h0a4.16,4.16,0,0,1,2.08-.63h0a4.11,4.11,0,0,1,2.08.63h0a3.77,3.77,0,0,1,.78.71v0h0A4.52,4.52,0,0,1,23,53.5a3.82,3.82,0,0,1-.58,2l-.05.18a.3.3,0,0,0,.08.2.22.22,0,0,0,.18.08H28a.29.29,0,0,0,.27-.29V50.64l-.36,0h0a2.35,2.35,0,0,1-.53-.07,3.31,3.31,0,0,1-.55,0,4.17,4.17,0,0,1-2.36-.78l-.09,0a1.68,1.68,0,0,1-.43-.45A5,5,0,0,1,23.29,48a3.15,3.15,0,0,1-.09-.42A3.82,3.82,0,0,1,24.4,44,3.62,3.62,0,0,1,26.82,43v0a3.53,3.53,0,0,1,.61.07,5.09,5.09,0,0,1,.56,0h.27v-5a.28.28,0,0,0-.24-.29h-.1l-.09,0h-5a.86.86,0,0,1-.69-.77v-.08a.72.72,0,0,1,.08-.35h0v0h0A3.33,3.33,0,0,0,22.57,35h0a3.66,3.66,0,0,0-.14-.92,3.15,3.15,0,0,0-3-2.32h-.16a3,3,0,0,0-1.79.59,3.31,3.31,0,0,0-1.21,1.73,3.46,3.46,0,0,0-.11.52,2.85,2.85,0,0,0,0,.4h0a3.2,3.2,0,0,0,.36,1.48h0v0h0a.93.93,0,0,1,.08.35V37a.86.86,0,0,1-.69.78H10.69a.3.3,0,0,0-.27.29v5.61l-.06.08a.87.87,0,0,1-.64.3A.85.85,0,0,1,9.35,44a3,3,0,0,0-1.41-.35,3.66,3.66,0,0,0-2.13.74,1,1,0,0,0-.29.3,3.93,3.93,0,0,0-.72,2.21A3.2,3.2,0,0,0,7.93,50.1h0a3.07,3.07,0,0,0,1.41-.35.77.77,0,0,1,.36-.09A.82.82,0,0,1,10.39,50Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#ccc;}.cls-2{fill:#4d4e50;}.cls-3{fill:#00d6a0;}.cls-4{fill:#c8c8c8;}</style></defs><g id="Object"><path class="cls-1" d="M46.78,14.92h-.14a.47.47,0,0,0-.42.51l.16,1.68a.46.46,0,0,0,.34.4,10.07,10.07,0,0,1,6.41,5.12.47.47,0,0,0,.44.24l1.72-.16a.46.46,0,0,0,.36-.23.48.48,0,0,0,0-.42A12.61,12.61,0,0,0,46.78,14.92Z"/><path class="cls-2" d="M48.16,10h-.1a.48.48,0,0,0-.42.51l.16,1.66a.44.44,0,0,0,.38.4,14.2,14.2,0,0,1,11.07,9,.47.47,0,0,0,.47.29l1.66-.16a.45.45,0,0,0,.39-.61A16.8,16.8,0,0,0,48.16,10Z"/><path class="cls-2" d="M4.2,51.76a3.59,3.59,0,0,0,3.59,3.59H9.68a3.58,3.58,0,0,0,3.53-2.92L14,50.16H4.2Z"/><path class="cls-2" d="M42.05,52.43a3.58,3.58,0,0,0,3.53,2.92h1.89a3.59,3.59,0,0,0,3.59-3.59v-1.6H41.28Z"/><polygon class="cls-1" points="4.2 50.16 13.98 50.16 14.24 49.38 4.2 49.38 4.2 50.16"/><polygon class="cls-3" points="4.2 49.38 14.24 49.38 14.89 47.48 4.2 47.48 4.2 49.38"/><path d="M43.17,21.07a10.79,10.79,0,0,0-8.34,2.83,2,2,0,0,1-1.34.51H21.77a2,2,0,0,1-1.34-.51,10.78,10.78,0,0,0-8.34-2.83A10.87,10.87,0,0,0,4.2,38.18v9.3H14.89l1.8-5.33a10.76,10.76,0,0,0,2.95-1.59,3.11,3.11,0,0,1,1.85-.63H33.77a3.11,3.11,0,0,1,1.85.63,11.05,11.05,0,0,0,3,1.59l1.8,5.33H51.06v-9.3a10.87,10.87,0,0,0-7.89-17.11ZM13,40.64a8.79,8.79,0,1,1,8.79-8.79A8.78,8.78,0,0,1,13,40.64Zm30-17a2.51,2.51,0,1,1-2.5,2.5A2.5,2.5,0,0,1,43,23.67Zm-4.65,9.66a2.5,2.5,0,1,1,2.5-2.5A2.51,2.51,0,0,1,38.33,33.33ZM43,38a2.51,2.51,0,1,1,2.51-2.5A2.5,2.5,0,0,1,43,38Zm4.66-4.66a2.5,2.5,0,1,1,2.51-2.5A2.5,2.5,0,0,1,47.64,33.33Z"/><polygon class="cls-3" points="41.02 49.38 51.06 49.38 51.06 47.48 40.37 47.48 41.02 49.38"/><polygon class="cls-1" points="41.28 50.16 51.06 50.16 51.06 49.38 41.02 49.38 41.28 50.16"/><path class="cls-3" d="M13,23.06a8.79,8.79,0,1,0,8.79,8.79A8.79,8.79,0,0,0,13,23.06Zm6.14,10.8H15V38H11V33.86H6.85v-4H11V25.71h4v4.13h4.13Z"/><polygon class="cls-1" points="15 25.71 10.98 25.71 10.98 29.84 6.85 29.84 6.85 33.86 10.98 33.86 10.98 37.99 15 37.99 15 33.86 19.13 33.86 19.13 29.84 15 29.84 15 25.71"/><path class="cls-1" d="M43,28.68a2.51,2.51,0,1,0-2.5-2.51A2.51,2.51,0,0,0,43,28.68Z"/><path class="cls-4" d="M43,33a2.51,2.51,0,1,0,2.51,2.51A2.5,2.5,0,0,0,43,33Z"/><path class="cls-1" d="M38.33,28.33a2.5,2.5,0,1,0,2.5,2.5A2.51,2.51,0,0,0,38.33,28.33Z"/><path class="cls-4" d="M47.64,28.33a2.5,2.5,0,1,0,2.51,2.5A2.5,2.5,0,0,0,47.64,28.33Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg id="Bg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#00d6a0;}.cls-3{fill:#ccc;}.cls-4{fill:#4d4e50;}</style></defs><path d="M30.92,55.59a23.48,23.48,0,0,0,11-2.75A7.75,7.75,0,0,1,41,49.22a8,8,0,0,1,.31-2.2,18.19,18.19,0,1,1,5.15-5.31,8,8,0,0,1,2.31-.37,7.75,7.75,0,0,1,3.43.78A23.6,23.6,0,1,0,30.92,55.59Z"/><path class="cls-1" d="M33.74,29.39V25.48a6.19,6.19,0,0,1,1.42.93,1.48,1.48,0,0,0,1,.35,1.85,1.85,0,0,0,.71-.2h0l2.33-1.46a.91.91,0,0,0,.49-.76.85.85,0,0,0-.31-.66,9.38,9.38,0,0,0-5.61-3.08v-2.2a1.12,1.12,0,0,0-1.13-1.13H30.53a1.13,1.13,0,0,0-1.13,1.13v2.14a10.52,10.52,0,0,0-2.91.82c-2.8,1.27-4.17,3.18-4.12,5.71a5.52,5.52,0,0,0,1.12,3.3q1.83,2.45,5.91,3.07v4.88A8.41,8.41,0,0,1,26.06,36a1.09,1.09,0,0,0-.92-.45,2.25,2.25,0,0,0-.62.18h0L22.4,37a.91.91,0,0,0-.53.83.88.88,0,0,0,.24.6,10.33,10.33,0,0,0,2.22,2.21,10.86,10.86,0,0,0,5.07,2.17V44.7a1.13,1.13,0,0,0,1.13,1.13h2.08a1.12,1.12,0,0,0,1.13-1.13V42.77a10.76,10.76,0,0,0,4.34-1.57,6.19,6.19,0,0,0,3-5.3,5.23,5.23,0,0,0-1.17-3.57A9.37,9.37,0,0,0,33.74,29.39Zm-4.34-.55A1.84,1.84,0,0,1,28,27.07a1.78,1.78,0,0,1,1.21-1.63l.16-.07ZM34.2,38a3.33,3.33,0,0,1-.46.24V34c1.13.35,1.69,1,1.68,2A2.3,2.3,0,0,1,34.2,38Z"/><path class="cls-2" d="M28,27.07a1.84,1.84,0,0,0,1.37,1.77V25.37l-.16.07A1.78,1.78,0,0,0,28,27.07Z"/><path class="cls-2" d="M33.74,34v4.28A3.33,3.33,0,0,0,34.2,38a2.3,2.3,0,0,0,1.22-2.07C35.43,35,34.87,34.3,33.74,34Z"/><path class="cls-2" d="M46.49,41.71A18.14,18.14,0,1,0,41.34,47,7.85,7.85,0,0,1,46.49,41.71Zm-8.41-.51a10.76,10.76,0,0,1-4.34,1.57V44.7a1.12,1.12,0,0,1-1.13,1.13H30.53A1.13,1.13,0,0,1,29.4,44.7V42.77a10.86,10.86,0,0,1-5.07-2.17,10.33,10.33,0,0,1-2.22-2.21.88.88,0,0,1-.24-.6A.91.91,0,0,1,22.4,37l2.12-1.24h0a2.25,2.25,0,0,1,.62-.18,1.09,1.09,0,0,1,.92.45,8.41,8.41,0,0,0,3.34,2.33V33.43q-4.08-.63-5.91-3.07a5.52,5.52,0,0,1-1.12-3.3c-.05-2.53,1.32-4.44,4.12-5.71a10.52,10.52,0,0,1,2.91-.82V18.39a1.13,1.13,0,0,1,1.13-1.13h2.08a1.12,1.12,0,0,1,1.13,1.13v2.2a9.38,9.38,0,0,1,5.61,3.08.85.85,0,0,1,.31.66.91.91,0,0,1-.49.76l-2.33,1.46h0a1.85,1.85,0,0,1-.71.2,1.48,1.48,0,0,1-1-.35,6.19,6.19,0,0,0-1.42-.93v3.91a9.37,9.37,0,0,1,6.15,2.94,5.23,5.23,0,0,1,1.17,3.57A6.19,6.19,0,0,1,38.08,41.2Z"/><path class="cls-3" d="M54.68,49.12A5.83,5.83,0,1,0,48.9,55,5.83,5.83,0,0,0,54.68,49.12ZM53,50.41H50.1v2.86H47.61V50.41H44.75V47.92h2.86V45.06H50.1v2.86H53Z"/><path class="cls-4" d="M46.49,41.71A7.85,7.85,0,0,0,41.34,47a8,8,0,0,0-.31,2.2A7.75,7.75,0,0,0,42,52.84,7.82,7.82,0,1,0,52.23,42.12a7.75,7.75,0,0,0-3.43-.78A8,8,0,0,0,46.49,41.71ZM43,49.21A5.83,5.83,0,1,1,48.9,55,5.84,5.84,0,0,1,43,49.21Z"/><polygon class="cls-2" points="50.1 45.06 47.61 45.06 47.61 47.92 44.75 47.92 44.75 50.41 47.61 50.41 47.61 53.27 50.1 53.27 50.1 50.41 52.96 50.41 52.96 47.92 50.1 47.92 50.1 45.06"/></svg>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<svg width="160" height="30" viewBox="0 0 160 30" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M32.6828 28.9124V14.4578H36.3997V19.9507H41.7693V14.4578H45.4862V28.9124H41.7693V23.0067H36.3997V28.9124H32.6828Z" fill="black"/>
|
3
|
+
<path d="M54.8787 29.1813C53.9608 29.1862 53.0478 29.0469 52.1731 28.7685C51.3376 28.5043 50.5721 28.056 49.933 27.4564C49.2633 26.8147 48.7447 26.0321 48.4146 25.1652C48.0434 24.2351 47.8578 23.1092 47.8578 21.7876V21.3748C47.8578 20.1097 48.0434 19.0222 48.4146 18.1123C48.7452 17.2634 49.2644 16.5007 49.933 15.8819C50.5796 15.2999 51.3434 14.8634 52.1731 14.6019C53.9349 14.0515 55.8226 14.0515 57.5844 14.6019C58.4138 14.8638 59.1776 15.3002 59.8244 15.8819C60.493 16.5007 61.0123 17.2634 61.3428 18.1123C61.714 19.0211 61.8996 20.1086 61.8996 21.3748V21.7876C61.8996 23.1113 61.714 24.2372 61.3428 25.1652C61.0128 26.0321 60.4941 26.8147 59.8244 27.4564C59.1851 28.0556 58.4197 28.504 57.5844 28.7685C56.7097 29.0469 55.7966 29.1862 54.8787 29.1813ZM54.8787 26.0804C55.2862 26.0819 55.6912 26.0159 56.0771 25.8852C56.4677 25.7498 56.8163 25.5149 57.0883 25.2036C57.4119 24.8168 57.6512 24.3666 57.7908 23.882C57.9866 23.2005 58.0773 22.4932 58.0596 21.7844V21.3716C58.0786 20.6937 57.9878 20.0172 57.7908 19.3683C57.647 18.9071 57.4077 18.4813 57.0883 18.1187C56.8129 17.8186 56.4646 17.5949 56.0771 17.4691C55.2964 17.2209 54.4579 17.2209 53.6771 17.4691C53.2897 17.5949 52.9413 17.8186 52.6659 18.1187C52.3466 18.4813 52.1072 18.9071 51.9635 19.3683C51.7664 20.0172 51.6757 20.6937 51.6947 21.3716V21.7844C51.677 22.4932 51.7676 23.2005 51.9635 23.882C52.1031 24.3666 52.3423 24.8168 52.6659 25.2036C52.938 25.5149 53.2865 25.7498 53.6771 25.8852C54.0641 26.0163 54.4701 26.0822 54.8787 26.0804Z" fill="black"/>
|
4
|
+
<path d="M64.2805 28.9124V14.4578H68.0805L72.0806 21.7875L76.0454 14.4578H79.7623V28.9124H76.0518V20.6403L73.0566 26.1332H70.9925L67.9989 20.6403V28.9124H64.2805Z" fill="black"/>
|
5
|
+
<path d="M82.6598 28.9124V14.4578H93.1927V17.3074H86.3782V20.1363H92.5719V22.8211H86.3782V26.0628H93.1927V28.9124H82.6598Z" fill="black"/>
|
6
|
+
<path d="M101.66 29.1812C100.775 29.1932 99.8926 29.0647 99.0473 28.8004C98.3122 28.5694 97.6358 28.1818 97.0649 27.6644C96.5057 27.1389 96.0748 26.4918 95.8057 25.7732C95.4927 24.9278 95.3413 24.0312 95.3593 23.1299V14.4578H99.0761V22.6963C99.0706 23.1887 99.1157 23.6803 99.2105 24.1635C99.2812 24.5454 99.4329 24.9076 99.6553 25.2259C99.8596 25.5074 100.136 25.7285 100.455 25.866C100.835 26.0206 101.244 26.0947 101.654 26.0836C102.077 26.097 102.499 26.023 102.892 25.866C103.214 25.7319 103.491 25.5101 103.692 25.2259C103.907 24.909 104.051 24.5502 104.116 24.1731C104.203 23.6928 104.245 23.2053 104.239 22.7171V14.4578H107.956V23.1299C107.973 24.0303 107.825 24.9262 107.519 25.7732C107.257 26.493 106.829 27.1409 106.27 27.6644C105.699 28.1818 105.024 28.5694 104.289 28.8004C103.438 29.065 102.551 29.1935 101.66 29.1812Z" fill="black"/>
|
7
|
+
<path d="M110.643 28.9124V14.4578H113.927L119.527 22.5107V14.4578H123.452V28.9124H119.936L114.361 20.8579V28.9124H110.643Z" fill="black"/>
|
8
|
+
<path d="M126.545 28.9124V14.4578H130.262V28.9124H126.545Z" fill="black"/>
|
9
|
+
<path d="M136.767 28.9124V17.5138H132.327V14.4578H144.924V17.5138H140.479V28.9124H136.767Z" fill="black"/>
|
10
|
+
<path d="M151.326 28.9124V23.5027L145.957 14.4578H150.253L153.267 19.8259L156.118 14.4578H160L155.04 23.5027V28.9124H151.326Z" fill="black"/>
|
11
|
+
<path d="M7.75627 26.0804C9.19629 25.2196 10.6123 24.4004 11.9355 23.578C12.0539 23.5044 13.3995 22.6788 13.5163 22.6052L13.7564 24.5252L15.7196 21.6963L16.3468 20.7875L17.6812 18.8563L15.6684 19.0163L14.2412 19.1315L10.8011 19.4115L12.5611 20.7491C12.4379 20.8163 11.0891 21.6323 10.9611 21.6963C8.6904 22.9319 6.35411 24.0429 3.96261 25.0244C1.75778 25.906 0.285762 26.226 0.0361583 25.7908C-0.123844 25.506 0.252161 24.9268 1.06497 24.1428C1.98274 23.2874 2.95434 22.4916 3.97381 21.7603V11.2002L9.59789 6.84174V18.2163H17.078V6.84174L22.7053 11.2002C24.9245 10.3218 26.3933 10.0034 26.6429 10.437C26.9181 10.917 25.6829 12.197 23.4541 13.8994C23.2162 14.0818 22.9666 14.269 22.7053 14.461C20.6876 15.9411 20.0764 16.4659 17.0796 18.2227L19.0876 18.0627L17.8252 19.8915C21.0445 17.7155 21.4605 16.9923 22.7053 15.6627V29.1813H17.0796V25.2804H9.59789V29.1765H3.97381C3.97381 29.1765 4.08102 28.2788 7.75627 26.0804Z" fill="url(#paint0_linear_349_9998)"/>
|
12
|
+
<path d="M24.1066 8.31692V9.91054L13.3561 1.59362L2.57031 9.93614V8.34412L10.3688 2.31203L13.3561 0L16.3449 2.31203L24.1066 8.31692Z" fill="url(#paint1_linear_349_9998)"/>
|
13
|
+
<defs>
|
14
|
+
<linearGradient id="paint0_linear_349_9998" x1="3.87941" y1="29.6485" x2="24.8765" y2="8.64976" gradientUnits="userSpaceOnUse">
|
15
|
+
<stop stop-color="#096872"/>
|
16
|
+
<stop offset="0.51" stop-color="#498484"/>
|
17
|
+
<stop offset="1" stop-color="#096872"/>
|
18
|
+
</linearGradient>
|
19
|
+
<linearGradient id="paint1_linear_349_9998" x1="7.54958" y1="14.9154" x2="19.1273" y2="3.33765" gradientUnits="userSpaceOnUse">
|
20
|
+
<stop stop-color="#096872"/>
|
21
|
+
<stop offset="0.51" stop-color="#498484"/>
|
22
|
+
<stop offset="1" stop-color="#096872"/>
|
23
|
+
</linearGradient>
|
24
|
+
</defs>
|
25
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M12.832 7.21969C12.8197 7.34651 12.808 7.47264 12.7957 7.59878C12.75 8.02539 12.6492 8.44431 12.4958 8.84504C12.1964 9.63566 11.7113 10.3429 11.0814 10.9073C10.4514 11.4717 9.69495 11.8767 8.87567 12.0882C8.10576 12.2837 7.30142 12.3016 6.52356 12.1405C5.74571 11.9795 5.01475 11.6437 4.38606 11.1586C4.21861 11.0298 4.06694 10.8844 3.90567 10.7419C3.89367 10.7307 3.88244 10.7188 3.87204 10.7062L4.67704 9.9021C5.50057 10.6795 6.48537 11.0956 7.63214 11.0846C8.56599 11.0843 9.46979 10.7549 10.1844 10.1544C10.8973 9.56671 11.39 8.75516 11.582 7.85201C11.774 6.94886 11.6542 6.00736 11.2419 5.18098C10.3841 3.46034 8.49204 2.57603 6.59586 3.03121C4.79028 3.46171 3.77322 4.92185 3.56733 6.15852L4.86645 5.96657L3.00939 8.56535C2.9689 8.50983 2.93253 8.46047 2.89753 8.41043C2.41028 7.72217 1.92302 7.03415 1.43577 6.34635C1.34792 6.22227 1.25665 6.10025 1.16675 5.97686V5.96383L2.39381 6.14412C2.39998 6.1119 2.40479 6.08722 2.4089 6.06186C2.55806 5.16652 2.94536 4.32768 3.53028 3.63309C4.28548 2.71893 5.33296 2.09264 6.49635 1.85967C7.06351 1.74198 7.64624 1.71882 8.22096 1.79111C9.00966 1.88227 9.76614 2.15621 10.4301 2.59111C11.2489 3.11643 11.9039 3.86047 12.3208 4.73882C12.5907 5.29651 12.7556 5.89905 12.8073 6.51635C12.8149 6.59999 12.8238 6.68362 12.832 6.76657V7.21969Z"/>
|
3
|
+
<path d="M6.30615 8.15825C6.33086 8.06982 6.35008 7.97933 6.38027 7.89296C6.53262 7.4652 6.68681 7.03812 6.84282 6.61173C6.8693 6.52906 6.91381 6.45328 6.97315 6.38986C7.03248 6.32644 7.10517 6.27695 7.18596 6.24498C7.95596 5.93147 8.7239 5.6134 9.48978 5.29075C9.96674 5.08989 10.3051 5.50806 10.292 5.87138C10.2928 5.97928 10.2598 6.08473 10.1975 6.17289C10.1352 6.26105 10.0468 6.3275 9.94478 6.36289C9.27772 6.63298 8.60975 6.90033 7.94086 7.16494C7.91621 7.17374 7.89402 7.18828 7.87611 7.20735C7.85821 7.22643 7.84512 7.24949 7.83792 7.27462C7.70066 7.64846 7.56341 8.0216 7.42615 8.39407C7.33831 8.62646 7.16331 8.74916 6.93684 8.7471C6.77768 8.74338 6.62546 8.68132 6.50916 8.57273C6.39285 8.46414 6.3206 8.31662 6.30615 8.15825Z"/>
|
4
|
+
</svg>
|
Binary file
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 339.85 362.92"><defs><style>.cls-1{stroke:#00d6a0;stroke-miterlimit:10;}</style></defs><g id="Object"><circle class="cls-1" cx="169.55" cy="31.99" r="18.41"/><circle class="cls-1" cx="137.22" cy="50.4" r="18.41"/><circle class="cls-1" cx="169.55" cy="68.81" r="18.41"/><circle class="cls-1" cx="202.43" cy="50.4" r="18.41"/><circle class="cls-1" cx="201.97" cy="88.48" r="18.41"/><circle class="cls-1" cx="169.55" cy="106.89" r="18.41"/><circle class="cls-1" cx="137.22" cy="87.88" r="18.41"/><circle class="cls-1" cx="72.55" cy="87.85" r="18.41"/><circle class="cls-1" cx="40.22" cy="106.26" r="18.41"/><circle class="cls-1" cx="72.55" cy="124.67" r="18.41"/><circle class="cls-1" cx="105.43" cy="106.26" r="18.41"/><circle class="cls-1" cx="104.97" cy="144.33" r="18.41"/><circle class="cls-1" cx="72.55" cy="162.74" r="18.41"/><circle class="cls-1" cx="40.22" cy="143.73" r="18.41"/><circle class="cls-1" cx="267.14" cy="87.22" r="18.41"/><circle class="cls-1" cx="234.82" cy="105.63" r="18.41"/><circle class="cls-1" cx="267.14" cy="124.04" r="18.41"/><circle class="cls-1" cx="300.03" cy="105.63" r="18.41"/><circle class="cls-1" cx="299.56" cy="143.71" r="18.41"/><circle class="cls-1" cx="267.14" cy="162.12" r="18.41"/><circle class="cls-1" cx="234.82" cy="143.11" r="18.41"/><circle class="cls-1" cx="169.27" cy="143.71" r="18.41"/><circle class="cls-1" cx="136.94" cy="162.12" r="18.41"/><circle class="cls-1" cx="169.27" cy="180.53" r="18.41"/><circle class="cls-1" cx="202.15" cy="162.12" r="18.41"/><circle class="cls-1" cx="201.69" cy="200.19" r="18.41"/><circle class="cls-1" cx="169.27" cy="218.6" r="18.41"/><circle class="cls-1" cx="136.94" cy="199.59" r="18.41"/><circle class="cls-1" cx="266.87" cy="199.56" r="18.41"/><circle class="cls-1" cx="234.54" cy="217.97" r="18.41"/><circle class="cls-1" cx="266.87" cy="236.38" r="18.41"/><circle class="cls-1" cx="299.75" cy="217.97" r="18.41"/><circle class="cls-1" cx="299.28" cy="256.05" r="18.41"/><circle class="cls-1" cx="266.87" cy="274.46" r="18.41"/><circle class="cls-1" cx="234.54" cy="255.45" r="18.41"/><circle class="cls-1" cx="168.99" cy="255.42" r="18.41"/><circle class="cls-1" cx="136.66" cy="273.83" r="18.41"/><circle class="cls-1" cx="168.99" cy="292.24" r="18.41"/><circle class="cls-1" cx="201.88" cy="273.83" r="18.41"/><circle class="cls-1" cx="201.41" cy="311.91" r="18.41"/><circle class="cls-1" cx="168.99" cy="330.32" r="18.41"/><circle class="cls-1" cx="136.66" cy="311.31" r="18.41"/><circle class="cls-1" cx="72.27" cy="198.94" r="18.41"/><circle class="cls-1" cx="39.94" cy="217.34" r="18.41"/><circle class="cls-1" cx="72.27" cy="235.75" r="18.41"/><circle class="cls-1" cx="105.15" cy="217.34" r="18.41"/><circle class="cls-1" cx="104.69" cy="255.42" r="18.41"/><circle class="cls-1" cx="72.27" cy="273.83" r="18.41"/><circle class="cls-1" cx="39.94" cy="254.82" r="18.41"/></g></svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M20 1C20 1.55229 19.5523 2 19 2L1 2C0.447716 2 0 1.55228 0 1C0 0.447715 0.447716 0 1 0H19C19.5523 0 20 0.447717 20 1ZM20 8C20 8.55229 19.5523 9 19 9L1 9C0.447716 9 0 8.55229 0 8C0 7.44772 0.447716 7 1 7L19 7C19.5523 7 20 7.44772 20 8ZM19 16C19.5523 16 20 15.5523 20 15C20 14.4477 19.5523 14 19 14L1 14C0.447716 14 0 14.4477 0 15C0 15.5523 0.447716 16 1 16L19 16Z" fill="#096872"/>
|
3
|
+
</svg>
|
@@ -0,0 +1,5 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path d="M11.053 4.30343L11.232 4.18587C11.4407 4.03244 11.6415 3.86706 11.8602 3.72957C11.9536 3.67666 12.0591 3.64886 12.1664 3.64886C12.2737 3.64886 12.3792 3.67666 12.4726 3.72957C12.6686 3.82568 12.838 3.96871 12.9657 4.14602C13.1885 4.40573 13.3387 4.7199 13.4011 5.05663C13.4347 5.23613 13.4133 5.42164 13.3395 5.58865C13.306 5.65348 13.26 5.71104 13.2043 5.75802C13.1247 5.82577 13.0333 5.88155 12.9458 5.94531C12.8693 5.98804 12.8045 6.04894 12.7569 6.12266C12.7352 6.15264 12.7074 6.17775 12.6754 6.19638L11.1146 7.28234C11.0926 7.29546 11.0747 7.31461 11.0631 7.33754C11.0514 7.36048 11.0466 7.38625 11.049 7.41186C11.049 8.5277 11.049 9.64155 11.049 10.7554C11.0565 11.1166 10.9376 11.4691 10.713 11.7517C10.5934 11.909 10.4386 12.036 10.2611 12.1225C10.0837 12.209 9.88841 12.2526 9.69107 12.2498H3.92519C3.55479 12.2434 3.19753 12.1112 2.91185 11.8748C2.62616 11.6385 2.42896 11.312 2.3525 10.9487C2.33851 10.8571 2.33252 10.7644 2.3346 10.6717C2.3346 7.9638 2.3346 5.25389 2.3346 2.54597C2.32232 2.28208 2.39436 2.02114 2.54025 1.8011C2.68615 1.58107 2.89828 1.41342 3.1458 1.32253C3.37666 1.21938 3.6267 1.16641 3.87946 1.16711H9.73481C10.0427 1.15879 10.344 1.25733 10.5878 1.44607C10.7341 1.56133 10.8515 1.70929 10.9305 1.87813C11.0096 2.04697 11.0481 2.23201 11.0431 2.41845C11.0431 3.00029 11.0431 3.58212 11.0431 4.16395L11.053 4.30343ZM7.82809 6.92567H4.53359C4.45813 6.91713 4.38889 6.87968 4.34034 6.82117C4.2918 6.76265 4.2677 6.68759 4.27309 6.61169C4.27848 6.53578 4.31295 6.4649 4.36927 6.41386C4.4256 6.36283 4.49944 6.33559 4.57534 6.33785H6.44031C7.00298 6.33785 7.56366 6.33785 8.12633 6.33785C8.15684 6.33656 8.1864 6.32692 8.21182 6.30996C8.25159 6.28007 8.2834 6.23822 8.32515 6.20834C8.91765 5.79388 9.51412 5.38075 10.1146 4.96895C10.1346 4.95651 10.1507 4.93874 10.1613 4.91764C10.1718 4.89653 10.1763 4.8729 10.1742 4.8494C10.1742 4.08159 10.1742 3.31445 10.1742 2.54797C10.1742 2.49218 10.1742 2.43639 10.1742 2.38059C10.1758 2.31369 10.1546 2.24825 10.1141 2.19502C10.0736 2.14179 10.0163 2.10394 9.95153 2.08768C9.86262 2.06443 9.77103 2.05303 9.67914 2.05381C8.90771 2.05381 8.13826 2.05381 7.36881 2.05381H3.95501C3.76869 2.0488 3.58429 2.09277 3.42018 2.18134C3.35869 2.21023 3.30705 2.25663 3.27169 2.31474C3.23634 2.37285 3.21883 2.4401 3.22136 2.50812C3.22136 5.24061 3.22136 7.97309 3.22136 10.7056C3.21836 10.7401 3.21836 10.7747 3.22136 10.8092C3.26484 10.9624 3.35481 11.0982 3.47879 11.1978C3.60277 11.2974 3.75462 11.3559 3.91326 11.3651H9.67914C9.73807 11.3661 9.79647 11.3539 9.85011 11.3294C9.90376 11.3049 9.9513 11.2688 9.98931 11.2237C10.0999 11.0903 10.1572 10.9207 10.1504 10.7474V8.00963C10.1504 7.9897 10.1504 7.96978 10.1504 7.93989C9.99925 8.0455 9.85808 8.13915 9.71493 8.24077C9.66701 8.27343 9.6139 8.29769 9.55786 8.3125C9.16021 8.41213 8.76257 8.51176 8.36492 8.60541L7.1998 8.88836C7.14327 8.90362 7.08349 8.90174 7.02802 8.88298C6.97254 8.86421 6.92386 8.82938 6.88812 8.7829C6.85238 8.73642 6.83118 8.68038 6.8272 8.62183C6.82323 8.56329 6.83665 8.50488 6.86578 8.45398C6.87379 8.43796 6.88044 8.42129 6.88567 8.40416H4.56937C4.53021 8.40338 4.49159 8.39487 4.4557 8.37912C4.41982 8.36338 4.38737 8.3407 4.36023 8.31239C4.33309 8.28408 4.31178 8.25069 4.29752 8.21413C4.28326 8.17757 4.27632 8.13855 4.27711 8.0993C4.27789 8.06005 4.28638 8.02134 4.30209 7.98537C4.31781 7.94941 4.34042 7.9169 4.36867 7.8897C4.39692 7.8625 4.43024 7.84115 4.46672 7.82685C4.5032 7.81256 4.54214 7.8056 4.5813 7.80639C5.3766 7.80639 6.17189 7.80639 6.96718 7.80639C7.06441 7.81113 7.16131 7.82111 7.25747 7.83628L7.82809 6.92567ZM8.86595 6.54708L9.60359 7.60912L12.1207 5.85565L11.385 4.7936L8.86595 6.54708ZM7.77839 8.12321V8.14114L9.03296 7.83428L8.46035 7.01135L7.77839 8.12321ZM11.8881 4.419L12.6158 5.44518C12.6442 5.42167 12.6748 5.40098 12.7072 5.38341C12.8325 5.32563 12.8464 5.22799 12.8166 5.10644C12.7376 4.78255 12.5511 4.49519 12.2877 4.29148C12.2575 4.27003 12.2239 4.25386 12.1883 4.24366C12.1792 4.23965 12.1694 4.23758 12.1595 4.23758C12.1495 4.23758 12.1397 4.23965 12.1306 4.24366C12.0511 4.30144 11.9716 4.35923 11.8881 4.419Z"/>
|
3
|
+
<path d="M6.70475 5.4467H4.57536C4.53227 5.44943 4.48911 5.44256 4.44899 5.42659C4.40886 5.41062 4.37277 5.38595 4.3433 5.35435C4.31383 5.32275 4.29172 5.285 4.27856 5.24382C4.2654 5.20264 4.26151 5.15905 4.26718 5.11618C4.27435 5.05139 4.30322 4.99094 4.34906 4.94467C4.39491 4.89839 4.45505 4.86902 4.51969 4.86132C4.54749 4.85937 4.57539 4.85937 4.60319 4.86132H8.80036C8.8722 4.85281 8.94467 4.87073 9.0043 4.91176C9.06392 4.95278 9.10662 5.01412 9.12445 5.08432C9.13586 5.12821 9.13693 5.17415 9.12758 5.21853C9.11823 5.2629 9.0987 5.30449 9.07055 5.34002C9.0424 5.37554 9.0064 5.40403 8.96538 5.42324C8.92435 5.44244 8.87943 5.45184 8.83416 5.45068H6.70475V5.4467Z"/>
|
4
|
+
<path d="M6.69077 4.11567C5.98694 4.11567 5.28509 4.11567 4.58126 4.11567C4.53182 4.11957 4.48221 4.11089 4.43702 4.09044C4.39183 4.06999 4.35253 4.03844 4.32277 3.99871C4.29302 3.95898 4.27377 3.91237 4.26682 3.8632C4.25987 3.81403 4.26544 3.76389 4.28302 3.71746C4.30025 3.66157 4.33436 3.61241 4.38065 3.57675C4.42694 3.54109 4.48313 3.52069 4.54149 3.51835H8.77842C8.82513 3.51629 8.87192 3.5203 8.9176 3.53029C8.98452 3.54718 9.04311 3.5877 9.08256 3.64441C9.12202 3.70112 9.13969 3.77019 9.13233 3.83892C9.1268 3.9087 9.09648 3.97419 9.04687 4.0235C8.99726 4.07282 8.93165 4.10269 8.86193 4.10771C8.83211 4.10771 8.80228 4.10771 8.77047 4.10771L6.69077 4.11567Z"/>
|
5
|
+
</svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="16" height="21" viewBox="0 0 16 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C6.43648 2 4.91857 2.6736 3.7858 3.90346C2.65049 5.13609 2 6.82424 2 8.6C2 9.24052 2.22064 10.0562 2.64718 11.0031C3.06774 11.9367 3.65587 12.9272 4.31385 13.8975C5.60887 15.8071 7.12097 17.5602 8 18.5315C8.87903 17.5602 10.3911 15.8071 11.6862 13.8975C12.3441 12.9272 12.9323 11.9367 13.3528 11.0031C13.7794 10.0562 14 9.24052 14 8.6C14 6.82424 13.3495 5.13609 12.2142 3.90346C11.0814 2.6736 9.56352 2 8 2ZM8 6C6.34315 6 5 7.34315 5 9C5 10.6569 6.34315 12 8 12C9.65685 12 11 10.6569 11 9C11 7.34315 9.65685 6 8 6Z" fill="#096872"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8 2C6.43648 2 4.91857 2.6736 3.7858 3.90346C2.65049 5.13609 2 6.82424 2 8.6C2 9.24052 2.22064 10.0562 2.64718 11.0031C3.06774 11.9367 3.65587 12.9272 4.31385 13.8975C5.60887 15.8071 7.12097 17.5602 8 18.5315C8.87903 17.5602 10.3911 15.8071 11.6862 13.8975C12.3441 12.9272 12.9323 11.9367 13.3528 11.0031C13.7794 10.0562 14 9.24052 14 8.6C14 6.82424 13.3495 5.13609 12.2142 3.90346C11.0814 2.6736 9.56352 2 8 2ZM2.31471 2.54851C3.80745 0.927823 5.85049 0 8 0C10.1495 0 12.1926 0.927823 13.6853 2.54851C15.1755 4.16644 16 6.34446 16 8.6C16 9.64756 15.6545 10.7631 15.1764 11.8245C14.6923 12.8991 14.0373 13.9939 13.3414 15.02C11.9495 17.0725 10.3388 18.9304 9.43916 19.9217C8.66364 20.7763 7.33636 20.7763 6.56084 19.9217C5.66121 18.9305 4.05047 17.0725 2.65858 15.02C1.96271 13.9939 1.30774 12.8991 0.82365 11.8245C0.345539 10.7631 0 9.64756 0 8.6C0 6.34446 0.82451 4.16644 2.31471 2.54851Z" fill="#096872"/>
|
4
|
+
</svg>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 356 360">
|
2
|
+
<path
|
3
|
+
d="M43.4 303.4c0 3.8-2.3 6.3-7.1 6.3h-15v-22h14.4c4.3 0 6.2 2.2 6.2 5.2 0 2.6-1.5 4.4-3.4 5 2.8.4 4.9 2.5 4.9 5.5zm-8-13H24.1v6.9H35c2.1 0 4-1.3 4-3.8 0-2.2-1.3-3.1-3.7-3.1zm5.1 12.6c0-2.3-1.8-3.7-4-3.7H24.2v7.7h11.7c3.4 0 4.6-1.8 4.6-4zm36.3 4v2.7H56v-22h20.6v2.7H58.9v6.8h14.6v2.3H58.9v7.5h17.9zm23-5.8v8.5H97v-8.5l-11-13.4h3.4l8.9 11 8.8-11h3.4l-10.8 13.4zm19.1-1.8V298c0-7.9 5.2-10.7 12.7-10.7 7.5 0 13 2.8 13 10.7v1.4c0 7.9-5.5 10.8-13 10.8s-12.7-3-12.7-10.8zm22.7 0V298c0-5.7-3.9-8-10-8-6 0-9.8 2.3-9.8 8v1.4c0 5.8 3.8 8.1 9.8 8.1 6 0 10-2.3 10-8.1zm37.2-11.6v21.9h-2.9l-15.8-17.9v17.9h-2.8v-22h3l15.6 18v-18h2.9zm37.9 10.2v1.3c0 7.8-5.2 10.4-12.4 10.4H193v-22h11.2c7.2 0 12.4 2.8 12.4 10.3zm-3 0c0-5.3-3.3-7.6-9.4-7.6h-8.4V307h8.4c6 0 9.5-2 9.5-7.7V298zm50.8-7.6h-9.7v19.3h-3v-19.3h-9.7v-2.6h22.4v2.6zm34.4-2.6v21.9h-3v-10.1h-16.8v10h-2.8v-21.8h2.8v9.2H296v-9.2h2.9zm34.9 19.2v2.7h-20.7v-22h20.6v2.7H316v6.8h14.5v2.3H316v7.5h17.8zM24 340.2v7.3h13.9v2.4h-14v9.6H21v-22h20v2.7H24zm41.5 11.4h-9.8v7.9H53v-22h13.3c5.1 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6H66c3.1 0 5.3-1.5 5.3-4.7 0-3.3-2.2-4.1-5.3-4.1H55.7v8.8zm47.9 6.2H89l-2 4.3h-3.2l10.7-22.2H98l10.7 22.2h-3.2l-2-4.3zm-1-2.3l-6.3-13-6 13h12.2zm46.3-15.3v21.9H146v-17.2L135.7 358h-2.1l-10.2-15.6v17h-2.8v-21.8h3l11 16.9 11.3-17h3zm35 19.3v2.6h-20.7v-22h20.6v2.7H166v6.8h14.5v2.3H166v7.6h17.8zm47-19.3l-8.3 22h-3l-7.1-18.6-7 18.6h-3l-8.2-22h3.3L204 356l6.8-18.5h3.4L221 356l6.6-18.5h3.3zm10 11.6v-1.4c0-7.8 5.2-10.7 12.7-10.7 7.6 0 13 2.9 13 10.7v1.4c0 7.9-5.4 10.8-13 10.8-7.5 0-12.7-3-12.7-10.8zm22.8 0v-1.4c0-5.7-4-8-10-8s-9.9 2.3-9.9 8v1.4c0 5.8 3.8 8.2 9.8 8.2 6.1 0 10-2.4 10-8.2zm28.3 2.4h-9.8v7.9h-2.8v-22h13.2c5.2 0 8 1.9 8 6.8 0 3.7-2 6.3-5.6 7l6 8.2h-3.3l-5.8-8zm-9.8-2.6h10.2c3 0 5.2-1.5 5.2-4.7 0-3.3-2.1-4.1-5.2-4.1h-10.2v8.8zm40.3-1.5l-6.8 5.6v6.4h-2.9v-22h2.9v12.3l15.2-12.2h3.7l-9.9 8.1 10.3 13.8h-3.6l-8.9-12z" />
|
4
|
+
<path fill="#050A14"
|
5
|
+
d="M188.4 71.7a10.4 10.4 0 01-20.8 0 10.4 10.4 0 1120.8 0zM224.2 45c-2.2-3.9-5-7.5-8.2-10.7l-12 7c-3.7-3.2-8-5.7-12.6-7.3a49.4 49.4 0 00-9.7 13.9 59 59 0 0140.1 14l7.6-4.4a57 57 0 00-5.2-12.5zM178 125.1c4.5 0 9-.6 13.4-1.7v-14a40 40 0 0012.5-7.2 47.7 47.7 0 00-7.1-15.3 59 59 0 01-32.2 27.7v8.7c4.4 1.2 8.9 1.8 13.4 1.8zM131.8 45c-2.3 4-4 8.1-5.2 12.5l12 7a40 40 0 000 14.4c5.7 1.5 11.3 2 16.9 1.5a59 59 0 01-8-41.7l-7.5-4.3c-3.2 3.2-6 6.7-8.2 10.6z" />
|
6
|
+
<path fill="#00B4FF"
|
7
|
+
d="M224.2 98.4c2.3-3.9 4-8 5.2-12.4l-12-7a40 40 0 000-14.5c-5.7-1.5-11.3-2-16.9-1.5a59 59 0 018 41.7l7.5 4.4c3.2-3.2 6-6.8 8.2-10.7zm-92.4 0c2.2 4 5 7.5 8.2 10.7l12-7a40 40 0 0012.6 7.3c4-4.1 7.3-8.8 9.7-13.8a59 59 0 01-40-14l-7.7 4.4c1.2 4.3 3 8.5 5.2 12.4zm46.2-80c-4.5 0-9 .5-13.4 1.7V34a40 40 0 00-12.5 7.2c1.5 5.7 4 10.8 7.1 15.4a59 59 0 0132.2-27.7V20a53.3 53.3 0 00-13.4-1.8z" />
|
8
|
+
<path fill="#00B4FF"
|
9
|
+
d="M178 9.2a62.6 62.6 0 11-.1 125.2A62.6 62.6 0 01178 9.2m0-9.2a71.7 71.7 0 100 143.5A71.7 71.7 0 00178 0z" />
|
10
|
+
<path fill="#050A14"
|
11
|
+
d="M96.6 212v4.3c-9.2-.8-15.4-5.8-15.4-17.8V180h4.6v18.4c0 8.6 4 12.6 10.8 13.5zm16-31.9v18.4c0 8.9-4.3 12.8-10.9 13.5v4.4c9.2-.7 15.5-5.6 15.5-18v-18.3h-4.7zM62.2 199v-2.2c0-12.7-8.8-17.4-21-17.4-12.1 0-20.7 4.7-20.7 17.4v2.2c0 12.8 8.6 17.6 20.7 17.6 1.5 0 3-.1 4.4-.3l11.8 6.2 2-3.3-8.2-4-6.4-3.1a32 32 0 01-3.6.2c-9.8 0-16-3.9-16-13.3v-2.2c0-9.3 6.2-13.1 16-13.1 9.9 0 16.3 3.8 16.3 13.1v2.2c0 5.3-2.1 8.7-5.6 10.8l4.8 2.4c3.4-2.8 5.5-7 5.5-13.2zM168 215.6h5.1L156 179.7h-4.8l17 36zM143 205l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.8-3.7H143zm133.7 10.7h5.2l-17.3-35.9h-4.8l17 36zm-25-10.7l7.4-15.7-2.4-5-15.1 31.4h5.1l3.3-7h18.3l-1.7-3.7h-14.8zm73.8-2.5c6-1.2 9-5.4 9-11.4 0-8-4.5-10.9-12.9-10.9h-21.4v35.5h4.6v-31.3h16.5c5 0 8.5 1.4 8.5 6.7 0 5.2-3.5 7.7-8.5 7.7h-11.4v4.1h10.7l9.3 12.8h5.5l-9.9-13.2zm-117.4 9.9c-9.7 0-14.7-2.5-18.6-6.3l-2.2 3.8c5.1 5 11 6.7 21 6.7 1.6 0 3.1-.1 4.6-.3l-1.9-4h-3zm18.4-7c0-6.4-4.7-8.6-13.8-9.4l-10.1-1c-6.7-.7-9.3-2.2-9.3-5.6 0-2.5 1.4-4 4.6-5l-1.8-3.8c-4.7 1.4-7.5 4.2-7.5 8.9 0 5.2 3.4 8.7 13 9.6l11.3 1.2c6.4.6 8.9 2 8.9 5.4 0 2.7-2.1 4.7-6 5.8l1.8 3.9c5.3-1.6 8.9-4.7 8.9-10zm-20.3-21.9c7.9 0 13.3 1.8 18.1 5.7l1.8-3.9a30 30 0 00-19.6-5.9c-2 0-4 .1-5.7.3l1.9 4 3.5-.2z" />
|
12
|
+
<path fill="#00B4FF"
|
13
|
+
d="M.5 251.9c29.6-.5 59.2-.8 88.8-1l88.7-.3 88.7.3 44.4.4 44.4.6-44.4.6-44.4.4-88.7.3-88.7-.3a7981 7981 0 01-88.8-1z" />
|
14
|
+
<path fill="none" d="M-565.2 324H-252v15.8h-313.2z" />
|
15
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}.cls-2{fill:#ccc;}.cls-3{fill:#fff;}.cls-4{fill:#4d4e50;}.cls-5{font-size:12px;font-family:MyriadPro-Regular, Myriad Pro;}</style></defs><g id="Object"><path d="M14.48,13.33a2.6,2.6,0,0,0-.75,1.83v.32H46v-.32a2.58,2.58,0,0,0-2.58-2.59H16.31A2.61,2.61,0,0,0,14.48,13.33Z"/><path d="M13.73,51.65a2.58,2.58,0,0,0,.75,1.82,2.61,2.61,0,0,0,1.83.76H43.39a2.61,2.61,0,0,0,1.83-.76A2.58,2.58,0,0,0,46,51.65V16.86H13.73Zm3.19-18.08V30.9h6.64v2.67a.63.63,0,0,1-.62.63h-5.4a.63.63,0,0,1-.62-.63Zm7,17.46a.61.61,0,0,1-.62.62H17.93A.61.61,0,0,1,17.3,51V45.64a.63.63,0,0,1,.18-.44.64.64,0,0,1,.45-.19h5.39a.63.63,0,0,1,.62.63Zm0-8.52a.63.63,0,0,1-.62.63H17.93a.65.65,0,0,1-.63-.63V37.12a.63.63,0,0,1,.63-.62h5.39a.61.61,0,0,1,.62.62Zm1.53-8.94V30.9h6.64v2.67a.63.63,0,0,1-.62.63h-5.4a.63.63,0,0,1-.62-.63Zm.33,3.55a.61.61,0,0,1,.62-.62h5.39a.63.63,0,0,1,.63.62v5.39a.65.65,0,0,1-.63.63H26.42a.63.63,0,0,1-.62-.63ZM32.46,51a.62.62,0,0,1-.18.44.67.67,0,0,1-.44.18H26.45a.63.63,0,0,1-.44-.18.62.62,0,0,1-.18-.44V45.64A.59.59,0,0,1,26,45.2a.6.6,0,0,1,.44-.19h5.39a.63.63,0,0,1,.44.19.59.59,0,0,1,.18.44Zm9.94,0a.6.6,0,0,1-.18.44.64.64,0,0,1-.45.19H35.08a.63.63,0,0,1-.44-.19.62.62,0,0,1-.18-.44V36.6a.63.63,0,0,1,.18-.45.67.67,0,0,1,.44-.18h6.69a.67.67,0,0,1,.45.18.63.63,0,0,1,.18.45ZM34.73,33.57V30.9h6.64v2.67a.65.65,0,0,1-.63.63H35.35a.63.63,0,0,1-.44-.19A.59.59,0,0,1,34.73,33.57ZM16.06,18.43H43.64V28.92H16.06Z"/><path class="cls-1" d="M41.77,36H35.08a.67.67,0,0,0-.44.18.63.63,0,0,0-.18.45V51a.62.62,0,0,0,.18.44.63.63,0,0,0,.44.19h6.69a.64.64,0,0,0,.45-.19A.6.6,0,0,0,42.4,51V36.6a.63.63,0,0,0-.18-.45A.67.67,0,0,0,41.77,36Zm-1.59,8.76H36.49v-.62h3.69Zm0-1.67H36.49v-.62h3.69Z"/><path class="cls-2" d="M26.42,43.14h5.39a.65.65,0,0,0,.63-.63V37.12a.63.63,0,0,0-.63-.62H26.42a.61.61,0,0,0-.62.62v5.39a.63.63,0,0,0,.62.63Z"/><path class="cls-2" d="M31.84,45H26.45a.6.6,0,0,0-.44.19.59.59,0,0,0-.18.44V51a.62.62,0,0,0,.18.44.63.63,0,0,0,.44.18h5.39a.67.67,0,0,0,.44-.18.62.62,0,0,0,.18-.44V45.64a.59.59,0,0,0-.18-.44A.63.63,0,0,0,31.84,45Z"/><path class="cls-2" d="M23.32,36.5H17.93a.63.63,0,0,0-.63.62v5.39a.65.65,0,0,0,.63.63h5.39a.63.63,0,0,0,.62-.63V37.12a.61.61,0,0,0-.62-.62Z"/><path class="cls-2" d="M31.49,34.2a.63.63,0,0,0,.62-.63V30.9H25.47v2.67a.63.63,0,0,0,.62.63Z"/><path class="cls-2" d="M40.74,34.2a.65.65,0,0,0,.63-.63V30.9H34.73v2.67a.59.59,0,0,0,.18.44.63.63,0,0,0,.44.19Z"/><path class="cls-2" d="M22.94,34.2a.63.63,0,0,0,.62-.63V30.9H16.92v2.67a.63.63,0,0,0,.62.63Z"/><path class="cls-2" d="M23.32,45H17.93a.64.64,0,0,0-.45.19.63.63,0,0,0-.18.44V51a.61.61,0,0,0,.63.62h5.39a.61.61,0,0,0,.62-.62V45.64a.63.63,0,0,0-.62-.63Z"/><path class="cls-3" d="M43.64,18.43H16.06V28.92H43.64Z"/><rect class="cls-4" x="36.49" y="42.44" width="3.69" height="0.62"/><rect class="cls-4" x="36.49" y="44.11" width="3.69" height="0.62"/><rect class="cls-1" x="13.73" y="15.48" width="32.25" height="1.38"/><text class="cls-5" transform="translate(24.58 27.03)">xxx</text></g></svg>
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="20" height="21" viewBox="0 0 20 21" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.23119 1.65041C8.80373 -0.186689 11.1963 -0.186698 11.7688 1.65041L13.29 6.53155H18.1291C19.9565 6.53155 20.6962 9.08759 19.1974 10.2229L15.3489 13.138L16.8342 17.9039C17.412 19.7578 15.4754 21.3371 13.9972 20.2174L10 17.1897L6.00285 20.2174C4.52465 21.3371 2.58798 19.7578 3.16576 17.9039L4.65106 13.138L0.802615 10.2229C-0.696206 9.08758 0.0435253 6.53155 1.8709 6.53155H6.70997L8.23119 1.65041ZM11.5212 7.18171L10 2.30057L8.47878 7.18171C8.22211 8.00529 7.51059 8.55954 6.70997 8.55954H1.8709L5.71934 11.4746C6.40069 11.9907 6.68619 12.9336 6.41987 13.7881L4.93457 18.554L8.93172 15.5263C9.57356 15.0401 10.4264 15.0401 11.0683 15.5263L15.0654 18.554L13.5801 13.7881C13.3138 12.9336 13.5993 11.9907 14.2807 11.4746L18.1291 8.55954H13.29C12.4894 8.55954 11.7779 8.00529 11.5212 7.18171Z" fill="#FFD600"/>
|
3
|
+
<path d="M10 2.30057L11.5212 7.18171C11.7779 8.00529 12.4894 8.55954 13.29 8.55954H18.1291L14.2807 11.4746C13.5993 11.9907 13.3138 12.9336 13.5801 13.7881L15.0654 18.554L11.0683 15.5263C10.4264 15.0401 9.57356 15.0401 8.93172 15.5263L4.93457 18.554L6.41987 13.7881C6.68619 12.9336 6.40069 11.9907 5.71934 11.4746L1.8709 8.55954H6.70997C7.51059 8.55954 8.22211 8.00529 8.47878 7.18171L10 2.30057Z" fill="#FFD600"/>
|
4
|
+
</svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}</style></defs><g id="Object"><polygon class="cls-1" points="4.52 45.59 18.18 45.49 18.13 36.64 4.46 36.74 4.52 45.59"/><polygon class="cls-1" points="25.2 45.44 38.86 45.33 38.8 36.48 25.14 36.59 25.2 45.44"/><rect class="cls-1" x="45.85" y="36.37" width="13.67" height="8.85" transform="translate(-0.27 0.35) rotate(-0.38)"/><path d="M61,35.47a.8.8,0,0,0-.77-.83l-7.44.06,0-4.16a1.07,1.07,0,0,0-1-1.1L33,29.58l0-4,6.58-.05a1.17,1.17,0,0,0,.84-.38,1.38,1.38,0,0,0,.34-.92l-.07-10.52a1.24,1.24,0,0,0-1.2-1.28l-15.21.12A1.25,1.25,0,0,0,23,13.82l.07,10.52a1.32,1.32,0,0,0,.36.91,1.15,1.15,0,0,0,.84.37l6.58-.05,0,4-19.65.15a1,1,0,0,0-.72.33,1.19,1.19,0,0,0-.3.79l0,4.16-6.58,0a.8.8,0,0,0-.76.84L3,46.44a.84.84,0,0,0,.23.59.71.71,0,0,0,.54.24L19,47.15a.71.71,0,0,0,.54-.24.81.81,0,0,0,.22-.6l-.06-10.52a.82.82,0,0,0-.78-.83l-6.58,0,0-3,18.62-.14,0,3-6.58.05a.8.8,0,0,0-.76.84l.07,10.52a.84.84,0,0,0,.23.59.71.71,0,0,0,.54.24L39.65,47a.76.76,0,0,0,.54-.25.81.81,0,0,0,.22-.6l-.07-10.52a.8.8,0,0,0-.77-.83L33,34.85l0-3,17.75-.13,0,3-5.71,0a.8.8,0,0,0-.76.84l.06,10.52a.9.9,0,0,0,.24.59.68.68,0,0,0,.54.24l15.22-.11a.72.72,0,0,0,.54-.25.81.81,0,0,0,.22-.6Zm-42.84,10-13.66.1-.06-8.85,13.66-.1Zm20.68-.16-13.66.1-.06-8.85,13.66-.1Zm7,0-.06-8.85,13.66-.11.06,8.85Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}</style></defs><g id="Object"><path d="M34.37,26.93,47.76,13.14A20.49,20.49,0,0,0,34.49,8Z"/><path d="M53.27,43.72,31.41,32.15V7.86h-.49C17.5,7.85,7.59,18.73,7.59,32.15a24.3,24.3,0,0,0,24.3,24.3C41.3,56.45,50.05,50.89,53.27,43.72Z"/><polygon class="cls-1" points="46.95 18.25 43.45 21.85 39.93 33.06 41.96 34.15 46.95 18.25"/><polygon class="cls-1" points="42.41 22.91 38.91 26.51 37.3 31.65 39.33 32.74 42.41 22.91"/><path class="cls-1" d="M47.83,37.29l2,1.09,4.92-15.69a23.47,23.47,0,0,0-1.45-2.93Z"/><path class="cls-1" d="M56.2,27.94a21.18,21.18,0,0,0-1-4.24l-4.7,15,2,1.08Z"/><path class="cls-1" d="M56.38,29.63,53.09,40.11l1.19.63a21.79,21.79,0,0,0,2.13-10Q56.41,30.2,56.38,29.63Z"/><path class="cls-1" d="M48,17.19,42.56,34.47l2,1.09,6.1-19.43c-.27-.3-.54-.6-.82-.88Z"/><polygon class="cls-1" points="36.7 31.33 37.88 27.57 35.07 30.46 36.7 31.33"/><path class="cls-1" d="M45.19,35.88l2,1.09,5.64-18a23.66,23.66,0,0,0-1.65-2.28Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#00d6a0;}</style></defs><g id="Object"><path d="M28.9,11a.44.44,0,0,0-.51-.44A21.52,21.52,0,0,0,10.61,28.1a.44.44,0,0,0,.44.51h3a.44.44,0,0,0,.43-.35,17.82,17.82,0,0,1,14.09-13.9.42.42,0,0,0,.36-.43Z"/><path d="M52.94,34.13H50a.42.42,0,0,0-.43.36A17.78,17.78,0,0,1,35.17,48.84a.43.43,0,0,0-.36.43v2.94a.45.45,0,0,0,.51.45,21.52,21.52,0,0,0,18.07-18A.45.45,0,0,0,52.94,34.13Z"/><path d="M35.35,45.88A14.75,14.75,0,0,0,46.51,34.66a.45.45,0,0,0-.44-.53h-3a.45.45,0,0,0-.43.32,11.13,11.13,0,0,1-7.54,7.62.44.44,0,0,0-.32.42v3A.44.44,0,0,0,35.35,45.88Z"/><path d="M56.42,31.54a1.83,1.83,0,0,0-.55-1.3,1.85,1.85,0,0,0-1.32-.54l-14.86,0a7.91,7.91,0,0,0-5.91-5.81V8.81a1.86,1.86,0,0,0-3.72,0V23.93a7.94,7.94,0,0,0-5.9,5.82l-14.73,0a1.85,1.85,0,0,0-1.85,1.84,1.78,1.78,0,0,0,.55,1.3,1.83,1.83,0,0,0,1.31.54l14.72,0a7.9,7.9,0,0,0,5.9,5.8V53.73a1.86,1.86,0,0,0,1.86,1.84h0A1.83,1.83,0,0,0,33.23,55a1.79,1.79,0,0,0,.55-1.3V39.24a7.92,7.92,0,0,0,5.91-5.82l14.86,0A1.86,1.86,0,0,0,56.42,31.54ZM32,37.41a5.72,5.72,0,1,1,5.72-5.72A5.72,5.72,0,0,1,32,37.41Z"/><path d="M49.9,28.69h3a.44.44,0,0,0,.44-.51,21.44,21.44,0,0,0-18-17.68.45.45,0,0,0-.51.45v2.94a.44.44,0,0,0,.36.43,17.71,17.71,0,0,1,14.3,14A.44.44,0,0,0,49.9,28.69Z"/><path d="M35.13,21.09a11.1,11.1,0,0,1,7.45,7.29.44.44,0,0,0,.42.31h3a.44.44,0,0,0,.43-.54A14.73,14.73,0,0,0,35.35,17.27a.45.45,0,0,0-.54.44v3A.44.44,0,0,0,35.13,21.09Z"/><path d="M28.82,42.1a11.08,11.08,0,0,1-7.54-7.35.45.45,0,0,0-.42-.31h-3a.45.45,0,0,0-.44.54A14.75,14.75,0,0,0,28.6,45.91a.45.45,0,0,0,.54-.44V42.52A.45.45,0,0,0,28.82,42.1Z"/><path d="M14,34.44H11a.44.44,0,0,0-.44.51,21.45,21.45,0,0,0,18,17.72.44.44,0,0,0,.51-.44V49.28a.45.45,0,0,0-.37-.43A17.72,17.72,0,0,1,14.43,34.8.44.44,0,0,0,14,34.44Z"/><path d="M28.36,17.32a14.79,14.79,0,0,0-10.9,10.75.44.44,0,0,0,.44.54h3a.43.43,0,0,0,.41-.31,11.18,11.18,0,0,1,7.27-7.15.44.44,0,0,0,.31-.42v-3A.44.44,0,0,0,28.36,17.32Z"/><path class="cls-1" d="M32,26a5.72,5.72,0,1,0,5.72,5.72A5.72,5.72,0,0,0,32,26Z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#c8c8c8;}.cls-3{fill:#00d6a0;}.cls-4{fill:#ccc;}</style></defs><g id="Object"><path d="M18.66,56.8H44.84a3,3,0,0,0,3-3V9.1a3,3,0,0,0-3-3H18.66a3,3,0,0,0-3,3V53.76A3,3,0,0,0,18.66,56.8Zm13.09-2.95A1.87,1.87,0,1,1,33.61,52,1.86,1.86,0,0,1,31.75,53.85ZM20.39,10.25H43.11V48H20.39Z"/><path class="cls-1" d="M43.11,10.25H20.39V48H43.11ZM22.53,12.62H41V26.19H22.53ZM41,27.38v1.69h-4.4V27.38Zm-18.42,0h4.4v1.69h-4.4ZM31,38.5H22.53v-8H31Zm.58-9.43H27.2V27.38h4.4Zm.28-1.69h4.4v1.69h-4.4Zm.29,9.27h4.58V37.8H32.17Zm8.8,6h-8.8V41.47H41Zm0-2h-8.8V39.49H41Zm0-4.82h-8.8V34.68H41Zm0-2h-8.8V32.7H41Zm0-2h-8.8V30.73H41Z"/><path class="cls-2" d="M31.75,50.12A1.87,1.87,0,1,0,33.61,52,1.87,1.87,0,0,0,31.75,50.12Z"/><rect class="cls-3" x="22.53" y="12.62" width="18.42" height="13.57"/><rect class="cls-4" x="22.53" y="27.38" width="4.4" height="1.69"/><rect class="cls-4" x="22.53" y="30.52" width="8.49" height="7.99"/><rect class="cls-4" x="27.2" y="27.38" width="4.4" height="1.69"/><rect class="cls-4" x="31.88" y="27.38" width="4.4" height="1.69"/><rect class="cls-3" x="32.17" y="30.73" width="8.8" height="1.15"/><rect class="cls-3" x="32.17" y="32.7" width="8.8" height="1.15"/><rect class="cls-3" x="32.17" y="34.68" width="8.8" height="1.15"/><rect class="cls-3" x="32.17" y="36.65" width="4.58" height="1.15"/><rect class="cls-3" x="32.17" y="39.49" width="8.8" height="1.15"/><rect class="cls-3" x="32.17" y="41.47" width="8.8" height="1.15"/><rect class="cls-4" x="36.55" y="27.38" width="4.4" height="1.69"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#ccc;}.cls-2{fill:#00d6a0;}.cls-3{fill:#fff;}.cls-4{fill:#c8c8c8;}</style></defs><g id="Object"><path class="cls-1" d="M50.51,50.54V14a1.85,1.85,0,0,0-1.86-1.85h-5A1.85,1.85,0,0,1,45.49,14v2.5H48a.29.29,0,0,1,.23.1.33.33,0,0,1,.1.23v7.09a.37.37,0,0,1-.1.23.32.32,0,0,1-.23.09H45.49v3.34H48a.34.34,0,0,1,.33.33V35a.34.34,0,0,1-.33.33H45.49v3.34H48a.32.32,0,0,1,.23.09.37.37,0,0,1,.1.23v7.1a.32.32,0,0,1-.1.22.29.29,0,0,1-.23.1H45.49v4.16a1.86,1.86,0,0,1-1.86,1.86h5A1.86,1.86,0,0,0,50.51,50.54Z"/><path class="cls-2" d="M45.49,24.21H48a.32.32,0,0,0,.23-.09.37.37,0,0,0,.1-.23V16.8a.33.33,0,0,0-.1-.23.29.29,0,0,0-.23-.1H45.49Z"/><path class="cls-2" d="M45.49,35.3H48a.34.34,0,0,0,.33-.33V27.88a.34.34,0,0,0-.33-.33H45.49Z"/><path class="cls-2" d="M45.49,46.38H48a.29.29,0,0,0,.23-.1.32.32,0,0,0,.1-.22V39a.37.37,0,0,0-.1-.23.32.32,0,0,0-.23-.09H45.49Z"/><path d="M45.49,50.54V14a1.85,1.85,0,0,0-1.86-1.85H19.57V52.4H43.63A1.86,1.86,0,0,0,45.49,50.54ZM42.58,29H22.48v-1.1h20.1Zm0-3.46H22.48V22h20.1Z"/><path class="cls-2" d="M19.57,12.12H15.35A1.85,1.85,0,0,0,13.49,14V50.54a1.86,1.86,0,0,0,1.86,1.86h4.22Z"/><rect class="cls-3" x="22.48" y="21.96" width="20.1" height="3.57"/><rect class="cls-4" x="22.48" y="27.88" width="20.1" height="1.1"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{stroke:#00d6a0;stroke-miterlimit:10;stroke-width:0.5px;}</style></defs><g id="Object"><polygon class="cls-1" points="50.22 16.41 48.65 14.85 23.18 43.45 14.28 34.56 7.9 40.94 23.18 53.59 56.1 22.48 50.22 16.41"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{stroke:#00d6a0;stroke-miterlimit:10;stroke-width:0.5px;}</style></defs><g id="Object"><path class="cls-1" d="M26.35,23.32l-7.36,0-.27.05a.83.83,0,0,0-.71.49,1.3,1.3,0,0,1,.07.41v8.42l-.46-.09a.77.77,0,0,1-.68,0l-.14-.07a7,7,0,0,0-.77.06h-.13a4.85,4.85,0,0,0-.8-.1,4.71,4.71,0,0,0-4.61,4.2,4.1,4.1,0,0,0-.05.62,5.67,5.67,0,0,0,.72,2.67c.11.2.21.4.35.61a2,2,0,0,0,.42.44,5.44,5.44,0,0,0,3.14,1.07,4.93,4.93,0,0,0,.78-.06H16c.21,0,.38.07.53.08a2.3,2.3,0,0,0,.39-.17.77.77,0,0,1,.79.06l.36-.08v8.55a1.13,1.13,0,0,1-.05.32.83.83,0,0,0,.74.49h7.91a.85.85,0,0,0,.67-1.32,5.71,5.71,0,0,1,.28-6.19,5.32,5.32,0,0,1,1.08-1,5.82,5.82,0,0,1,2.88-.86,5.75,5.75,0,0,1,2.87.88,5,5,0,0,1,1.08,1,5.7,5.7,0,0,1,.24,6.19.85.85,0,0,0,.67,1.32h.05l.11,0,7.74,0a.85.85,0,0,0,.84-.85l0-8.21a.8.8,0,0,1,1-.27,4.92,4.92,0,0,0,2.29.57c3.9,0,6.77-4.51,4-8.74a2,2,0,0,0-.53-.55,5.32,5.32,0,0,0-5.7-.63.78.78,0,0,1-1-.22l0-8.16a.83.83,0,0,0-.79-.85l-.26,0H36.84a.84.84,0,0,1-.61-1.2,5.52,5.52,0,0,0,.58-2.41,5.21,5.21,0,1,0-10.41,0A5.25,5.25,0,0,0,27,22.12.85.85,0,0,1,26.35,23.32Z"/></g></svg>
|
@@ -0,0 +1,3 @@
|
|
1
|
+
<svg width="14" height="14" viewBox="0 0 14 14" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.41745 1.16663H5.83412H2.33268C1.68835 1.16663 1.16602 1.68896 1.16602 2.33329V5.83329V6.41663H1.74935H5.83412H6.41745V5.83329V1.74996V1.16663ZM5.25079 2.33329V5.24996H2.33268L2.33268 2.33329H5.25079ZM6.41745 7.58329H5.83412H1.74935H1.16602V8.16663V11.6666C1.16602 12.311 1.68835 12.8333 2.33268 12.8333H5.83412H6.41745V12.25V8.16663V7.58329ZM5.25079 8.74996V11.6666H2.33268V8.74996H5.25079ZM7.5834 1.16663H8.16673H11.6686C12.3129 1.16663 12.8353 1.68896 12.8353 2.33329V5.83329V6.41663H12.2519H8.16673H7.5834V5.83329V1.74996V1.16663ZM8.75007 2.33329V5.24996H11.6686V2.33329H8.75007ZM7.5834 7.58329H8.16673H12.2519H12.8353V8.16663V11.6666C12.8353 12.311 12.3129 12.8333 11.6686 12.8333H8.16673H7.5834V12.25V8.16663V7.58329ZM8.75007 8.74996V11.6666H11.6686V8.74996H8.75007Z"/>
|
3
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,4 @@
|
|
1
|
+
<svg width="14" height="12" viewBox="0 0 14 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M1.55556 10.274V4.10963H12.1852C12.3284 4.10963 12.4444 4.22003 12.4444 4.35621V10.274C12.4444 10.4102 12.3284 10.5206 12.1852 10.5206H1.81481C1.67163 10.5206 1.55556 10.4102 1.55556 10.274ZM9.76543 6.65758C9.38361 6.65758 9.07407 6.95197 9.07407 7.31511C9.07407 7.67826 9.38361 7.97265 9.76543 7.97265H10.4568C10.8386 7.97265 11.1481 7.67826 11.1481 7.31511C11.1481 6.95197 10.8386 6.65758 10.4568 6.65758H9.76543Z" fill="#ECB464"/>
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.76543 4.57764e-05H10.5432V0.739772V2.63018H12.1852C13.1875 2.63018 14 3.40295 14 4.35621V10.274C14 11.2273 13.1875 12 12.1852 12H1.81481C0.81252 12 0 11.2273 0 10.274V4.02744V3.36991V2.63018V1.72607C0 0.772814 0.81252 4.57764e-05 1.81481 4.57764e-05H9.76543ZM1.55556 2.63018H8.98765V1.4795H1.81481C1.67163 1.4795 1.55556 1.58989 1.55556 1.72607V2.63018ZM1.55556 10.274V4.10963H12.1852C12.3284 4.10963 12.4444 4.22003 12.4444 4.35621V10.274C12.4444 10.4102 12.3284 10.5206 12.1852 10.5206H1.81481C1.67163 10.5206 1.55556 10.4102 1.55556 10.274Z" fill="#ECB464"/>
|
4
|
+
</svg>
|
Binary file
|
File without changes
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { boot } from 'quasar/wrappers';
|
2
|
+
import axios from 'axios';
|
3
|
+
|
4
|
+
// declare module '@vue/runtime-core' {
|
5
|
+
// interface ComponentCustomProperties {
|
6
|
+
// $axios: AxiosInstance;
|
7
|
+
// $api: AxiosInstance;
|
8
|
+
// }
|
9
|
+
// }
|
10
|
+
|
11
|
+
// Be careful when using SSR for cross-request state pollution
|
12
|
+
// due to creating a Singleton instance here;
|
13
|
+
// If any client changes this (global) instance, it might be a
|
14
|
+
// good idea to move this instance creation inside of the
|
15
|
+
// "export default () => {}" function below (which runs individually
|
16
|
+
// for each client)
|
17
|
+
const api = axios.create({ baseURL: 'https://api.example.com' });
|
18
|
+
|
19
|
+
export default boot(({ app }) => {
|
20
|
+
// for use inside Vue files (Options API) through this.$axios and this.$api
|
21
|
+
|
22
|
+
app.config.globalProperties.$axios = axios;
|
23
|
+
// ^ ^ ^ this will allow you to use this.$axios (for Vue Options API form)
|
24
|
+
// so you won't necessarily have to import axios in each vue file
|
25
|
+
|
26
|
+
app.config.globalProperties.$api = api;
|
27
|
+
// ^ ^ ^ this will allow you to use this.$api (for Vue Options API form)
|
28
|
+
// so you can easily perform requests against your app's API
|
29
|
+
});
|
30
|
+
|
31
|
+
export { api };
|
@@ -0,0 +1,42 @@
|
|
1
|
+
import { watch } from 'vue';
|
2
|
+
import { useAccountStore } from 'src/entities/Account/model';
|
3
|
+
import { useSessionStore } from 'src/entities/Session';
|
4
|
+
import { useSystemStore } from 'src/entities/System/model';
|
5
|
+
import { useSelectBranch } from 'src/features/Branch/SelectBranch/model';
|
6
|
+
|
7
|
+
// boot/overlay.js
|
8
|
+
export default async () => {
|
9
|
+
const session = useSessionStore();
|
10
|
+
const system = useSystemStore();
|
11
|
+
const account = useAccountStore();
|
12
|
+
const { isVisible } = useSelectBranch();
|
13
|
+
|
14
|
+
// Функция для проверки условий
|
15
|
+
const checkConditions = () => {
|
16
|
+
if (
|
17
|
+
session.isAuth && //авторизован
|
18
|
+
system.info?.cooperator_account?.is_branched && //кооператив с участками
|
19
|
+
account?.account?.participant_account && //пользователь - пайщик кооператива
|
20
|
+
account.account.participant_account.braname === ''//у пользователя нет установленного кооперативного участка
|
21
|
+
) {
|
22
|
+
isVisible.value = true;
|
23
|
+
console.log('on select branch', isVisible);
|
24
|
+
} else {
|
25
|
+
console.log('not need select branch');
|
26
|
+
isVisible.value = false;
|
27
|
+
}
|
28
|
+
};
|
29
|
+
|
30
|
+
// Первый запуск проверки
|
31
|
+
checkConditions();
|
32
|
+
|
33
|
+
// Добавляем watcher на реактивные параметры
|
34
|
+
watch(
|
35
|
+
[() => session.isAuth, () => system.info, () => account.account],
|
36
|
+
() => {
|
37
|
+
console.log('Parameters changed');
|
38
|
+
checkConditions(); // Проверяем условия при изменении
|
39
|
+
},
|
40
|
+
{ deep: true } // Следим за вложенными объектами
|
41
|
+
);
|
42
|
+
};
|
package/src/boot/i18n.ts
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
import { boot } from 'quasar/wrappers';
|
2
|
+
import { createI18n } from 'vue-i18n';
|
3
|
+
|
4
|
+
import messages from 'src/i18n';
|
5
|
+
|
6
|
+
export type MessageLanguages = keyof typeof messages;
|
7
|
+
// Type-define 'en-US' as the master schema for the resource
|
8
|
+
export type MessageSchema = (typeof messages)['ru-RU'];
|
9
|
+
|
10
|
+
// See https://vue-i18n.intlify.dev/guide/advanced/typescript.html#global-resource-schema-type-definition
|
11
|
+
/* eslint-disable @typescript-eslint/no-empty-interface */
|
12
|
+
declare module 'vue-i18n' {
|
13
|
+
// define the locale messages schema
|
14
|
+
export interface DefineLocaleMessage extends MessageSchema {}
|
15
|
+
|
16
|
+
// define the datetime format schema
|
17
|
+
export interface DefineDateTimeFormat {}
|
18
|
+
|
19
|
+
// define the number format schema
|
20
|
+
export interface DefineNumberFormat {}
|
21
|
+
}
|
22
|
+
/* eslint-enable @typescript-eslint/no-empty-interface */
|
23
|
+
|
24
|
+
export default boot(({ app }) => {
|
25
|
+
const i18n = createI18n({
|
26
|
+
locale: 'ru-RU',
|
27
|
+
legacy: false,
|
28
|
+
messages,
|
29
|
+
});
|
30
|
+
|
31
|
+
// Set i18n instance on app
|
32
|
+
app.use(i18n);
|
33
|
+
});
|
@@ -0,0 +1,43 @@
|
|
1
|
+
// src/boot/init-stores.js
|
2
|
+
import { boot } from 'quasar/wrappers';
|
3
|
+
import { useDesktopStore } from 'src/entities/Desktop/model';
|
4
|
+
import { useCardStore } from 'src/app/providers/card/store';
|
5
|
+
import type { RouteRecordRaw } from 'vue-router';
|
6
|
+
import { useSystemStore } from 'src/entities/System/model';
|
7
|
+
import { useAccountStore } from 'src/entities/Account/model';
|
8
|
+
import { useSessionStore } from 'src/entities/Session';
|
9
|
+
|
10
|
+
export default boot(async ({ router }) => {
|
11
|
+
const desktops = useDesktopStore();
|
12
|
+
const cardStore = useCardStore();
|
13
|
+
const system = useSystemStore();
|
14
|
+
const account = useAccountStore();
|
15
|
+
const session = useSessionStore();
|
16
|
+
|
17
|
+
//Инициализация системного стора
|
18
|
+
await system.loadSystemInfo();
|
19
|
+
|
20
|
+
// Инициализация стора desktops
|
21
|
+
await desktops.healthCheck();
|
22
|
+
await desktops.loadDesktops();
|
23
|
+
desktops.setActiveDesktop(desktops.defaultDesktopHash);
|
24
|
+
|
25
|
+
// Инициализация сессии
|
26
|
+
await cardStore.initWallet();
|
27
|
+
|
28
|
+
// Загрузка аккаунта
|
29
|
+
if (session.isAuth && session.username)
|
30
|
+
await account.getAccount(session.username)
|
31
|
+
|
32
|
+
// Добавление динамических маршрутов как дочерних к 'base'
|
33
|
+
const baseRoute = router.getRoutes().find(route => route.name === 'base');
|
34
|
+
|
35
|
+
if (baseRoute) {
|
36
|
+
desktops.currentDesktop?.routes.forEach(route => {
|
37
|
+
// Добавляем маршрут как дочерний к 'base'
|
38
|
+
router.addRoute('base', route as RouteRecordRaw);
|
39
|
+
});
|
40
|
+
} else {
|
41
|
+
console.error('Base route not found');
|
42
|
+
}
|
43
|
+
});
|
package/src/boot/map.ts
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
// src/boot/navigation-guards.js
|
2
|
+
import { boot } from 'quasar/wrappers';
|
3
|
+
import { COOPNAME } from 'src/shared/config';
|
4
|
+
import { useSessionStore } from 'src/entities/Session';
|
5
|
+
import { useCurrentUserStore } from 'src/entities/User';
|
6
|
+
import { useDesktopStore } from 'src/entities/Desktop/model';
|
7
|
+
|
8
|
+
// Function to handle access logic
|
9
|
+
function hasAccess(to, userAccount) {
|
10
|
+
if (!to.meta?.roles || to.meta?.roles.length === 0) {
|
11
|
+
return true; // Access is allowed if no roles are defined
|
12
|
+
}
|
13
|
+
return userAccount && to.meta?.roles.includes(userAccount.role); // Check user roles against route roles
|
14
|
+
}
|
15
|
+
|
16
|
+
export default boot(async ({ router }) => {
|
17
|
+
const desktops = useDesktopStore();
|
18
|
+
const session = useSessionStore();
|
19
|
+
const currentUser = useCurrentUserStore();
|
20
|
+
|
21
|
+
router.beforeEach(async (to, from, next) => {
|
22
|
+
await desktops.healthCheck();
|
23
|
+
console.log('to', to)
|
24
|
+
if (desktops.health?.status === 'install' && to.name !== 'install') {
|
25
|
+
console.log(1)
|
26
|
+
next({ name: 'install', params: { coopname: COOPNAME } });
|
27
|
+
return;
|
28
|
+
}
|
29
|
+
|
30
|
+
if (to.name === 'index') {
|
31
|
+
const homePage =
|
32
|
+
session.isAuth && currentUser.isRegistrationComplete
|
33
|
+
? desktops.currentDesktop?.authorizedHome
|
34
|
+
: desktops.currentDesktop?.nonAuthorizedHome;
|
35
|
+
|
36
|
+
console.log('homePage: ', homePage)
|
37
|
+
// next();
|
38
|
+
next({ name: homePage, params: { coopname: COOPNAME } });
|
39
|
+
return;
|
40
|
+
}
|
41
|
+
|
42
|
+
if (hasAccess(to, currentUser.userAccount)) {
|
43
|
+
next();
|
44
|
+
} else {
|
45
|
+
next({ name: 'permissionDenied' });
|
46
|
+
}
|
47
|
+
});
|
48
|
+
});
|
@@ -0,0 +1,26 @@
|
|
1
|
+
import { boot } from 'quasar/wrappers';
|
2
|
+
import { App } from 'vue';
|
3
|
+
import { Router } from 'vue-router';
|
4
|
+
import { NODE_ENV } from 'src/shared/config';
|
5
|
+
import Tracker from '@openreplay/tracker';
|
6
|
+
import trackerAssist from '@openreplay/tracker-assist'
|
7
|
+
import { useSessionStore } from 'src/entities/Session';
|
8
|
+
export default boot(
|
9
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
10
|
+
({ app, router }: { app: App<Element>; router: Router }) => {
|
11
|
+
if ((NODE_ENV as string) === 'production') {
|
12
|
+
const session = useSessionStore()
|
13
|
+
|
14
|
+
const tracker = new Tracker({
|
15
|
+
projectKey: 'mgaCVSShnDNbPRFDZehd',
|
16
|
+
});
|
17
|
+
|
18
|
+
if (session.username)
|
19
|
+
tracker.setUserID(session.username)
|
20
|
+
|
21
|
+
// .start() returns a promise
|
22
|
+
tracker.start().then(sessionData => console.log(sessionData) ).catch(e => console.error('on tracker: ', e) )
|
23
|
+
tracker.use(trackerAssist({}));
|
24
|
+
}
|
25
|
+
}
|
26
|
+
);
|