@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,388 @@
|
|
1
|
+
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); */
|
2
|
+
|
3
|
+
@tailwind base;
|
4
|
+
@tailwind components;
|
5
|
+
@tailwind utilities;
|
6
|
+
|
7
|
+
/* Стили для полосы прокрутки содержимого drawer */
|
8
|
+
.q-drawer__content::-webkit-scrollbar {
|
9
|
+
width: 0px;
|
10
|
+
}
|
11
|
+
|
12
|
+
.q-drawer__content::-webkit-scrollbar-track {
|
13
|
+
background-color: #f5f5f5;
|
14
|
+
}
|
15
|
+
|
16
|
+
.q-drawer__content::-webkit-scrollbar-thumb {
|
17
|
+
background-color: #999999;
|
18
|
+
}
|
19
|
+
|
20
|
+
.documents-gap {
|
21
|
+
display: flex;
|
22
|
+
flex-direction: column;
|
23
|
+
gap: 25px;
|
24
|
+
}
|
25
|
+
|
26
|
+
.text-wrap {
|
27
|
+
word-wrap: break-word;
|
28
|
+
white-space: pre-wrap;
|
29
|
+
}
|
30
|
+
|
31
|
+
.statement {
|
32
|
+
word-wrap: break-word;
|
33
|
+
white-space: pre-wrap;
|
34
|
+
}
|
35
|
+
|
36
|
+
.padding-top {
|
37
|
+
padding-top: 50px;
|
38
|
+
}
|
39
|
+
|
40
|
+
.appcontainer {
|
41
|
+
padding-bottom: env(safe-area-inset-bottom);
|
42
|
+
}
|
43
|
+
|
44
|
+
.document {
|
45
|
+
white-space: pre-wrap;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
.bordered {
|
50
|
+
border: 1px solid grey;
|
51
|
+
}
|
52
|
+
|
53
|
+
.flex-grow {
|
54
|
+
flex-grow: 1;
|
55
|
+
}
|
56
|
+
|
57
|
+
.selected {
|
58
|
+
border: 0.1px solid grey;
|
59
|
+
}
|
60
|
+
|
61
|
+
.no-select {
|
62
|
+
-webkit-touch-callout: none; /* iOS Safari */
|
63
|
+
-webkit-user-select: none; /* Safari */
|
64
|
+
-khtml-user-select: none; /* Konqueror HTML */
|
65
|
+
-moz-user-select: none; /* Old versions of Firefox */
|
66
|
+
-ms-user-select: none; /* Internet Explorer/Edge */
|
67
|
+
user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
|
68
|
+
}
|
69
|
+
|
70
|
+
.font-inter {
|
71
|
+
font-family: 'Inter', sans-serif;
|
72
|
+
}
|
73
|
+
|
74
|
+
.ProseMirror {
|
75
|
+
outline: none !important;
|
76
|
+
padding: 4px 4px;
|
77
|
+
min-height: 150px;
|
78
|
+
position: relative;
|
79
|
+
}
|
80
|
+
|
81
|
+
.blog {
|
82
|
+
display: flex;
|
83
|
+
flex-direction: column;
|
84
|
+
gap: 1rem;
|
85
|
+
}
|
86
|
+
|
87
|
+
.blog h1 {
|
88
|
+
font-size: 2.25rem;
|
89
|
+
}
|
90
|
+
.blog h2 {
|
91
|
+
font-size: 1.875rem;
|
92
|
+
}
|
93
|
+
.blog h3 {
|
94
|
+
font-size: 1.5rem;
|
95
|
+
}
|
96
|
+
|
97
|
+
.blog ol,
|
98
|
+
.blog ul {
|
99
|
+
margin-left: 2rem;
|
100
|
+
list-style-position: outside;
|
101
|
+
margin-top: 0.5rem !important;
|
102
|
+
}
|
103
|
+
|
104
|
+
.blog ol {
|
105
|
+
list-style-type: decimal;
|
106
|
+
}
|
107
|
+
.blog ul {
|
108
|
+
list-style-type: disc;
|
109
|
+
}
|
110
|
+
|
111
|
+
.blog ol li,
|
112
|
+
.blog ul li {
|
113
|
+
margin-top: 0.5rem;
|
114
|
+
}
|
115
|
+
.blog ol li:first-child,
|
116
|
+
.blog ul li:first-child {
|
117
|
+
margin-top: 0;
|
118
|
+
}
|
119
|
+
|
120
|
+
.blog blockquote {
|
121
|
+
font-style: italic;
|
122
|
+
border-left: 4px solid #ccc;
|
123
|
+
padding: 2rem 1rem;
|
124
|
+
margin-left: 1.5rem;
|
125
|
+
margin-top: 1.5rem !important;
|
126
|
+
margin-bottom: 0.5rem !important;
|
127
|
+
}
|
128
|
+
|
129
|
+
.blog a {
|
130
|
+
text-decoration: underline;
|
131
|
+
color: #1c64f2;
|
132
|
+
cursor: pointer;
|
133
|
+
}
|
134
|
+
|
135
|
+
.blog hr {
|
136
|
+
border-color: #ccc;
|
137
|
+
}
|
138
|
+
|
139
|
+
.blog table {
|
140
|
+
border: 1px solid #ccc;
|
141
|
+
table-layout: fixed;
|
142
|
+
border-collapse: collapse;
|
143
|
+
width: 100%;
|
144
|
+
}
|
145
|
+
|
146
|
+
.blog table th,
|
147
|
+
.blog table td {
|
148
|
+
border: 1px solid #ccc;
|
149
|
+
padding: 0.25rem 0.5rem;
|
150
|
+
position: relative;
|
151
|
+
}
|
152
|
+
|
153
|
+
.blog table th {
|
154
|
+
background-color: #ebf8ff;
|
155
|
+
}
|
156
|
+
|
157
|
+
.blog .tableWrapper {
|
158
|
+
overflow: auto;
|
159
|
+
}
|
160
|
+
|
161
|
+
.ProseMirror iframe {
|
162
|
+
width: 100% !important;
|
163
|
+
height: auto !important;
|
164
|
+
max-width: 480px;
|
165
|
+
min-height: 320px;
|
166
|
+
aspect-ratio: 16/9;
|
167
|
+
margin-right: 1.5rem;
|
168
|
+
}
|
169
|
+
|
170
|
+
.ProseMirror img.ProseMirror-selectednode,
|
171
|
+
.ProseMirror .ProseMirror-selectednode iframe {
|
172
|
+
outline: 8px solid #f59e0b;
|
173
|
+
transition: outline 0.15s;
|
174
|
+
display: block;
|
175
|
+
}
|
176
|
+
|
177
|
+
.ProseMirror img {
|
178
|
+
margin-right: 1.5rem;
|
179
|
+
width: 100%;
|
180
|
+
max-width: 480px;
|
181
|
+
max-height: 320px;
|
182
|
+
object-fit: scale-down;
|
183
|
+
object-position: center;
|
184
|
+
}
|
185
|
+
|
186
|
+
.ProseMirror img.ProseMirror-selectednode,
|
187
|
+
.ProseMirror div[data-youtube-video] {
|
188
|
+
cursor: move;
|
189
|
+
}
|
190
|
+
|
191
|
+
.ProseMirror .selectedCell::after {
|
192
|
+
z-index: 2;
|
193
|
+
position: absolute;
|
194
|
+
top: 0;
|
195
|
+
right: 0;
|
196
|
+
bottom: 0;
|
197
|
+
left: 0;
|
198
|
+
background-color: rgba(192, 192, 192, 0.3);
|
199
|
+
pointer-events: none;
|
200
|
+
content: '';
|
201
|
+
}
|
202
|
+
|
203
|
+
.ProseMirror .column-resize-handle {
|
204
|
+
position: absolute;
|
205
|
+
width: 1px;
|
206
|
+
top: 0;
|
207
|
+
right: -2px;
|
208
|
+
bottom: -2px;
|
209
|
+
background-color: #60a5fa;
|
210
|
+
pointer-events: none;
|
211
|
+
}
|
212
|
+
|
213
|
+
.ProseMirror-gapcursor {
|
214
|
+
display: none;
|
215
|
+
pointer-events: none;
|
216
|
+
position: relative;
|
217
|
+
}
|
218
|
+
.ProseMirror-gapcursor::after {
|
219
|
+
content: '';
|
220
|
+
display: block;
|
221
|
+
position: relative;
|
222
|
+
height: 1.25rem;
|
223
|
+
border-left: 1px solid black;
|
224
|
+
margin-top: 0.25rem;
|
225
|
+
animation: ProseMirror-cursor-blink 1.1s steps(2, start) infinite;
|
226
|
+
}
|
227
|
+
|
228
|
+
@keyframes ProseMirror-cursor-blink {
|
229
|
+
to {
|
230
|
+
visibility: hidden;
|
231
|
+
}
|
232
|
+
}
|
233
|
+
|
234
|
+
.ProseMirror-focused .ProseMirror-gapcursor {
|
235
|
+
display: block;
|
236
|
+
}
|
237
|
+
|
238
|
+
pre {
|
239
|
+
border: 1px solid rgba(0, 0, 0, 0.15);
|
240
|
+
line-height: 1.4em;
|
241
|
+
}
|
242
|
+
|
243
|
+
.shepherd-button {
|
244
|
+
background: #ffffff;
|
245
|
+
border-top: solid 4px #16202d;
|
246
|
+
border-radius: 0;
|
247
|
+
color: #16202d;
|
248
|
+
display: flex;
|
249
|
+
flex-grow: 1;
|
250
|
+
font-family: 'GT Pressura', sans-serif;
|
251
|
+
font-size: 1rem;
|
252
|
+
justify-content: center;
|
253
|
+
margin: 0;
|
254
|
+
padding: 1rem;
|
255
|
+
text-align: center;
|
256
|
+
text-transform: uppercase;
|
257
|
+
}
|
258
|
+
|
259
|
+
.shepherd-button:hover {
|
260
|
+
background: #16202d;
|
261
|
+
color: #ffffff;
|
262
|
+
}
|
263
|
+
|
264
|
+
.shepherd-button.shepherd-button-secondary {
|
265
|
+
background: #cad5d5;
|
266
|
+
}
|
267
|
+
|
268
|
+
.shepherd-button.shepherd-button-secondary:hover {
|
269
|
+
color: #cad5d5;
|
270
|
+
background: #16202d;
|
271
|
+
}
|
272
|
+
|
273
|
+
.shepherd-cancel-icon {
|
274
|
+
font-family: 'GT Pressura', sans-serif;
|
275
|
+
}
|
276
|
+
|
277
|
+
.shepherd-element {
|
278
|
+
border: solid 4px #16202d;
|
279
|
+
}
|
280
|
+
|
281
|
+
.shepherd-element,
|
282
|
+
.shepherd-header,
|
283
|
+
.shepherd-footer {
|
284
|
+
border-radius: 0;
|
285
|
+
}
|
286
|
+
|
287
|
+
.shepherd-element .shepherd-arrow {
|
288
|
+
border-width: 0;
|
289
|
+
height: auto;
|
290
|
+
width: auto;
|
291
|
+
}
|
292
|
+
|
293
|
+
.shepherd-arrow::before {
|
294
|
+
display: none;
|
295
|
+
}
|
296
|
+
|
297
|
+
.shepherd-element .shepherd-arrow:after {
|
298
|
+
/* content: url('../assets/img/arrow.svg');*/
|
299
|
+
display: inline-block;
|
300
|
+
}
|
301
|
+
|
302
|
+
.shepherd-element[data-popper-placement^='top'] .shepherd-arrow,
|
303
|
+
.shepherd-element.shepherd-pinned-top .shepherd-arrow {
|
304
|
+
bottom: -35px;
|
305
|
+
}
|
306
|
+
|
307
|
+
.shepherd-element[data-popper-placement^='top'] .shepherd-arrow:after,
|
308
|
+
.shepherd-element.shepherd-pinned-top .shepherd-arrow:after {
|
309
|
+
transform: rotate(270deg);
|
310
|
+
}
|
311
|
+
|
312
|
+
.shepherd-element[data-popper-placement^='bottom'] .shepherd-arrow {
|
313
|
+
top: -35px;
|
314
|
+
}
|
315
|
+
|
316
|
+
.shepherd-element[data-popper-placement^='bottom'] .shepherd-arrow:after {
|
317
|
+
transform: rotate(90deg);
|
318
|
+
}
|
319
|
+
|
320
|
+
.shepherd-element[data-popper-placement^='left'] .shepherd-arrow,
|
321
|
+
.shepherd-element.shepherd-pinned-left .shepherd-arrow {
|
322
|
+
right: -35px;
|
323
|
+
}
|
324
|
+
|
325
|
+
.shepherd-element[data-popper-placement^='left'] .shepherd-arrow:after,
|
326
|
+
.shepherd-element.shepherd-pinned-left .shepherd-arrow:after {
|
327
|
+
transform: rotate(180deg);
|
328
|
+
}
|
329
|
+
|
330
|
+
.shepherd-element[data-popper-placement^='right'] .shepherd-arrow,
|
331
|
+
.shepherd-element.shepherd-pinned-right .shepherd-arrow {
|
332
|
+
left: -35px;
|
333
|
+
}
|
334
|
+
|
335
|
+
.shepherd-footer {
|
336
|
+
padding: 0;
|
337
|
+
}
|
338
|
+
|
339
|
+
.shepherd-footer button:not(:last-of-type) {
|
340
|
+
border-right: solid 4px #16202d;
|
341
|
+
}
|
342
|
+
|
343
|
+
.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
|
344
|
+
margin-top: -7px;
|
345
|
+
}
|
346
|
+
|
347
|
+
.shepherd-has-title .shepherd-content .shepherd-header {
|
348
|
+
background: transparent;
|
349
|
+
font-family: 'GT Pressura', sans-serif;
|
350
|
+
padding-bottom: 0;
|
351
|
+
padding-left: 2rem;
|
352
|
+
}
|
353
|
+
|
354
|
+
.shepherd-has-title .shepherd-content .shepherd-header .shepherd-title {
|
355
|
+
font-size: 1.2rem;
|
356
|
+
text-transform: uppercase;
|
357
|
+
}
|
358
|
+
|
359
|
+
.shepherd-text {
|
360
|
+
font-size: 1.2rem;
|
361
|
+
padding: 2rem;
|
362
|
+
}
|
363
|
+
|
364
|
+
.shepherd-text a,
|
365
|
+
.shepherd-text a:visited,
|
366
|
+
.shepherd-text a:active {
|
367
|
+
border-bottom: 1px dotted;
|
368
|
+
border-bottom-color: rgba(0, 0, 0, 0.75);
|
369
|
+
color: rgba(0, 0, 0, 0.75);
|
370
|
+
text-decoration: none;
|
371
|
+
}
|
372
|
+
|
373
|
+
.shepherd-text a:hover,
|
374
|
+
.shepherd-text a:visited:hover,
|
375
|
+
.shepherd-text a:active:hover {
|
376
|
+
border-bottom-style: solid;
|
377
|
+
}
|
378
|
+
|
379
|
+
.card {
|
380
|
+
cursor: pointer;
|
381
|
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
382
|
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
|
383
|
+
|
384
|
+
&:hover {
|
385
|
+
transform: scale(1.03);
|
386
|
+
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
|
387
|
+
}
|
388
|
+
}
|
@@ -0,0 +1,187 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 25.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4
|
+
viewBox="0 0 790 799.88" style="enable-background:new 0 0 790 799.88;" xml:space="preserve">
|
5
|
+
<g id="BG">
|
6
|
+
</g>
|
7
|
+
<g id="Layer_5">
|
8
|
+
</g>
|
9
|
+
<g id="Layer_2">
|
10
|
+
</g>
|
11
|
+
<g id="Layer_3">
|
12
|
+
</g>
|
13
|
+
<g id="Layer_4">
|
14
|
+
<g>
|
15
|
+
<g>
|
16
|
+
<path d="M392.65,788.67c-103.09,0-200.01-40.15-272.91-113.04C46.84,602.73,6.7,505.81,6.7,402.72
|
17
|
+
c0-103.09,40.15-200.01,113.04-272.91S289.56,16.76,392.65,16.76c103.09,0,200.01,40.15,272.91,113.04
|
18
|
+
c72.9,72.9,113.04,169.82,113.04,272.91c0,103.09-40.15,200.01-113.04,272.91C592.66,748.52,495.74,788.67,392.65,788.67z
|
19
|
+
M392.65,37.44c-201.41,0-365.27,163.86-365.27,365.27s163.86,365.27,365.27,365.27s365.27-163.86,365.27-365.27
|
20
|
+
S594.06,37.44,392.65,37.44z"/>
|
21
|
+
<g>
|
22
|
+
<g>
|
23
|
+
<polygon points="343.78,233.22 281.88,233.22 266.59,217.92 271.03,213.48 284.49,226.93 341.18,226.93 368.98,199.12
|
24
|
+
368.98,103.84 320.42,103.84 290.82,133.45 290.82,174.87 311.46,195.51 307.02,199.95 284.53,177.47 284.53,130.84
|
25
|
+
317.82,97.56 375.27,97.56 375.27,201.73 "/>
|
26
|
+
<polygon points="217.78,321.94 172.68,321.94 172.68,315.65 215.17,315.65 238.26,292.56 238.26,257.88 207.27,226.88
|
27
|
+
207.27,170.37 248.64,129 287.68,129 287.68,135.29 251.25,135.29 213.56,172.98 213.56,224.28 244.55,255.28 244.55,295.16
|
28
|
+
"/>
|
29
|
+
<polygon points="146.87,285.53 134.04,272.7 134.04,229.21 174.07,189.18 210.41,189.18 210.41,195.47 176.68,195.47
|
30
|
+
140.33,231.82 140.33,270.1 151.32,281.09 "/>
|
31
|
+
<polygon points="351.64,335.64 309.28,335.64 288.93,315.29 293.38,310.84 311.89,329.35 349.04,329.35 368.98,309.4
|
32
|
+
368.98,272.93 353.26,257.21 353.26,216.31 359.55,216.31 359.55,254.6 375.27,270.32 375.27,312.01 "/>
|
33
|
+
<polygon points="375.27,707.88 354.36,707.88 331.3,684.81 292.08,684.81 250.44,643.17 223.21,643.17 186.65,606.6
|
34
|
+
165.45,606.6 133.41,574.57 133.41,507.38 105.38,479.34 105.38,401.55 88.84,385.01 88.84,331.36 114.16,306.04
|
35
|
+
114.16,279.41 134.96,258.61 139.41,263.06 120.45,282.02 120.45,308.64 95.13,333.96 95.13,382.4 111.67,398.94
|
36
|
+
111.67,476.74 139.7,504.77 139.7,571.97 168.05,600.31 189.25,600.31 225.82,636.88 253.04,636.88 294.68,678.52
|
37
|
+
333.9,678.52 356.97,701.59 368.98,701.59 368.98,645.15 368.87,589.45 368.87,567.5 339.11,537.74 339.11,498.97
|
38
|
+
369.43,468.65 369.43,395.34 335.79,361.69 305.15,361.69 283.59,383.26 258.03,383.26 258.03,376.97 280.98,376.97
|
39
|
+
302.55,355.4 338.39,355.4 375.72,392.73 375.72,471.26 345.4,501.58 345.4,535.13 375.16,564.89 375.16,589.44 375.27,645.14
|
40
|
+
"/>
|
41
|
+
<polygon points="292.32,277.69 286.03,277.69 286.03,258.12 316.3,227.85 320.75,232.3 292.32,260.73 "/>
|
42
|
+
<polygon points="194.26,275.87 175.82,257.43 175.82,235.46 182.11,235.46 182.11,254.82 198.71,271.42 "/>
|
43
|
+
<polygon points="244.55,197.73 238.26,197.73 238.26,183.4 254.01,167.66 258.46,172.1 244.55,186.01 "/>
|
44
|
+
<polygon points="338.89,170.78 332.6,170.78 332.6,150.97 322.29,140.66 326.74,136.21 338.89,148.36 "/>
|
45
|
+
<polygon points="318.2,297.43 313.75,292.99 329.45,277.29 329.45,264.21 335.74,264.21 335.74,279.89 "/>
|
46
|
+
<polygon points="134.02,357.63 129.58,353.18 146.18,336.58 146.18,315.42 152.46,315.42 152.46,339.19 "/>
|
47
|
+
<polygon points="170.39,430.87 136.74,430.87 136.74,424.58 167.78,424.58 186.6,405.76 186.6,375.12 166.86,355.38
|
48
|
+
171.31,350.93 192.89,372.52 192.89,408.37 "/>
|
49
|
+
<polygon points="274.2,345.97 239.21,345.97 214.48,321.24 218.93,316.79 241.81,339.68 274.2,339.68 "/>
|
50
|
+
<polygon points="291.27,425.93 245.5,425.93 222.54,402.98 222.54,355.45 236.94,341.05 241.39,345.5 228.83,358.05
|
51
|
+
228.83,400.37 248.1,419.64 291.27,419.64 "/>
|
52
|
+
<polygon points="312.59,491.27 308.14,486.82 330.8,464.16 330.8,412.41 312.41,394.01 316.85,389.57 337.09,409.8
|
53
|
+
337.09,466.76 "/>
|
54
|
+
<rect x="357.7" y="321.99" width="6.29" height="60.31"/>
|
55
|
+
<polygon points="185.66,523.41 161,523.41 161,517.12 183.06,517.12 209.96,490.21 209.96,453.38 243.23,420.11 247.67,424.56
|
56
|
+
216.25,455.98 216.25,492.82 "/>
|
57
|
+
<polygon points="345.18,593.6 317.71,593.6 296.89,572.78 296.89,542.45 268.81,514.38 268.81,470 286.35,452.46 290.8,456.9
|
58
|
+
275.1,472.6 275.1,511.77 303.18,539.85 303.18,570.17 320.31,587.31 345.18,587.31 "/>
|
59
|
+
<polygon points="186.63,478.46 173.17,465.01 133.15,465.01 133.15,458.72 175.78,458.72 191.07,474.02 "/>
|
60
|
+
<polygon points="213.31,601.32 208.86,596.88 225.69,580.05 225.69,531.09 245.02,511.75 249.47,516.2 231.97,533.7
|
61
|
+
231.97,582.66 "/>
|
62
|
+
<polygon points="209.96,568.33 175.42,568.33 157.88,550.79 162.32,546.34 178.02,562.04 209.96,562.04 "/>
|
63
|
+
<polygon points="342.95,654.56 322.31,633.92 295.36,633.92 263.87,602.43 263.87,558 270.16,558 270.16,599.82 297.96,627.63
|
64
|
+
324.92,627.63 347.4,650.11 "/>
|
65
|
+
<circle cx="345.63" cy="652.78" r="10.78"/>
|
66
|
+
|
67
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -316.2577 418.0678)" cx="346.52" cy="590.79" rx="10.78" ry="10.78"/>
|
68
|
+
<circle cx="267.46" cy="558.45" r="10.78"/>
|
69
|
+
<ellipse transform="matrix(0.1607 -0.987 0.987 0.1607 -413.3654 711.6311)" cx="211.76" cy="598.88" rx="10.78" ry="10.78"/>
|
70
|
+
<circle cx="246.8" cy="513.53" r="10.78"/>
|
71
|
+
<circle cx="207.27" cy="565.63" r="10.78"/>
|
72
|
+
<circle cx="159.65" cy="546.77" r="10.78"/>
|
73
|
+
<ellipse transform="matrix(0.1607 -0.987 0.987 0.1607 -379.6868 591.3181)" cx="157.85" cy="518.92" rx="10.78" ry="10.78"/>
|
74
|
+
<circle cx="189.3" cy="475.79" r="10.78"/>
|
75
|
+
|
76
|
+
<ellipse transform="matrix(0.9228 -0.3852 0.3852 0.9228 -140.3493 145.0009)" cx="291.72" cy="422.79" rx="10.78" ry="10.78"/>
|
77
|
+
<circle cx="289.02" cy="455.13" r="10.78"/>
|
78
|
+
<circle cx="309.69" cy="489.27" r="10.78"/>
|
79
|
+
<circle cx="315.08" cy="391.34" r="10.78"/>
|
80
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -193.3898 294.235)" cx="258.48" cy="380.56" rx="10.78" ry="10.78"/>
|
81
|
+
<ellipse transform="matrix(0.1607 -0.987 0.987 0.1607 -308.8437 491.352)" cx="134.5" cy="427.28" rx="10.78" ry="10.78"/>
|
82
|
+
<ellipse transform="matrix(0.1607 -0.987 0.987 0.1607 -207.6104 464.8588)" cx="169.53" cy="354.51" rx="10.78" ry="10.78"/>
|
83
|
+
<circle cx="131.8" cy="356.3" r="10.78"/>
|
84
|
+
<circle cx="148.87" cy="309.58" r="10.78"/>
|
85
|
+
<circle cx="148.87" cy="280.83" r="10.78"/>
|
86
|
+
<ellipse transform="matrix(0.1607 -0.987 0.987 0.1607 -106.0694 424.3527)" cx="196.49" cy="274.55" rx="10.78" ry="10.78"/>
|
87
|
+
<circle cx="178.52" cy="234.12" r="10.78"/>
|
88
|
+
<circle cx="175.82" cy="318.57" r="10.78"/>
|
89
|
+
|
90
|
+
<ellipse transform="matrix(0.9228 -0.3852 0.3852 0.9228 -110.8652 132.2547)" cx="274.65" cy="342.83" rx="10.78" ry="10.78"/>
|
91
|
+
<ellipse transform="matrix(0.1417 -0.9899 0.9899 0.1417 -60.3936 556.705)" cx="290.82" cy="313.18" rx="10.78" ry="10.78"/>
|
92
|
+
<circle cx="315.98" cy="295.21" r="10.78"/>
|
93
|
+
<ellipse transform="matrix(0.15 -0.9887 0.9887 0.15 26.745 549.6544)" cx="333.05" cy="259.27" rx="10.78" ry="10.78"/>
|
94
|
+
<circle cx="289.02" cy="276.34" r="10.78"/>
|
95
|
+
<circle cx="268.36" cy="216.15" r="10.78"/>
|
96
|
+
<ellipse transform="matrix(0.9228 -0.3852 0.3852 0.9228 -60.4799 108.8417)" cx="241.41" cy="205.37" rx="10.78" ry="10.78"/>
|
97
|
+
<circle cx="259.38" cy="164.94" r="10.78"/>
|
98
|
+
<circle cx="307.89" cy="196.38" r="10.78"/>
|
99
|
+
<circle cx="335.74" cy="177.52" r="10.78"/>
|
100
|
+
<circle cx="320.47" cy="134.39" r="10.78"/>
|
101
|
+
<ellipse transform="matrix(0.2308 -0.973 0.973 0.2308 -346.8885 484.0296)" cx="132.7" cy="461.42" rx="10.78" ry="10.78"/>
|
102
|
+
</g>
|
103
|
+
<g>
|
104
|
+
<polygon points="503.42,233.22 441.52,233.22 410.03,201.73 410.03,97.56 467.48,97.56 500.77,130.84 500.77,177.47
|
105
|
+
478.28,199.95 473.84,195.51 494.48,174.87 494.48,133.45 464.88,103.84 416.32,103.84 416.32,199.12 444.12,226.93
|
106
|
+
500.81,226.93 514.27,213.48 518.71,217.92 "/>
|
107
|
+
<polygon points="612.62,321.94 567.52,321.94 540.75,295.16 540.75,255.28 571.74,224.28 571.74,172.98 534.06,135.29
|
108
|
+
497.62,135.29 497.62,129 536.66,129 578.03,170.37 578.03,226.88 547.04,257.88 547.04,292.56 570.13,315.65 612.62,315.65
|
109
|
+
"/>
|
110
|
+
<polygon points="638.43,285.53 633.99,281.09 644.97,270.1 644.97,231.82 608.62,195.47 574.89,195.47 574.89,189.18
|
111
|
+
611.23,189.18 651.26,229.21 651.26,272.7 "/>
|
112
|
+
<polygon points="476.02,335.64 433.66,335.64 410.03,312.01 410.03,270.32 425.75,254.6 425.75,216.31 432.04,216.31
|
113
|
+
432.04,257.21 416.32,272.93 416.32,309.4 436.26,329.35 473.41,329.35 491.92,310.84 496.37,315.29 "/>
|
114
|
+
<polygon points="430.94,707.88 410.03,707.88 410.03,645.15 410.14,589.44 410.14,564.89 439.9,535.13 439.9,501.58
|
115
|
+
409.58,471.26 409.58,392.73 446.91,355.4 482.75,355.4 504.32,376.97 527.27,376.97 527.27,383.26 501.71,383.26
|
116
|
+
480.15,361.69 449.51,361.69 415.87,395.34 415.87,468.65 446.19,498.97 446.19,537.74 416.43,567.5 416.43,589.44
|
117
|
+
416.32,645.15 416.32,701.59 428.33,701.59 451.4,678.52 490.62,678.52 532.26,636.88 559.48,636.88 596.05,600.31
|
118
|
+
617.25,600.31 645.6,571.97 645.6,504.77 673.63,476.74 673.63,398.94 690.17,382.4 690.17,333.96 664.85,308.64
|
119
|
+
664.85,282.02 645.89,263.06 650.34,258.61 671.14,279.41 671.14,306.04 696.46,331.36 696.46,385.01 679.92,401.55
|
120
|
+
679.92,479.34 651.89,507.38 651.89,574.57 619.86,606.6 598.65,606.6 562.09,643.17 534.86,643.17 493.22,684.81
|
121
|
+
454.01,684.81 "/>
|
122
|
+
<polygon points="499.27,277.69 492.98,277.69 492.98,260.73 464.55,232.3 469,227.85 499.27,258.12 "/>
|
123
|
+
<polygon points="591.04,275.87 586.59,271.42 603.19,254.82 603.19,235.46 609.48,235.46 609.48,257.43 "/>
|
124
|
+
<polygon points="547.04,197.73 540.75,197.73 540.75,186.01 526.84,172.1 531.29,167.66 547.04,183.4 "/>
|
125
|
+
<polygon points="452.7,170.78 446.41,170.78 446.41,148.36 458.56,136.21 463.01,140.66 452.7,150.97 "/>
|
126
|
+
<polygon points="467.1,297.43 449.56,279.89 449.56,264.21 455.85,264.21 455.85,277.29 471.55,292.99 "/>
|
127
|
+
<polygon points="651.28,357.63 632.84,339.19 632.84,315.42 639.13,315.42 639.13,336.58 655.72,353.18 "/>
|
128
|
+
<polygon points="648.56,430.87 614.91,430.87 592.41,408.37 592.41,372.52 613.99,350.93 618.44,355.38 598.7,375.12
|
129
|
+
598.7,405.76 617.52,424.58 648.56,424.58 "/>
|
130
|
+
<polygon points="546.09,345.97 511.1,345.97 511.1,339.68 543.49,339.68 566.38,316.79 570.82,321.24 "/>
|
131
|
+
<polygon points="539.81,425.93 494.03,425.93 494.03,419.64 537.2,419.64 556.47,400.37 556.47,358.05 543.92,345.5
|
132
|
+
548.36,341.05 562.76,355.45 562.76,402.98 "/>
|
133
|
+
<polygon points="472.71,491.27 448.21,466.76 448.21,409.8 468.45,389.57 472.89,394.01 454.5,412.41 454.5,464.16
|
134
|
+
477.16,486.82 "/>
|
135
|
+
<rect x="421.31" y="321.99" width="6.29" height="60.31"/>
|
136
|
+
<polygon points="624.3,523.41 599.64,523.41 569.05,492.82 569.05,455.98 537.63,424.56 542.07,420.11 575.34,453.38
|
137
|
+
575.34,490.21 602.25,517.12 624.3,517.12 "/>
|
138
|
+
<polygon points="467.59,593.6 440.12,593.6 440.12,587.31 464.99,587.31 482.13,570.17 482.13,539.85 510.2,511.77
|
139
|
+
510.2,472.6 494.5,456.9 498.95,452.46 516.49,470 516.49,514.38 488.42,542.45 488.42,572.78 "/>
|
140
|
+
<polygon points="598.67,478.46 594.23,474.02 609.52,458.72 652.15,458.72 652.15,465.01 612.13,465.01 "/>
|
141
|
+
<polygon points="571.99,601.32 553.33,582.66 553.33,533.7 535.83,516.2 540.28,511.75 559.62,531.09 559.62,580.05
|
142
|
+
576.44,596.88 "/>
|
143
|
+
<polygon points="609.88,568.33 575.34,568.33 575.34,562.04 607.28,562.04 622.98,546.34 627.42,550.79 "/>
|
144
|
+
<polygon points="442.35,654.56 437.9,650.11 460.38,627.63 487.34,627.63 515.14,599.82 515.14,558 521.43,558 521.43,602.43
|
145
|
+
489.94,633.92 462.99,633.92 "/>
|
146
|
+
<circle cx="439.68" cy="652.78" r="10.78"/>
|
147
|
+
|
148
|
+
<ellipse transform="matrix(0.3307 -0.9437 0.9437 0.3307 -263.8864 809.4758)" cx="438.78" cy="590.79" rx="10.78" ry="10.78"/>
|
149
|
+
<circle cx="517.84" cy="558.45" r="10.78"/>
|
150
|
+
|
151
|
+
<ellipse transform="matrix(0.9732 -0.2298 0.2298 0.9732 -122.2513 147.7938)" cx="573.54" cy="598.88" rx="10.78" ry="10.78"/>
|
152
|
+
<circle cx="538.5" cy="513.53" r="10.78"/>
|
153
|
+
<circle cx="578.03" cy="565.63" r="10.78"/>
|
154
|
+
<circle cx="625.65" cy="546.77" r="10.78"/>
|
155
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -183.155 595.6585)" cx="627.45" cy="518.92" rx="10.78" ry="10.78"/>
|
156
|
+
<circle cx="596" cy="475.79" r="10.78"/>
|
157
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -154.388 472.8453)" cx="493.58" cy="422.79" rx="10.78" ry="10.78"/>
|
158
|
+
<circle cx="496.28" cy="455.13" r="10.78"/>
|
159
|
+
<circle cx="475.61" cy="489.27" r="10.78"/>
|
160
|
+
<circle cx="470.22" cy="391.34" r="10.78"/>
|
161
|
+
<ellipse transform="matrix(0.3827 -0.9239 0.9239 0.3827 -26.3748 721.6465)" cx="526.82" cy="380.56" rx="10.78" ry="10.78"/>
|
162
|
+
<ellipse transform="matrix(0.9871 -0.1602 0.1602 0.9871 -60.0389 109.7649)" cx="650.8" cy="427.28" rx="10.78" ry="10.78"/>
|
163
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -70.3193 539.2448)" cx="615.77" cy="354.51" rx="10.78" ry="10.78"/>
|
164
|
+
<circle cx="653.5" cy="356.3" r="10.78"/>
|
165
|
+
<circle cx="636.43" cy="309.58" r="10.78"/>
|
166
|
+
<circle cx="636.43" cy="280.83" r="10.78"/>
|
167
|
+
<ellipse transform="matrix(0.9732 -0.2298 0.2298 0.9732 -47.3264 142.6266)" cx="588.81" cy="274.55" rx="10.78" ry="10.78"/>
|
168
|
+
<circle cx="606.78" cy="234.12" r="10.78"/>
|
169
|
+
<circle cx="609.48" cy="318.57" r="10.78"/>
|
170
|
+
<ellipse transform="matrix(0.3827 -0.9239 0.9239 0.3827 -1.4963 683.4122)" cx="510.65" cy="342.83" rx="10.78" ry="10.78"/>
|
171
|
+
<ellipse transform="matrix(0.9871 -0.1602 0.1602 0.9871 -43.7806 83.2509)" cx="494.48" cy="313.18" rx="10.78" ry="10.78"/>
|
172
|
+
<circle cx="469.32" cy="295.21" r="10.78"/>
|
173
|
+
<ellipse transform="matrix(0.7071 -0.7071 0.7071 0.7071 -50.8714 395.7305)" cx="452.25" cy="259.27" rx="10.78" ry="10.78"/>
|
174
|
+
<circle cx="496.28" cy="276.34" r="10.78"/>
|
175
|
+
<circle cx="516.94" cy="216.15" r="10.78"/>
|
176
|
+
<ellipse transform="matrix(0.9732 -0.2298 0.2298 0.9732 -32.6339 130.4541)" cx="543.89" cy="205.37" rx="10.78" ry="10.78"/>
|
177
|
+
<circle cx="525.92" cy="164.94" r="10.78"/>
|
178
|
+
<circle cx="477.41" cy="196.38" r="10.78"/>
|
179
|
+
<circle cx="449.56" cy="177.52" r="10.78"/>
|
180
|
+
<circle cx="464.83" cy="134.39" r="10.78"/>
|
181
|
+
<ellipse transform="matrix(0.9871 -0.1602 0.1602 0.9871 -65.4843 110.4935)" cx="652.6" cy="461.42" rx="10.78" ry="10.78"/>
|
182
|
+
</g>
|
183
|
+
</g>
|
184
|
+
</g>
|
185
|
+
</g>
|
186
|
+
</g>
|
187
|
+
</svg>
|
@@ -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:#4d4e50;}.cls-3{fill:#00d6a0;}.cls-4{fill:#fff;}</style></defs><g id="Object"><path class="cls-1" d="M22.76,36.77a7.06,7.06,0,1,0-7.66-6.42A7.06,7.06,0,0,0,22.76,36.77Z"/><path class="cls-1" d="M50.49,47.42a4.89,4.89,0,1,0-5.06-8.37,4.89,4.89,0,0,0,5.06,8.37Z"/><path d="M5.91,24.24a17,17,0,0,0-.83,4l2.78,1.35c0,.45,0,.9,0,1.36l.06.46L5.34,33.09A17.4,17.4,0,0,0,6.62,37l3.09-.22a15.46,15.46,0,0,0,1,1.53L9.27,41a16.64,16.64,0,0,0,3.07,2.74l2.56-1.73a13.86,13.86,0,0,0,1.63.83L16.65,46a16.51,16.51,0,0,0,4,.84L22,44c.44,0,.9,0,1.35-.06l.47,0,1.65,2.62a17.57,17.57,0,0,0,3.91-1.28l-.22-3.09a15.46,15.46,0,0,0,1.53-1l2.73,1.43a17.34,17.34,0,0,0,2.74-3.06L34.46,37a13.86,13.86,0,0,0,.83-1.63l3.08-.12a17,17,0,0,0,.84-4l-2.78-1.35a12.27,12.27,0,0,0,0-1.35c0-.16,0-.32-.05-.47l2.61-1.65a16.45,16.45,0,0,0-1.28-3.91l-3.08.22a15.46,15.46,0,0,0-1-1.53L35,18.43A17.35,17.35,0,0,0,32,15.68l-2.56,1.74a14.69,14.69,0,0,0-1.63-.83l-.13-3.08a16.33,16.33,0,0,0-4-.84l-1.35,2.78a12.46,12.46,0,0,0-1.36.05l-.47.05-1.64-2.61a16.45,16.45,0,0,0-3.91,1.28l.22,3.08a14.37,14.37,0,0,0-1.53,1l-2.74-1.43a17.7,17.7,0,0,0-2.74,3.06l1.74,2.56A14.69,14.69,0,0,0,9,24.12Zm16.23-4.58A10.08,10.08,0,1,1,12.07,29.74,10.09,10.09,0,0,1,22.14,19.66Z"/><path class="cls-2" d="M22.14,39.09a9.36,9.36,0,1,0-9.35-9.35A9.36,9.36,0,0,0,22.14,39.09ZM21.53,22.7a7.06,7.06,0,1,1-6.43,7.65A7.06,7.06,0,0,1,21.53,22.7Z"/><path class="cls-2" d="M47.82,51.36A8,8,0,1,0,40,43.18,8,8,0,0,0,47.82,51.36ZM45.43,39.05a4.89,4.89,0,1,1-1.69,6.56A4.94,4.94,0,0,1,45.43,39.05Z"/><path d="M39.63,36.4l-2.16-.59a13.15,13.15,0,0,0-1.38,2.45l1.63,1.54a11.3,11.3,0,0,0-.44,1.71l-2.17.57a13.21,13.21,0,0,0,0,2.81l2.18.52a10.53,10.53,0,0,0,.48,1.7l-1.6,1.58a13.52,13.52,0,0,0,.65,1.25,11.89,11.89,0,0,0,.78,1.17l2.16-.64A10.36,10.36,0,0,0,41,51.7l-.59,2.17a12.56,12.56,0,0,0,2.45,1.37l1.54-1.63a10.22,10.22,0,0,0,1.71.44l.57,2.18a13.21,13.21,0,0,0,2.81,0L50.05,54a10.25,10.25,0,0,0,1.7-.48l1.58,1.6a10.6,10.6,0,0,0,1.25-.65,11.89,11.89,0,0,0,1.17-.78l-.64-2.15a11.34,11.34,0,0,0,1.24-1.26l2.16.59a13.4,13.4,0,0,0,1.38-2.44l-1.63-1.55a11.3,11.3,0,0,0,.44-1.71l2.17-.57a13.21,13.21,0,0,0,0-2.81l-2.18-.52a13.06,13.06,0,0,0-.48-1.7L59.78,38c-.2-.42-.41-.84-.65-1.25s-.51-.79-.79-1.17l-2.15.65A9.83,9.83,0,0,0,54.93,35l.6-2.17a13.15,13.15,0,0,0-2.45-1.38l-1.55,1.64a11.3,11.3,0,0,0-1.71-.44l-.57-2.18a12.49,12.49,0,0,0-2.8,0l-.53,2.18a10.53,10.53,0,0,0-1.7.48l-1.57-1.6a10.6,10.6,0,0,0-1.25.65,11.89,11.89,0,0,0-1.17.78l.64,2.15A10.53,10.53,0,0,0,39.63,36.4ZM48.16,35a8.37,8.37,0,1,1-8.53,8.19A8.38,8.38,0,0,1,48.16,35Z"/><path class="cls-3" d="M22.14,39.81A10.08,10.08,0,1,0,12.07,29.74,10.09,10.09,0,0,0,22.14,39.81Zm0-19.43a9.36,9.36,0,1,1-9.35,9.36A9.36,9.36,0,0,1,22.14,20.38Z"/><path class="cls-4" d="M47.81,51.71a8.37,8.37,0,1,0-8.18-8.54A8.39,8.39,0,0,0,47.81,51.71Zm.35-16.38A8,8,0,1,1,40,43.18,8,8,0,0,1,48.16,35.33Z"/></g></svg>
|
@@ -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:#00d6a0;}</style></defs><g id="Object"><path class="cls-1" d="M41.19,30.06a7.05,7.05,0,0,1,.52,2.67,7,7,0,0,1-2.07,5l-1,1,7.44,7.44a1.87,1.87,0,0,0,.59.4,1.87,1.87,0,0,0,1.37,0,1.91,1.91,0,0,0,.6-.4l6.69-6.69a1.68,1.68,0,0,0,.39-.59,1.75,1.75,0,0,0,0-1.37,1.72,1.72,0,0,0-.39-.6L39.91,21.57a1.54,1.54,0,0,0-.6-.4,1.72,1.72,0,0,0-1.36,0,1.54,1.54,0,0,0-.6.4L35.42,23.5l4.22,4.23A6.84,6.84,0,0,1,41.19,30.06Z"/><path class="cls-1" d="M19.93,15.66a1.72,1.72,0,0,0-.68-.13,1.75,1.75,0,0,0-.68.13,1.66,1.66,0,0,0-.6.4l-6.22,6.22-.47.47a1.8,1.8,0,0,0-.4.6,1.72,1.72,0,0,0-.13.68,1.78,1.78,0,0,0,.53,1.28L26.67,40.7a1.8,1.8,0,0,0,.6.4,1.91,1.91,0,0,0,.68.13,2,2,0,0,0,.68-.13,1.8,1.8,0,0,0,.6-.4l1.93-1.94-4.22-4.22a7.07,7.07,0,0,1,0-10h0l1-1-7.44-7.44A1.66,1.66,0,0,0,19.93,15.66Z"/><path class="cls-1" d="M36.32,33.41a1.87,1.87,0,0,0,0-1.37,1.87,1.87,0,0,0-.4-.59L31.7,27.22l-.58.57-.46.47a1.87,1.87,0,0,0-.4.59,1.87,1.87,0,0,0,0,1.37,2,2,0,0,0,.4.6L34.89,35l1-1A1.91,1.91,0,0,0,36.32,33.41Z"/><path d="M39.64,37.73a7,7,0,0,0,2.07-5,7.05,7.05,0,0,0-.52-2.67,6.84,6.84,0,0,0-1.55-2.33L35.42,23.5,31.7,27.22l4.22,4.23a1.87,1.87,0,0,1,.4.59,1.87,1.87,0,0,1,0,1.37,1.91,1.91,0,0,1-.4.6l-1,1-3.73,3.72L29.23,40.7a1.8,1.8,0,0,1-.6.4,2,2,0,0,1-.68.13,1.91,1.91,0,0,1-.68-.13,1.8,1.8,0,0,1-.6-.4L11.28,25.31A1.78,1.78,0,0,1,10.75,24a1.72,1.72,0,0,1,.13-.68,1.8,1.8,0,0,1,.4-.6l.47-.47L18,16.06a1.66,1.66,0,0,1,.6-.4,1.75,1.75,0,0,1,.68-.13,1.72,1.72,0,0,1,.68.13,1.66,1.66,0,0,1,.6.4L28,23.5l3.72-3.72-7.44-7.44a7,7,0,0,0-2.34-1.56,7.16,7.16,0,0,0-2.66-.52,7.24,7.24,0,0,0-2.66.52,7.16,7.16,0,0,0-2.34,1.56L7.56,19h0A6.88,6.88,0,0,0,6,21.37,7.08,7.08,0,0,0,7.56,29L23,44.42a7.08,7.08,0,0,0,10,0l1.94-1.94,3.72-3.72Z"/><path class="cls-2" d="M59,33.23,43.63,17.84a7.19,7.19,0,0,0-2.34-1.55,7.08,7.08,0,0,0-7.66,1.55l-1.94,1.94L28,23.5l-1,1h0a7,7,0,0,0-2.07,5,7,7,0,0,0,2.07,5l4.22,4.22L34.89,35l-4.23-4.22a2,2,0,0,1-.4-.6,1.87,1.87,0,0,1,0-1.37,1.87,1.87,0,0,1,.4-.59l.46-.47.58-.57,3.72-3.72,1.93-1.93a1.54,1.54,0,0,1,.6-.4,1.72,1.72,0,0,1,1.36,0,1.54,1.54,0,0,1,.6.4L55.3,37a1.72,1.72,0,0,1,.39.6,1.75,1.75,0,0,1,0,1.37,1.68,1.68,0,0,1-.39.59L48.61,46.2a1.91,1.91,0,0,1-.6.4,1.87,1.87,0,0,1-1.37,0,1.87,1.87,0,0,1-.59-.4l-7.44-7.44-3.72,3.72,7.44,7.45a7.08,7.08,0,0,0,2.34,1.55,7,7,0,0,0,2.66.52A7,7,0,0,0,50,51.48a7.29,7.29,0,0,0,2.34-1.55L59,43.23a7.07,7.07,0,0,0,1.55-7.66A7.13,7.13,0,0,0,59,33.23Z"/></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="M52.11,56V53.7H12.46V13.15H10.13V54.87a1.17,1.17,0,0,0,.34.83,1.22,1.22,0,0,0,.83.34Z"/><path class="cls-1" d="M51,17.16H44.32a1.76,1.76,0,0,0,0,3.52h2.32L34.25,35.3l-.06-4.4A1.75,1.75,0,0,0,33,29.28a1.78,1.78,0,0,0-1.94.51L14.87,49a1.76,1.76,0,1,0,2.68,2.27L30.74,35.64l.07,4.4A1.76,1.76,0,0,0,32,41.67a1.78,1.78,0,0,0,1.93-.52L49.28,23v3.16a1.76,1.76,0,0,0,3.51,0V18.92A1.78,1.78,0,0,0,51,17.16Z"/></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="M5.69219 3.79163C5.6922 3.2474 5.84899 2.88699 6.05577 2.6718C6.25142 2.46819 6.54954 2.33329 7.00008 2.33329C7.45063 2.33329 7.74875 2.46819 7.9444 2.6718C8.15118 2.88699 8.30797 3.2474 8.30797 3.79163V4.08329H5.69219V3.79163ZM4.38431 5.24996V6.41663C4.38431 6.73879 4.67709 6.99996 5.03825 6.99996C5.39941 6.99996 5.69219 6.73879 5.69219 6.41663V5.24996H8.30797V6.41663C8.30797 6.73879 8.60075 6.99996 8.96191 6.99996C9.32307 6.99996 9.61586 6.73879 9.61586 6.41663V5.24996H10.9721L11.5254 11.6666H2.47471L3.02805 5.24996H4.38431ZM4.38431 4.08329V3.79163C4.38431 3.05952 4.59522 2.39909 5.06275 1.91254C5.54141 1.4144 6.2242 1.16663 7.00008 1.16663C7.77596 1.16663 8.45876 1.4144 8.93742 1.91254C9.40495 2.39909 9.61586 3.05952 9.61586 3.79163V4.08329H10.9721C11.6555 4.08329 12.2237 4.55265 12.2761 5.16048L12.8295 11.5771C12.8879 12.2547 12.2873 12.8333 11.5254 12.8333H2.47471C1.71285 12.8333 1.11225 12.2547 1.17068 11.5771L1.72401 5.16048C1.77643 4.55265 2.34463 4.08329 3.02805 4.08329H4.38431Z"/>
|
3
|
+
</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:#00d6a0;}</style></defs><g id="Object"><path d="M59.72,30.58a7.5,7.5,0,1,0-7.5,7.5A7.5,7.5,0,0,0,59.72,30.58Z"/><path class="cls-1" d="M50.47,48l.87-5.7h0l-.85-1.57h3.41l-.85,1.57h0L54,48h1l1.61-8.48a3.59,3.59,0,0,0-.47,0H48.29a3.87,3.87,0,0,0-.48,0L49.43,48Z"/><path d="M19.27,30.58a7.5,7.5,0,1,0-7.49,7.5A7.49,7.49,0,0,0,19.27,30.58Z"/><path d="M.39,45.83v3.42h15a10.74,10.74,0,0,1,1.13-4.56v4.56h31V44.64a10.66,10.66,0,0,1,1.16,4.61H63.61V45.83a7,7,0,0,0-7-7H47.88a6.86,6.86,0,0,0-2.08.33A9.6,9.6,0,0,0,37.91,35H26.09a9.6,9.6,0,0,0-7.89,4.13,6.87,6.87,0,0,0-2.09-.33H7.43A7,7,0,0,0,.39,45.83Zm47.9-6.3h7.87a3.59,3.59,0,0,1,.47,0L55,48H54l-.87-5.7h0l.85-1.57H50.52l.85,1.57h0L50.47,48h-1l-1.62-8.48A3.87,3.87,0,0,1,48.29,39.53ZM26.64,36H37.36c.22,0,.43,0,.65,0L35.8,47.6H28.19L26,36C26.21,36,26.42,36,26.64,36ZM7.85,39.53h7.86a3.87,3.87,0,0,1,.48,0L14.57,48h-1l-.87-5.7h0l.85-1.57H10.07l.85,1.57h0L10,48H9L7.37,39.56A3.64,3.64,0,0,1,7.85,39.53Z"/><path class="cls-1" d="M10,48l.87-5.7h0l-.85-1.57h3.41l-.85,1.57h0l.87,5.7h1l1.62-8.48a3.87,3.87,0,0,0-.48,0H7.85a3.64,3.64,0,0,0-.48,0L9,48Z"/><path d="M42.22,23.81A10.22,10.22,0,1,0,32,34,10.23,10.23,0,0,0,42.22,23.81Z"/><path class="cls-1" d="M29.61,47.6l1.19-7.77h0l-1.16-2.14h4.65l-1.17,2.14h0l1.19,7.77H35.8L38,36c-.22,0-.43,0-.65,0H26.64c-.22,0-.43,0-.65,0l2.2,11.56Z"/><polygon class="cls-2" points="33.2 39.83 33.16 39.83 34.33 37.69 29.68 37.69 30.84 39.83 30.8 39.83 29.61 47.6 34.39 47.6 33.2 39.83 33.2 39.83"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><defs><style>.cls-1{fill:#4d4e50;}.cls-2{fill:#fff;}.cls-3{fill:#00d6a0;}</style></defs><g id="Object"><path class="cls-1" d="M59.72,30.58a7.5,7.5,0,1,0-7.5,7.5A7.5,7.5,0,0,0,59.72,30.58Z"/><path class="cls-2" d="M50.47,48l.87-5.7h0l-.85-1.57h3.41l-.85,1.57h0L54,48h1l1.61-8.48a3.59,3.59,0,0,0-.47,0H48.29a3.87,3.87,0,0,0-.48,0L49.43,48Z"/><path class="cls-1" d="M19.27,30.58a7.5,7.5,0,1,0-7.49,7.5A7.49,7.49,0,0,0,19.27,30.58Z"/><path class="cls-1" d="M.39,45.83v3.42h15a10.74,10.74,0,0,1,1.13-4.56v4.56h31V44.64a10.66,10.66,0,0,1,1.16,4.61H63.61V45.83a7,7,0,0,0-7-7H47.88a6.86,6.86,0,0,0-2.08.33A9.6,9.6,0,0,0,37.91,35H26.09a9.6,9.6,0,0,0-7.89,4.13,6.87,6.87,0,0,0-2.09-.33H7.43A7,7,0,0,0,.39,45.83Zm47.9-6.3h7.87a3.59,3.59,0,0,1,.47,0L55,48H54l-.87-5.7h0l.85-1.57H50.52l.85,1.57h0L50.47,48h-1l-1.62-8.48A3.87,3.87,0,0,1,48.29,39.53ZM26.64,36H37.36c.22,0,.43,0,.65,0L35.8,47.6H28.19L26,36C26.21,36,26.42,36,26.64,36ZM7.85,39.53h7.86a3.87,3.87,0,0,1,.48,0L14.57,48h-1l-.87-5.7h0l.85-1.57H10.07l.85,1.57h0L10,48H9L7.37,39.56A3.64,3.64,0,0,1,7.85,39.53Z"/><path class="cls-2" d="M10,48l.87-5.7h0l-.85-1.57h3.41l-.85,1.57h0l.87,5.7h1l1.62-8.48a3.87,3.87,0,0,0-.48,0H7.85a3.64,3.64,0,0,0-.48,0L9,48Z"/><path class="cls-1" d="M42.22,23.81A10.22,10.22,0,1,0,32,34,10.23,10.23,0,0,0,42.22,23.81Z"/><path class="cls-2" d="M29.61,47.6l1.19-7.77h0l-1.16-2.14h4.65l-1.17,2.14h0l1.19,7.77H35.8L38,36c-.22,0-.43,0-.65,0H26.64c-.22,0-.43,0-.65,0l2.2,11.56Z"/><polygon class="cls-3" points="33.2 39.83 33.16 39.83 34.33 37.69 29.68 37.69 30.84 39.83 30.8 39.83 29.61 47.6 34.39 47.6 33.2 39.83 33.2 39.83"/></g></svg>
|
Binary file
|