📦 Laravel Project Structure Root: /home/artemisp/taksamt.ir ├── .editorconfig ├── .env ├── .env.example ├── .htaccess ├── .well-known │ └── acme-challenge ├── CHANGELOG.md ├── README.md ├── app │ ├── Channels │ │ └── CustomDatabaseChannel.php │ ├── Console │ │ ├── Commands │ │ │ └── ExtractTranslations.php │ │ └── Kernel.php │ ├── Enums │ │ ├── AdvertiseStatusEnum.php │ │ ├── AdvertiseTypeAttributeTypeEnum.php │ │ ├── AdvertiseTypeEnum.php │ │ ├── CommentTypeEnum.php │ │ ├── ConversationType.php │ │ ├── OrderPaymentTypeEnum.php │ │ ├── OrderStatusEnum.php │ │ ├── OrderTypeEnum.php │ │ ├── PaymentStatusEnum.php │ │ ├── PaymentStepEnum.php │ │ ├── PostStatusEnum.php │ │ ├── SubscriptionPlanStatusEnum.php │ │ ├── SubscriptionPlanTypeEnum.php │ │ ├── TermType.php │ │ ├── TicketCategoryEnum.php │ │ ├── TicketStatusEnum.php │ │ ├── WalletSettlementsStatusEnum.php │ │ └── WalletTypeEnum.php │ ├── Events │ │ ├── Advertise │ │ │ ├── AdvertiseCreated.php │ │ │ ├── AdvertiseDemandRequest.php │ │ │ ├── AdvertiseNewComment.php │ │ │ └── AdvertiseStatusUpadted.php │ │ ├── EntityDisLikedEvent.php │ │ ├── EntityLikedEvent.php │ │ ├── PaymentPied.php │ │ ├── Team │ │ │ └── TeamCreated.php │ │ ├── TeamFollowedEvent.php │ │ ├── TeamUnFollowedEvent.php │ │ ├── UserLoggedIn.php │ │ └── UserVisitAdvertisement.php │ ├── Exceptions │ │ ├── AlreadyFollowingException.php │ │ ├── ApiExpiredException.php │ │ ├── ApiHandler.php │ │ ├── Handler.php │ │ ├── Order │ │ │ ├── OrderCompletedException.php │ │ │ └── OrderTypeNotFoundException.php │ │ ├── OtpException.php │ │ ├── Payment │ │ │ ├── GatewayNotFoundException.php │ │ │ ├── PaymentCreationException.php │ │ │ ├── PaymentRedirectException.php │ │ │ └── PaymentVerificationException.php │ │ ├── PropertyNotFoundException.php │ │ └── error_log │ ├── Facades │ │ ├── AdvertiseFilter.php │ │ └── File.php │ ├── Http │ │ ├── Controllers │ │ │ ├── Admin │ │ │ │ ├── AdminDashboardController.php │ │ │ │ ├── Advertise │ │ │ │ │ ├── AdvertiseController.php │ │ │ │ │ ├── AdvertiseTypeAttributesController.php │ │ │ │ │ ├── AdvertiseTypeAttributesItemController.php │ │ │ │ │ ├── AdvertiseTypeController.php │ │ │ │ │ ├── AdvertisementSubmissionController.php │ │ │ │ │ └── OrderController.php │ │ │ │ ├── AdvertiseAdditionalFeatureController.php │ │ │ │ ├── FinancialController.php │ │ │ │ ├── FormBuilderController.php │ │ │ │ ├── PackageController.php │ │ │ │ ├── PageController.php │ │ │ │ ├── PermissionController.php │ │ │ │ ├── PlanController.php │ │ │ │ ├── PostController.php │ │ │ │ ├── RoleController.php │ │ │ │ ├── Settings │ │ │ │ │ ├── MenuBuilderAction.php │ │ │ │ │ └── SettingController.php │ │ │ │ ├── SubscriptionController.php │ │ │ │ ├── TeamController.php │ │ │ │ ├── TeamTypeController.php │ │ │ │ ├── TicketController.php │ │ │ │ ├── TicketMessageController.php │ │ │ │ ├── UserManagementController.php │ │ │ │ ├── Wallet │ │ │ │ │ └── TomanWalletController.php │ │ │ │ └── WalletSettlementsController.php │ │ │ ├── Auth │ │ │ │ ├── AdminLoginController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── LogoutController.php │ │ │ │ ├── NewPasswordController.php │ │ │ │ ├── OtpAuthController.php │ │ │ │ ├── PasswordResetLinkController.php │ │ │ │ └── RegisterController.php │ │ │ ├── Controller.php │ │ │ ├── Development │ │ │ │ ├── DevelopmentController.php │ │ │ │ └── InstallController.php │ │ │ ├── Install │ │ │ ├── LangController.php │ │ │ ├── PaymentCallBackController.php │ │ │ ├── PaymentController.php │ │ │ ├── RequestController.php │ │ │ ├── SessionProvinceController.php │ │ │ ├── SubmitFormController.php │ │ │ ├── Term │ │ │ │ ├── CategoryController.php │ │ │ │ └── TagController.php │ │ │ ├── UserOptionController.php │ │ │ ├── UserProfileController.php │ │ │ ├── api │ │ │ │ └── v1 │ │ │ │ ├── AdvertiseAppointmentController.php │ │ │ │ ├── AdvertiseBuyerController.php │ │ │ │ ├── AdvertiseController.php │ │ │ │ ├── AdvertiseFilter.php │ │ │ │ ├── AdvertiseFilterOptionsController.php │ │ │ │ ├── AdvertiseReportController.php │ │ │ │ ├── AdvertiseTypeAttributesController.php │ │ │ │ ├── AdvertiseViewController.php │ │ │ │ ├── AdvertiseVisitorController.php │ │ │ │ ├── AppSettingsController.php │ │ │ │ ├── Auth │ │ │ │ │ ├── LoginUserController.php │ │ │ │ │ ├── LogoutUserController.php │ │ │ │ │ ├── OptAuthController.php │ │ │ │ │ └── RegisterUserController.php │ │ │ │ ├── CategoryList.php │ │ │ │ ├── CityController.php │ │ │ │ ├── CommentController.php │ │ │ │ ├── ConversationController.php │ │ │ │ ├── ErrorLogController.php │ │ │ │ ├── FavoritesController.php │ │ │ │ ├── FeedController.php │ │ │ │ ├── FollowController.php │ │ │ │ ├── LikeController.php │ │ │ │ ├── OrderSubmitController.php │ │ │ │ ├── PackageController.php │ │ │ │ ├── PaymentController.php │ │ │ │ ├── PhoneBookController.php │ │ │ │ ├── ProductSinglePageController.php │ │ │ │ ├── ProvinceController.php │ │ │ │ ├── SaveController.php │ │ │ │ ├── StoreProductCommentController.php │ │ │ │ ├── SubscriptionController.php │ │ │ │ ├── TeamController.php │ │ │ │ ├── TermController.php │ │ │ │ ├── UserAddressController.php │ │ │ │ ├── UserController.php │ │ │ │ ├── UserWalletController.php │ │ │ │ ├── UserWalletSettlementController.php │ │ │ │ └── shop │ │ │ │ └── singleProductController.php │ │ │ └── web │ │ │ ├── AdvertiseDetailsController.php │ │ │ ├── AdvertiseFeaturesController.php │ │ │ ├── AdvertisementSubmissionController.php │ │ │ ├── BlogController.php │ │ │ ├── ContactUsFormSubmissionController.php │ │ │ ├── ConversationController.php │ │ │ ├── SubscriptionController.php │ │ │ ├── TeamProfileDetailsController.php │ │ │ ├── TeamProfileListController.php │ │ │ └── user │ │ │ ├── AdvertiseToggleLikeController.php │ │ │ ├── AdvertiseToggleSaveController.php │ │ │ ├── FollowerToggleController.php │ │ │ ├── SwitchUserTeamController.php │ │ │ ├── UserAdvertiseController.php │ │ │ ├── UserTeamController.php │ │ │ └── WalletController.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ ├── ApiLanguageManager.php │ │ │ ├── Authenticate.php │ │ │ ├── CheckProvinceSession.php │ │ │ ├── CheckToken.php │ │ │ ├── CheckUserAuthMiddleware.php │ │ │ ├── EncryptCookies.php │ │ │ ├── FilterSessionMiddleware.php │ │ │ ├── LanguageManager.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── SiteStatusCheck.php │ │ │ ├── TeamAuthMiddleware.php │ │ │ ├── TeamRequestCheckMiddleware.php │ │ │ ├── TeamSessionMiddleware.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ │ ├── Requests │ │ │ ├── Admin │ │ │ │ ├── Shop │ │ │ │ │ └── AdvertiseTypeAttributesStoreRequest.php │ │ │ │ └── User │ │ │ │ └── UserUpdateRequest.php │ │ │ ├── AdvertiseRequest.php │ │ │ ├── Client │ │ │ │ └── ClientAddressRequest.php │ │ │ ├── StoreCommentRequest.php │ │ │ ├── TeamCreateRequest.php │ │ │ ├── UpdateCommentRequest.php │ │ │ └── api │ │ │ ├── TermIndexRequest.php │ │ │ └── v1 │ │ │ ├── Advertise │ │ │ │ ├── AdvertiseIndexRequest.php │ │ │ │ ├── AdvertiseRequest.php │ │ │ │ ├── StoreAdvertiseAppointmentRequest.php │ │ │ │ └── UpdateAdvertiseAppointmentRequest.php │ │ │ ├── CityIndexRequest.php │ │ │ ├── Conversation │ │ │ │ ├── ConversationMessageStoreRequest.php │ │ │ │ └── ConversationStoreRequest.php │ │ │ ├── CreateTermRequest.php │ │ │ ├── OrderStoreRequest.php │ │ │ ├── Payment │ │ │ │ ├── PaymentIndexRequest.php │ │ │ │ ├── PaymentRedirectRequest.php │ │ │ │ └── PaymentStoreRequest.php │ │ │ ├── StoreAdvertiseBuyerRequest.php │ │ │ ├── StoreAdvertiseReportRequest.php │ │ │ ├── StoreAdvertiseVisitorRequest.php │ │ │ ├── StoreContactRequest.php │ │ │ ├── StoreProductCommentRequest.php │ │ │ ├── SubscriptionPurchaseRequest.php │ │ │ ├── Team │ │ │ │ ├── TeamIndexRequest.php │ │ │ │ └── TeamMembershipRequest.php │ │ │ ├── ToggleFavoritesRequest.php │ │ │ ├── UpdateAdvertiseBuyerRequest.php │ │ │ ├── UpdateAdvertiseReportRequest.php │ │ │ ├── UpdateAdvertiseVisitorRequest.php │ │ │ ├── UpdateContactRequest.php │ │ │ ├── UserAddressRequest.php │ │ │ ├── UserAddressStoreRequest.php │ │ │ ├── UserDriverProfileRequest.php │ │ │ ├── UserProfileRequest.php │ │ │ ├── UserWalletRequest.php │ │ │ ├── VerifyOtpRequest.php │ │ │ └── auth │ │ │ └── VerifyOtpRequest.php │ │ ├── Resources │ │ │ ├── Advertise │ │ │ ├── AdvertiseAppointmentResource.php │ │ │ ├── AdvertiseVisitorResource.php │ │ │ ├── CommentResource.php │ │ │ ├── FeedIndexResource.php │ │ │ ├── FollowersListResource.php │ │ │ ├── FollowingListResource.php │ │ │ ├── PaymentsCollection.php │ │ │ ├── PaymentsResource.php │ │ │ ├── SavableIndexResource.php │ │ │ ├── TermIndexResource.php │ │ │ ├── TermSingleResource.php │ │ │ ├── TermableIndexResource.php │ │ │ ├── UserResource.php │ │ │ └── api │ │ │ └── v1 │ │ │ ├── Advertise │ │ │ │ ├── AdvertiseAttributes.php │ │ │ │ ├── AdvertiseAttributesValue.php │ │ │ │ └── SingleAdvertiseResource.php │ │ │ ├── AdvertiseBuyerResource.php │ │ │ ├── AdvertiseEditResource.php │ │ │ ├── AdvertiseFilterOptionsResource.php │ │ │ ├── AdvertiseIndexResource.php │ │ │ ├── AdvertiseReportResource.php │ │ │ ├── AdvertiseSingleResource.php │ │ │ ├── AdvertiseTypResource.php │ │ │ ├── AdvertiseTypeAttributesResource.php │ │ │ ├── CategoriesResource.php │ │ │ ├── CityResource.php │ │ │ ├── CommentResource.php │ │ │ ├── ContactResource.php │ │ │ ├── Conversation │ │ │ │ ├── ConversationIndexResource.php │ │ │ │ ├── ConversationMessageResource.php │ │ │ │ └── ConversationSingleResource.php │ │ │ ├── OrderPaymentResource.php │ │ │ ├── Package │ │ │ │ ├── PackagePlansResource.php │ │ │ │ ├── UserPackageIndexResource.php │ │ │ │ └── UserPackageSingleResource.php │ │ │ ├── PaymentIndexResource.php │ │ │ ├── PaymentSingleResource.php │ │ │ ├── ProvinceResource.php │ │ │ ├── ShopUserProfileResource.php │ │ │ ├── Subscription │ │ │ │ ├── SubscriptionIndexResource.php │ │ │ │ ├── SubscriptionPlansResource.php │ │ │ │ └── SubscriptionSingleResource.php │ │ │ ├── TeamResource.php │ │ │ └── UserResource.php │ │ └── error_log │ ├── Listeners │ │ ├── AddAdvertiseToUserHistory.php │ │ ├── Auth │ │ │ ├── CreateTeamForUser.php │ │ │ └── CreateWalletsForUser.php │ │ ├── EntityDisLikedEventListener.php │ │ ├── EntityLikedEventListener.php │ │ ├── PaymentPiedListener.php │ │ ├── SendAdvertiseCreatedNotification.php │ │ ├── SendAdvertiseDemandRequestNotification.php │ │ ├── SendAdvertiseNewCommentNotification.php │ │ ├── Team │ │ │ └── SendTeamCreatedNotification.php │ │ ├── TeamFollowedListener.php │ │ └── TeamUnFollowedListener.php │ ├── Livewire │ │ ├── Advertise │ │ │ └── CreateAdvertiseForm.php │ │ ├── Alizam │ │ │ ├── AdvertiseList.php │ │ │ ├── Drawer.php │ │ │ ├── Drawers │ │ │ │ ├── Filters.php │ │ │ │ ├── Notifications.php │ │ │ │ └── Provinces.php │ │ │ ├── Panel.php │ │ │ └── Panels │ │ │ ├── AdvertiseSubmissionForm.php │ │ │ ├── Comment.php │ │ │ ├── CreateDemandAdvertisement.php │ │ │ ├── Notifications.php │ │ │ └── Submission │ │ │ ├── FormInputs.php │ │ │ └── SelectCategory.php │ │ ├── Auth │ │ │ ├── LoginForm.php │ │ │ ├── LoginIdentifier.php │ │ │ ├── LoginPassword.php │ │ │ ├── LoginVerification.php │ │ │ └── RegisterForm.php │ │ ├── Forms │ │ │ └── AdvertiseForm.php │ │ └── User │ │ └── ConversationShow.php │ ├── Mail │ │ ├── TeamInvitationMail.php │ │ └── VerificationCode.php │ ├── Models │ │ ├── Address.php │ │ ├── Advertise.php │ │ ├── AdvertiseAdditionalFeature.php │ │ ├── AdvertiseAppointment.php │ │ ├── AdvertiseBuyer.php │ │ ├── AdvertiseFeature.php │ │ ├── AdvertiseMeta.php │ │ ├── AdvertiseReport.php │ │ ├── AdvertiseType.php │ │ ├── AdvertiseTypeAttributes.php │ │ ├── AdvertiseTypeAttributesItem.php │ │ ├── AdvertiseTypeAttributesValue.php │ │ ├── AdvertiseView.php │ │ ├── AdvertiseVisitor.php │ │ ├── AppSetting.php │ │ ├── City.php │ │ ├── Comment.php │ │ ├── Contact.php │ │ ├── ContactUs.php │ │ ├── Contracts │ │ │ └── Settable.php │ │ ├── Conversation.php │ │ ├── County.php │ │ ├── Coupon.php │ │ ├── District.php │ │ ├── Form.php │ │ ├── FormFields.php │ │ ├── FormSubmissions.php │ │ ├── Hashtag.php │ │ ├── Like.php │ │ ├── Media.php │ │ ├── Message.php │ │ ├── Messages.php │ │ ├── Notification.php │ │ ├── Order.php │ │ ├── OrderItem.php │ │ ├── OrderMeta.php │ │ ├── Otp.php │ │ ├── Package.php │ │ ├── Page.php │ │ ├── PageVersion.php │ │ ├── Participant.php │ │ ├── Payment.php │ │ ├── PaymentStep.php │ │ ├── PersonalAccessToken.php │ │ ├── Plan.php │ │ ├── Post.php │ │ ├── Province.php │ │ ├── RealEstateProfile.php │ │ ├── Request.php │ │ ├── Rural.php │ │ ├── Save.php │ │ ├── Scopes │ │ │ ├── IsActive.php │ │ │ └── ProductInventoryScope.php │ │ ├── Setting.php │ │ ├── ShopOption.php │ │ ├── SiteOption.php │ │ ├── Status.php │ │ ├── Subscription.php │ │ ├── Team.php │ │ ├── TeamFollower.php │ │ ├── TeamInvitation.php │ │ ├── TeamType.php │ │ ├── TeamUser.php │ │ ├── Term.php │ │ ├── Termable.php │ │ ├── Ticket.php │ │ ├── TicketMessage.php │ │ ├── User.php │ │ ├── UserOption.php │ │ ├── UserPackage.php │ │ ├── UserPackageUsage.php │ │ ├── Wallet.php │ │ ├── WalletSettlement.php │ │ └── WalletTransaction.php │ ├── Notifications │ │ ├── Advertise │ │ │ ├── AdvertiseCreatedNotification.php │ │ │ ├── AdvertiseDemandRequestNotification.php │ │ │ └── AdvertiseNewCommentNotification.php │ │ └── Team │ │ └── TeamCreatedNotification.php │ ├── Observers │ │ ├── AdvertiseObserver.php │ │ ├── ConversationObserver.php │ │ ├── MessageAttachmentObserver.php │ │ └── MessageObserver.php │ ├── Policies │ │ ├── AdvertisePolicy.php │ │ ├── PlanPolicy.php │ │ ├── SubscriptionPolicy.php │ │ ├── TeamInvitationPolicy.php │ │ ├── TeamPolicy.php │ │ └── TeamUserPolicy.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── FeaturesServiceProvider.php │ │ ├── MacroServiceProvider.php │ │ ├── RouteServiceProvider.php │ │ ├── SchemaMacroServiceProvider.php │ │ ├── TelescopeServiceProvider.php │ │ └── ThemeServiceProvider.php │ ├── Rules │ │ ├── AdvertiseAttributeValueRangeArrayRule.php │ │ ├── CityBelongsToGivenProvince.php │ │ ├── ExistsInAdvertiseOrPost.php │ │ ├── MatchCurrentPassword.php │ │ ├── MediaFile.php │ │ ├── SwitchInput.php │ │ ├── ValidAttribute.php │ │ └── userExistInTeam.php │ ├── Scopes │ │ └── LatestScope.php │ ├── Services │ │ ├── AdvertiseFilterService.php │ │ ├── ConversationService.php │ │ ├── FarazSmsService.php │ │ ├── FeedService.php │ │ ├── FollowService.php │ │ ├── FormBuilderService.php │ │ ├── ImageConversionService.php │ │ ├── Models │ │ │ └── SettingService.php │ │ ├── OrderHandler.php │ │ ├── OrderItemService.php │ │ ├── OrderService.php │ │ ├── OtpService.php │ │ ├── Payment │ │ │ ├── Gateways │ │ │ │ ├── BitPayService.php │ │ │ │ ├── Gateway.php │ │ │ │ └── GatewayInterface.php │ │ │ ├── PaymentService.php │ │ │ └── PaymentStepService.php │ │ ├── SaveService.php │ │ ├── Shop │ │ │ └── AdvertiseService.php │ │ ├── ShopUserService.php │ │ ├── SiteOption │ │ │ └── HomePageService.php │ │ ├── SweetAlert.php │ │ ├── TermService.php │ │ ├── UploadService.php │ │ ├── UserService.php │ │ └── api │ │ └── v1 │ │ └── Models │ │ ├── Advertise │ │ │ ├── AdvertiseAttributeService.php │ │ │ ├── AdvertiseFeaturesService.php │ │ │ ├── AdvertiseMetaService.php │ │ │ └── AdvertiseService.php │ │ ├── PackageService.php │ │ ├── SubscriptionService.php │ │ └── TeamService.php │ ├── Support │ │ ├── HashtagExtractor.php │ │ ├── PersianSlug.php │ │ └── SweetRedirectResponse.php │ ├── Traits │ │ ├── Commentable.php │ │ ├── EnumToArray.php │ │ ├── HasApiToken.php │ │ ├── HasEnumHelpers.php │ │ ├── HasJson.php │ │ ├── HasMeta.php │ │ ├── HasNotifications.php │ │ ├── HasPackage.php │ │ ├── HasStatistics.php │ │ ├── HasStatus.php │ │ ├── HasSubscription.php │ │ ├── HasTeam.php │ │ ├── HasTrackingCode.php │ │ ├── Hashtagable.php │ │ ├── Likeable.php │ │ ├── ModelField.php │ │ ├── MultiTenantModelTrait.php │ │ ├── PaginatesResponses.php │ │ ├── Savable.php │ │ └── Termable.php │ ├── View │ │ └── Components │ │ ├── Syndron │ │ │ └── AdminSidebarMenu.php │ │ └── form │ │ ├── CommentPost.php │ │ ├── CommentProduct.php │ │ └── input │ │ └── CategoryPicker.php │ └── helpers │ └── helpers.php ├── artisan ├── bootstrap │ ├── app.php │ └── error_log ├── composer.json ├── composer.lock ├── config │ ├── apg_payment.php │ ├── app.php │ ├── auth.php │ ├── blade-icons.php │ ├── broadcasting.php │ ├── cache.php │ ├── comment.php │ ├── cors.php │ ├── database.php │ ├── debugbar.php │ ├── error_log │ ├── features.php │ ├── filesystems.php │ ├── follow.php │ ├── hashing.php │ ├── laravelpwa.php │ ├── livewire.php │ ├── logging.php │ ├── mail.php │ ├── markdown.php │ ├── modules.php │ ├── payment.php │ ├── permission.php │ ├── queue.php │ ├── sanctum.php │ ├── save.php │ ├── services.php │ ├── session.php │ ├── settings.php │ ├── telescope.php │ ├── term.php │ ├── translations.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ ├── AdvertiseFactory.php │ │ ├── AdvertiseTypeAttributesFactory.php │ │ ├── AdvertiseTypeFactory.php │ │ ├── CityFactory.php │ │ ├── CommentFactory.php │ │ ├── ConversationFactory.php │ │ ├── MessagesFactory.php │ │ ├── ParticipantFactory.php │ │ ├── PaymentFactory.php │ │ ├── ProvinceFactory.php │ │ ├── TeamFactory.php │ │ ├── TeamUserFactory.php │ │ ├── TermFactory.php │ │ └── UserFactory.php │ ├── json │ │ ├── categories.json │ │ ├── cities.json │ │ ├── counties.json │ │ ├── districts.json │ │ ├── provinces.json │ │ ├── rurals.json │ │ └── taksamt.json │ ├── migrations │ │ ├── 2026_01_04_154853_update_otps_table.php │ │ ├── 2026_01_07_102612_create_settings_table.php │ │ ├── 2026_01_07_143631_update_posts_table_structure.php │ │ ├── 2026_01_08_140405_create_pages_table.php │ │ ├── 2026_01_08_142329_create_page_versions_table.php │ │ ├── 2026_01_08_200212_update_advertises_tabel.php │ │ ├── 2026_05_06_101320_update_advertise_types_tabel.php │ │ ├── 2026_06_06_103322_update_chat_system.php │ │ ├── 2026_07_07_124136_create_team_types_table.php │ │ ├── 2026_07_17_141303_update_chat_system.php │ │ ├── 2026_07_17_142011_update_advertises_tabel.php │ │ ├── 2026_07_22_091910_create_hashtags_table.php │ │ ├── 2026_07_23_112112_update_teams_tabel.php │ │ └── v1 │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ │ ├── 2018_08_08_100000_create_telescope_entries_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2023_10_18_152523_create_permission_tables.php │ │ ├── 2023_10_23_071256_options.php │ │ ├── 2023_10_23_071257_create_terms_table.php │ │ ├── 2023_10_23_071258_create_termables_table.php │ │ ├── 2023_10_23_071259_create_statuses_table.php │ │ ├── 2023_10_23_075408_create_addresses_table.php │ │ ├── 2023_11_10_110796_create_advertise_types_table.php │ │ ├── 2023_11_10_110797_create_advertise_type_attributes_table.php │ │ ├── 2023_11_10_110798_create_advertise_type_attributes_items_table.php │ │ ├── 2023_11_10_110801_create_advertises_table.php │ │ ├── 2023_11_10_110802_create_advertise_type_attributes_values_table.php │ │ ├── 2023_12_01_152449_create_team.php │ │ ├── 2023_12_02_075033_create_likes_table.php │ │ ├── 2023_12_02_075201_create_comments_table.php │ │ ├── 2023_12_02_080223_create_otps_table.php │ │ ├── 2023_12_15_135827_create_media_table.php │ │ ├── 2023_12_17_124813_create_wallet.php │ │ ├── 2023_12_17_125819_create_payments_table.php │ │ ├── 2024_01_05_233513_create_coupons_table.php │ │ ├── 2024_01_05_233514_create_order.php │ │ ├── 2024_01_24_194928_create_form_tables.php │ │ ├── 2024_02_01_211136_create_ticket.php │ │ ├── 2024_03_22_144524_create_languages_table.php │ │ ├── 2024_03_22_144525_create_translations_table.php │ │ ├── 2024_03_22_144526_create_translation_files_table.php │ │ ├── 2024_03_22_144527_create_phrases_table.php │ │ ├── 2024_03_22_144528_create_contributors_table.php │ │ ├── 2024_03_22_144530_create_invites_table.php │ │ ├── 2024_03_22_144531_add_is_root_to_translation_files_table.php │ │ ├── 2024_04_15_114857_create_posts_table.php │ │ ├── 2024_07_04_151944_create_chat.php │ │ ├── 2024_07_28_151318_create_subscription.php │ │ ├── 2024_08_01_104705_create_provinces_table.php │ │ ├── 2024_08_01_110021_create_counties_table.php │ │ ├── 2024_08_01_110119_create_rurals_table.php │ │ ├── 2024_08_01_110120_create_districts_table.php │ │ ├── 2024_08_01_110121_create_cities_table.php │ │ ├── 2024_08_27_111648_create_packages.php │ │ ├── 2024_08_27_135500_create_advertise_additional_features_table.php │ │ ├── 2024_08_27_135727_create_advertise_feature_table.php │ │ ├── 2024_09_12_131712_create_contact_us_table.php │ │ ├── 2024_10_14_135625_create_real_estate_profiles_table.php │ │ ├── 2024_12_08_155655_create_team_followers_table.php │ │ ├── 2024_12_15_174030_create_saves_table.php │ │ ├── 2024_12_22_225234_create_advertise_views_table.php │ │ ├── 2025_02_01_105503_create_sessions_table.php │ │ ├── 2025_02_10_000815_create_advertise_advertise_visitors_table.php │ │ ├── 2025_02_10_003137_create_advertise_buyers_table.php │ │ ├── 2025_02_10_004447_create_advertise_appointments_table.php │ │ ├── 2025_02_10_113443_create_advertise_reports_table.php │ │ ├── 2025_02_10_115912_create_contacts_table.php │ │ └── 2025_03_08_175650_create_notifications_table.php │ └── seeders │ ├── AdminUserSeeder.php │ ├── AdvertiseCategorySeeder.php │ ├── AdvertiseCategoryTaksamtSeeder.php │ ├── AdvertisementAdditionalFeaturesSeeder.php │ ├── DatabaseSeeder.php │ ├── PackagePlansSeeder.php │ ├── PermissionSeeder.php │ ├── ProvinceSeeder.php │ ├── RoleSeeder.php │ ├── SiteOptionsSeeder.php │ ├── StatusesSeeder.php │ ├── SubscriptionPlansSeeder.php │ └── error_log ├── docs │ ├── Create-Advertise.md │ ├── Database.md │ ├── Documents │ │ └── Api │ │ └── v1 │ │ ├── Advertisement.md │ │ ├── Conversation.md │ │ ├── Package.md │ │ ├── Payment.md │ │ ├── Subscription.md │ │ └── Team.md │ ├── Part-that-need-to-be-check.md │ ├── Task.md │ ├── images │ │ ├── advertise-db-diragram.png │ │ ├── advertise-type-data-example.png │ │ ├── app-pages-advertise-submit-form-2.png │ │ └── app-pages-advertise-submit-form.png │ └── v2 │ ├── 00-overview.md │ └── 04-migration-rules.md ├── folder_structure.php ├── folder_structure.txt ├── lang │ ├── ar │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── ar.json │ ├── en │ │ ├── api.php │ │ ├── auth.php │ │ ├── message.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ ├── payment.php │ │ └── validation.php │ ├── fa │ │ ├── auth.php │ │ ├── class_name.php │ │ ├── comment-status.php │ │ ├── dictionary.php │ │ ├── message.php │ │ ├── order_status.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── fa.json ├── marketplace-main.zip ├── package-lock.json ├── package.json ├── packages │ └── Sms │ └── src │ ├── Contracts │ │ └── SmsProviderInterface.php │ ├── Exceptions │ │ └── SmsConfigurationException.php │ ├── Facades │ │ └── Sms.php │ ├── Providers │ │ ├── FarazsmsProvider.php │ │ ├── IPPanelProvider.php │ │ └── NajvaSmsProvider.php │ └── SmsManager.php ├── phpunit.xml ├── resources │ ├── css │ │ ├── admin │ │ │ └── main.css │ │ ├── alizam.css │ │ ├── app.css │ │ ├── comment-text-input.css │ │ ├── font.css │ │ ├── main.css │ │ ├── perfect-scrollbar.css │ │ ├── stepper.css │ │ ├── ui │ │ │ ├── btnRippleEffect.css │ │ │ ├── button.css │ │ │ ├── card.css │ │ │ ├── form-rate-input.css │ │ │ ├── form.css │ │ │ └── loaders.css │ │ ├── upload-input-v2.css │ │ └── upload-input.css │ ├── fonts │ │ ├── IRANSans-5.5 │ │ │ ├── EN_numerals │ │ │ │ ├── IRANSansWeb.eot │ │ │ │ ├── IRANSansWeb.ttf │ │ │ │ ├── IRANSansWeb.woff │ │ │ │ ├── IRANSansWeb.woff2 │ │ │ │ ├── IRANSansWeb_Black.eot │ │ │ │ ├── IRANSansWeb_Black.ttf │ │ │ │ ├── IRANSansWeb_Black.woff │ │ │ │ ├── IRANSansWeb_Black.woff2 │ │ │ │ ├── IRANSansWeb_Bold.eot │ │ │ │ ├── IRANSansWeb_Bold.ttf │ │ │ │ ├── IRANSansWeb_Bold.woff │ │ │ │ ├── IRANSansWeb_Bold.woff2 │ │ │ │ ├── IRANSansWeb_Light.eot │ │ │ │ ├── IRANSansWeb_Light.ttf │ │ │ │ ├── IRANSansWeb_Light.woff │ │ │ │ ├── IRANSansWeb_Light.woff2 │ │ │ │ ├── IRANSansWeb_Medium.eot │ │ │ │ ├── IRANSansWeb_Medium.ttf │ │ │ │ ├── IRANSansWeb_Medium.woff │ │ │ │ ├── IRANSansWeb_Medium.woff2 │ │ │ │ ├── IRANSansWeb_UltraLight.eot │ │ │ │ ├── IRANSansWeb_UltraLight.ttf │ │ │ │ ├── IRANSansWeb_UltraLight.woff │ │ │ │ └── IRANSansWeb_UltraLight.woff2 │ │ │ └── Farsi_numerals │ │ │ ├── eot │ │ │ │ ├── IRANSansWeb_FaNum_.eot │ │ │ │ ├── IRANSansWeb_FaNum__Black.eot │ │ │ │ ├── IRANSansWeb_FaNum__Bold.eot │ │ │ │ ├── IRANSansWeb_FaNum__Light.eot │ │ │ │ ├── IRANSansWeb_FaNum__Medium.eot │ │ │ │ └── IRANSansWeb_FaNum__UltraLight.eot │ │ │ ├── ttf │ │ │ │ ├── IRANSansWeb_FaNum_.ttf │ │ │ │ ├── IRANSansWeb_FaNum__Black.ttf │ │ │ │ ├── IRANSansWeb_FaNum__Bold.ttf │ │ │ │ ├── IRANSansWeb_FaNum__Light.ttf │ │ │ │ ├── IRANSansWeb_FaNum__Medium.ttf │ │ │ │ └── IRANSansWeb_FaNum__UltraLight.ttf │ │ │ ├── woff │ │ │ │ ├── IRANSansWeb_FaNum_.woff │ │ │ │ ├── IRANSansWeb_FaNum__Black.woff │ │ │ │ ├── IRANSansWeb_FaNum__Bold.woff │ │ │ │ ├── IRANSansWeb_FaNum__Light.woff │ │ │ │ ├── IRANSansWeb_FaNum__Medium.woff │ │ │ │ └── IRANSansWeb_FaNum__UltraLight.woff │ │ │ └── woff2 │ │ │ ├── IRANSansWeb_FaNum_.woff2 │ │ │ ├── IRANSansWeb_FaNum__Black.woff2 │ │ │ ├── IRANSansWeb_FaNum__Bold.woff2 │ │ │ ├── IRANSansWeb_FaNum__Light.woff2 │ │ │ ├── IRANSansWeb_FaNum__Medium.woff2 │ │ │ └── IRANSansWeb_FaNum__UltraLight.woff2 │ │ ├── IRANYekan │ │ │ ├── eot │ │ │ │ ├── IRANYekanWebBlack.eot │ │ │ │ ├── IRANYekanWebBold.eot │ │ │ │ ├── IRANYekanWebExtraBlack.eot │ │ │ │ ├── IRANYekanWebExtraBold.eot │ │ │ │ ├── IRANYekanWebLight.eot │ │ │ │ ├── IRANYekanWebMedium.eot │ │ │ │ ├── IRANYekanWebRegular.eot │ │ │ │ └── IRANYekanWebThin.eot │ │ │ ├── ttf │ │ │ │ ├── IRANYekanWebBlack.ttf │ │ │ │ ├── IRANYekanWebBold.ttf │ │ │ │ ├── IRANYekanWebExtraBlack.ttf │ │ │ │ ├── IRANYekanWebExtraBold.ttf │ │ │ │ ├── IRANYekanWebLight.ttf │ │ │ │ ├── IRANYekanWebMedium.ttf │ │ │ │ ├── IRANYekanWebRegular.ttf │ │ │ │ └── IRANYekanWebThin.ttf │ │ │ ├── woff │ │ │ │ ├── IRANYekanWebBlack.woff │ │ │ │ ├── IRANYekanWebBold.woff │ │ │ │ ├── IRANYekanWebExtraBlack.woff │ │ │ │ ├── IRANYekanWebExtraBold.woff │ │ │ │ ├── IRANYekanWebLight.woff │ │ │ │ ├── IRANYekanWebMedium.woff │ │ │ │ ├── IRANYekanWebRegular.woff │ │ │ │ └── IRANYekanWebThin.woff │ │ │ └── woff2 │ │ │ ├── IRANYekanWebBlack.woff2 │ │ │ ├── IRANYekanWebBold.woff2 │ │ │ ├── IRANYekanWebExtraBlack.woff2 │ │ │ ├── IRANYekanWebExtraBold.woff2 │ │ │ ├── IRANYekanWebLight.woff2 │ │ │ ├── IRANYekanWebMedium.woff2 │ │ │ ├── IRANYekanWebRegular.woff2 │ │ │ └── IRANYekanWebThin.woff2 │ │ └── IranSansX_Eco_ │ │ ├── En-Namber │ │ │ ├── woff │ │ │ │ ├── IRANSansX-Bold.woff │ │ │ │ └── IRANSansX-Regular.woff │ │ │ └── woff2 │ │ │ ├── IRANSansX-Bold.woff2 │ │ │ └── IRANSansX-Regular.woff2 │ │ └── Fa-Namber │ │ ├── Woff │ │ │ ├── IRANSansXFaNum-Bold.woff │ │ │ └── IRANSansXFaNum-Regular.woff │ │ └── Woff2 │ │ ├── IRANSansXFaNum-Bold.woff2 │ │ └── IRANSansXFaNum-Regular.woff2 │ ├── js │ │ ├── admin │ │ │ └── main.js │ │ ├── alizam.js │ │ ├── alpine-main.js │ │ ├── app.js │ │ ├── basic-map-leafjs-config.js │ │ ├── bootstrap.js │ │ ├── events.js │ │ ├── main.js │ │ ├── modules │ │ │ ├── alpine │ │ │ │ └── drawer.js │ │ │ ├── btnRippleEffect.js │ │ │ ├── helpers.js │ │ │ ├── jalali-date.js │ │ │ ├── leave-guard.js │ │ │ ├── scroll.js │ │ │ ├── share.js │ │ │ ├── sweetalert2.js │ │ │ └── swiper.js │ │ ├── perfect-scrollbar.js │ │ ├── province-city-input-handler.js │ │ ├── test.js │ │ ├── toggle-follow.js │ │ ├── toggle-like.js │ │ ├── toggle-save.js │ │ ├── upload-input-v2.js │ │ └── upload-input.js │ ├── svg │ │ └── iconsax │ │ ├── bold │ │ │ ├── 24-support.svg │ │ │ ├── 3d-cube-scan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── 3d-square.svg │ │ │ ├── 3dcube.svg │ │ │ ├── 3square.svg │ │ │ ├── aave-(aave).svg │ │ │ ├── activity.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-square.svg │ │ │ ├── add.svg │ │ │ ├── additem.svg │ │ │ ├── airdrop.svg │ │ │ ├── airplane-square.svg │ │ │ ├── airplane.svg │ │ │ ├── airpod.svg │ │ │ ├── airpods.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-horizontally.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-vertically.svg │ │ │ ├── android.svg │ │ │ ├── ankr-(ankr).svg │ │ │ ├── apple.svg │ │ │ ├── aquarius.svg │ │ │ ├── archive-1.svg │ │ │ ├── archive-2.svg │ │ │ ├── archive-add.svg │ │ │ ├── archive-book.svg │ │ │ ├── archive-minus.svg │ │ │ ├── archive-slash.svg │ │ │ ├── archive-tick.svg │ │ │ ├── archive.svg │ │ │ ├── arrange-circle-2.svg │ │ │ ├── arrange-circle.svg │ │ │ ├── arrange-square-2.svg │ │ │ ├── arrange-square.svg │ │ │ ├── arrow-2.svg │ │ │ ├── arrow-3.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down-1.svg │ │ │ ├── arrow-down-2.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-1.svg │ │ │ ├── arrow-left-2.svg │ │ │ ├── arrow-left-3.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-1.svg │ │ │ ├── arrow-right-2.svg │ │ │ ├── arrow-right-3.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-square.svg │ │ │ ├── arrow-swap-horizontal.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-1.svg │ │ │ ├── arrow-up-2.svg │ │ │ ├── arrow-up-3.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── attach-circle.svg │ │ │ ├── attach-square.svg │ │ │ ├── audio-square.svg │ │ │ ├── augur-(rep).svg │ │ │ ├── autobrightness.svg │ │ │ ├── autonio-(niox).svg │ │ │ ├── avalanche-(avax).svg │ │ │ ├── award.svg │ │ │ ├── back-square.svg │ │ │ ├── backward-10-seconds.svg │ │ │ ├── backward-15-seconds.svg │ │ │ ├── backward-5-seconds.svg │ │ │ ├── backward-item.svg │ │ │ ├── backward.svg │ │ │ ├── bag-2.svg │ │ │ ├── bag-cross-1.svg │ │ │ ├── bag-cross.svg │ │ │ ├── bag-happy.svg │ │ │ ├── bag-tick-2.svg │ │ │ ├── bag-tick.svg │ │ │ ├── bag-timer.svg │ │ │ ├── bag.svg │ │ │ ├── bank.svg │ │ │ ├── barcode.svg │ │ │ ├── battery-3full.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-disable.svg │ │ │ ├── battery-empty-1.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── be.svg │ │ │ ├── bezier.svg │ │ │ ├── bill.svg │ │ │ ├── binance-coin-(bnb).svg │ │ │ ├── binance-usd-(busd).svg │ │ │ ├── bitcoin-(btc).svg │ │ │ ├── bitcoin-card.svg │ │ │ ├── bitcoin-convert.svg │ │ │ ├── bitcoin-refresh.svg │ │ │ ├── blend-2.svg │ │ │ ├── blend.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-2.svg │ │ │ ├── bluetooth-circle.svg │ │ │ ├── bluetooth-rectangle.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur.svg │ │ │ ├── book-1.svg │ │ │ ├── book-saved.svg │ │ │ ├── book-square.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-2.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootsrap.svg │ │ │ ├── box-1.svg │ │ │ ├── box-2.svg │ │ │ ├── box-add.svg │ │ │ ├── box-remove.svg │ │ │ ├── box-search.svg │ │ │ ├── box-tick.svg │ │ │ ├── box-time.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brifecase-cross.svg │ │ │ ├── brifecase-tick.svg │ │ │ ├── brifecase-timer.svg │ │ │ ├── broom.svg │ │ │ ├── brush-1.svg │ │ │ ├── brush-2.svg │ │ │ ├── brush-3.svg │ │ │ ├── brush-4.svg │ │ │ ├── brush.svg │ │ │ ├── bubble.svg │ │ │ ├── bucket-circle.svg │ │ │ ├── bucket-square.svg │ │ │ ├── bucket.svg │ │ │ ├── building-3.svg │ │ │ ├── building-4.svg │ │ │ ├── building.svg │ │ │ ├── buildings-2.svg │ │ │ ├── buildings.svg │ │ │ ├── buliding.svg │ │ │ ├── bus.svg │ │ │ ├── buy-crypto.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-1.svg │ │ │ ├── calendar-2.svg │ │ │ ├── calendar-add.svg │ │ │ ├── calendar-circle.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-remove.svg │ │ │ ├── calendar-search.svg │ │ │ ├── calendar-tick.svg │ │ │ ├── calendar.svg │ │ │ ├── call-add.svg │ │ │ ├── call-calling.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-minus.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-received.svg │ │ │ ├── call-remove.svg │ │ │ ├── call-slash.svg │ │ │ ├── call.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── candle-2.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── card-add.svg │ │ │ ├── card-coin.svg │ │ │ ├── card-edit.svg │ │ │ ├── card-pos.svg │ │ │ ├── card-receive.svg │ │ │ ├── card-remove-1.svg │ │ │ ├── card-remove.svg │ │ │ ├── card-send.svg │ │ │ ├── card-slash.svg │ │ │ ├── card-tick-1.svg │ │ │ ├── card-tick.svg │ │ │ ├── card.svg │ │ │ ├── cardano-(ada).svg │ │ │ ├── cards.svg │ │ │ ├── category-2.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── celo-(celo).svg │ │ │ ├── celsius-(cel)-.svg │ │ │ ├── chainlink-(link).svg │ │ │ ├── chart-1.svg │ │ │ ├── chart-2.svg │ │ │ ├── chart-21.svg │ │ │ ├── chart-3.svg │ │ │ ├── chart-fail.svg │ │ │ ├── chart-square.svg │ │ │ ├── chart-success.svg │ │ │ ├── chart.svg │ │ │ ├── check.svg │ │ │ ├── chrome.svg │ │ │ ├── civic-(cvc).svg │ │ │ ├── clipboard-close.svg │ │ │ ├── clipboard-export.svg │ │ │ ├── clipboard-import.svg │ │ │ ├── clipboard-text.svg │ │ │ ├── clipboard-tick.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-1.svg │ │ │ ├── clock.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-square.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-change.svg │ │ │ ├── cloud-connection.svg │ │ │ ├── cloud-cross.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-notif.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-remove.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sunny.svg │ │ │ ├── cloud.svg │ │ │ ├── code-1.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── coin-1.svg │ │ │ ├── coin.svg │ │ │ ├── color-swatch.svg │ │ │ ├── colorfilter.svg │ │ │ ├── colors-square.svg │ │ │ ├── command-square.svg │ │ │ ├── command.svg │ │ │ ├── component.svg │ │ │ ├── computing.svg │ │ │ ├── convert-3d-cube.svg │ │ │ ├── convert-card.svg │ │ │ ├── convert.svg │ │ │ ├── convertshape-2.svg │ │ │ ├── convertshape.svg │ │ │ ├── copy-success.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── courthouse.svg │ │ │ ├── cpu-charge.svg │ │ │ ├── cpu-setting.svg │ │ │ ├── cpu.svg │ │ │ ├── creative-commons.svg │ │ │ ├── crop.svg │ │ │ ├── crown-1.svg │ │ │ ├── crown.svg │ │ │ ├── cup.svg │ │ │ ├── dai-(dai).svg │ │ │ ├── danger.svg │ │ │ ├── dash-(dash).svg │ │ │ ├── data-2.svg │ │ │ ├── data.svg │ │ │ ├── decred-(dcr).svg │ │ │ ├── dent-(dent).svg │ │ │ ├── designtools.svg │ │ │ ├── device-message.svg │ │ │ ├── devices-1.svg │ │ │ ├── devices.svg │ │ │ ├── diagram.svg │ │ │ ├── diamonds.svg │ │ │ ├── direct-down.svg │ │ │ ├── direct-inbox.svg │ │ │ ├── direct-left.svg │ │ │ ├── direct-normal.svg │ │ │ ├── direct-notification.svg │ │ │ ├── direct-right.svg │ │ │ ├── direct-send.svg │ │ │ ├── direct-up.svg │ │ │ ├── direct.svg │ │ │ ├── directbox-default.svg │ │ │ ├── directbox-notif.svg │ │ │ ├── directbox-receive.svg │ │ │ ├── directbox-send.svg │ │ │ ├── discount-circle.svg │ │ │ ├── discount-shape.svg │ │ │ ├── discover-1.svg │ │ │ ├── discover.svg │ │ │ ├── dislike.svg │ │ │ ├── document-1.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-code-2.svg │ │ │ ├── document-code.svg │ │ │ ├── document-copy.svg │ │ │ ├── document-download.svg │ │ │ ├── document-favorite.svg │ │ │ ├── document-filter.svg │ │ │ ├── document-forward.svg │ │ │ ├── document-like.svg │ │ │ ├── document-normal.svg │ │ │ ├── document-previous.svg │ │ │ ├── document-sketch.svg │ │ │ ├── document-text-1.svg │ │ │ ├── document-text.svg │ │ │ ├── document-upload.svg │ │ │ ├── document.svg │ │ │ ├── dollar-circle.svg │ │ │ ├── dollar-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── driver-2.svg │ │ │ ├── driver-refresh.svg │ │ │ ├── driver.svg │ │ │ ├── driving.svg │ │ │ ├── drop.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit.svg │ │ │ ├── educare-(ekt).svg │ │ │ ├── electricity.svg │ │ │ ├── element-2.svg │ │ │ ├── element-3.svg │ │ │ ├── element-4.svg │ │ │ ├── element-equal.svg │ │ │ ├── element-plus.svg │ │ │ ├── emercoin-(emc).svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-normal.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── empty-wallet-add.svg │ │ │ ├── empty-wallet-change.svg │ │ │ ├── empty-wallet-remove.svg │ │ │ ├── empty-wallet-tick.svg │ │ │ ├── empty-wallet-time.svg │ │ │ ├── empty-wallet.svg │ │ │ ├── enjin-coin-(enj).svg │ │ │ ├── eos-(eos).svg │ │ │ ├── eraser-1.svg │ │ │ ├── eraser.svg │ │ │ ├── ethereum-(eth).svg │ │ │ ├── ethereum-classic-(etc).svg │ │ │ ├── export-1.svg │ │ │ ├── export-2.svg │ │ │ ├── export-3.svg │ │ │ ├── export.svg │ │ │ ├── external-drive.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── facebook.svg │ │ │ ├── fatrows.svg │ │ │ ├── favorite-chart.svg │ │ │ ├── figma-1.svg │ │ │ ├── figma.svg │ │ │ ├── filter-add.svg │ │ │ ├── filter-edit.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter-search.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter-tick.svg │ │ │ ├── filter.svg │ │ │ ├── finger-cricle.svg │ │ │ ├── finger-scan.svg │ │ │ ├── firstline.svg │ │ │ ├── flag-2.svg │ │ │ ├── flag.svg │ │ │ ├── flash-1.svg │ │ │ ├── flash-circle-1.svg │ │ │ ├── flash-circle.svg │ │ │ ├── flash-slash.svg │ │ │ ├── flash.svg │ │ │ ├── folder-2.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cloud.svg │ │ │ ├── folder-connection.svg │ │ │ ├── folder-cross.svg │ │ │ ├── folder-favorite.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forbidden-2.svg │ │ │ ├── forbidden.svg │ │ │ ├── format-circle.svg │ │ │ ├── format-square.svg │ │ │ ├── forward-10-seconds.svg │ │ │ ├── forward-15-seconds.svg │ │ │ ├── forward-5-seconds.svg │ │ │ ├── forward-item.svg │ │ │ ├── forward-square.svg │ │ │ ├── forward.svg │ │ │ ├── frame-1.svg │ │ │ ├── frame-2.svg │ │ │ ├── frame-3.svg │ │ │ ├── frame-4.svg │ │ │ ├── frame.svg │ │ │ ├── framer.svg │ │ │ ├── ftx-token-(ftt).svg │ │ │ ├── gallery-add.svg │ │ │ ├── gallery-edit.svg │ │ │ ├── gallery-export.svg │ │ │ ├── gallery-favorite.svg │ │ │ ├── gallery-import.svg │ │ │ ├── gallery-remove.svg │ │ │ ├── gallery-slash.svg │ │ │ ├── gallery-tick.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gameboy.svg │ │ │ ├── gas-station.svg │ │ │ ├── gemini-2.svg │ │ │ ├── gemini.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── glass-1.svg │ │ │ ├── glass.svg │ │ │ ├── global-edit.svg │ │ │ ├── global-refresh.svg │ │ │ ├── global-search.svg │ │ │ ├── global.svg │ │ │ ├── google-1.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── gps-slash.svg │ │ │ ├── gps.svg │ │ │ ├── grammerly.svg │ │ │ ├── graph.svg │ │ │ ├── grid-1.svg │ │ │ ├── grid-2.svg │ │ │ ├── grid-3.svg │ │ │ ├── grid-4.svg │ │ │ ├── grid-5.svg │ │ │ ├── grid-6.svg │ │ │ ├── grid-7.svg │ │ │ ├── grid-8.svg │ │ │ ├── grid-9.svg │ │ │ ├── grid-edit.svg │ │ │ ├── grid-eraser.svg │ │ │ ├── grid-lock.svg │ │ │ ├── happyemoji.svg │ │ │ ├── harmony-(one).svg │ │ │ ├── hashtag-1.svg │ │ │ ├── hashtag-down.svg │ │ │ ├── hashtag-up.svg │ │ │ ├── hashtag.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones.svg │ │ │ ├── health.svg │ │ │ ├── heart-add.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-edit.svg │ │ │ ├── heart-remove.svg │ │ │ ├── heart-search.svg │ │ │ ├── heart-slash.svg │ │ │ ├── heart-tick.svg │ │ │ ├── heart.svg │ │ │ ├── hedera-hashgraph-(hbar).svg │ │ │ ├── hex-(hex).svg │ │ │ ├── hierarchy-2.svg │ │ │ ├── hierarchy-3.svg │ │ │ ├── hierarchy-square-2.svg │ │ │ ├── hierarchy-square-3.svg │ │ │ ├── hierarchy-square.svg │ │ │ ├── hierarchy.svg │ │ │ ├── home-1.svg │ │ │ ├── home-2.svg │ │ │ ├── home-hashtag.svg │ │ │ ├── home-trend-down.svg │ │ │ ├── home-trend-up.svg │ │ │ ├── home-wifi.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── house-2.svg │ │ │ ├── house.svg │ │ │ ├── html-3.svg │ │ │ ├── html-5.svg │ │ │ ├── huobi-token-(ht).svg │ │ │ ├── icon-(icx).svg │ │ │ ├── icon-1.svg │ │ │ ├── icon.svg │ │ │ ├── illustrator.svg │ │ │ ├── image.svg │ │ │ ├── import-1.svg │ │ │ ├── import-2.svg │ │ │ ├── import-3.svg │ │ │ ├── import.svg │ │ │ ├── info-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── iost-(iost).svg │ │ │ ├── java-script.svg │ │ │ ├── js.svg │ │ │ ├── judge.svg │ │ │ ├── kanban.svg │ │ │ ├── key-square.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-open.svg │ │ │ ├── keyboard.svg │ │ │ ├── kyber-network-(knc).svg │ │ │ ├── lamp-1.svg │ │ │ ├── lamp-charge.svg │ │ │ ├── lamp-on.svg │ │ │ ├── lamp-slash.svg │ │ │ ├── lamp.svg │ │ │ ├── language-circle.svg │ │ │ ├── language-square.svg │ │ │ ├── layer.svg │ │ │ ├── level.svg │ │ │ ├── lifebuoy.svg │ │ │ ├── like-1.svg │ │ │ ├── like-dislike.svg │ │ │ ├── like-shapes.svg │ │ │ ├── like-tag.svg │ │ │ ├── like.svg │ │ │ ├── link-1.svg │ │ │ ├── link-2.svg │ │ │ ├── link-21.svg │ │ │ ├── link-circle.svg │ │ │ ├── link-square.svg │ │ │ ├── link.svg │ │ │ ├── litecoin(ltc).svg │ │ │ ├── location-add.svg │ │ │ ├── location-cross.svg │ │ │ ├── location-minus.svg │ │ │ ├── location-slash.svg │ │ │ ├── location-tick.svg │ │ │ ├── location.svg │ │ │ ├── lock-1.svg │ │ │ ├── lock-circle.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── login-1.svg │ │ │ ├── login.svg │ │ │ ├── logout-1.svg │ │ │ ├── logout.svg │ │ │ ├── lovely.svg │ │ │ ├── magic-star.svg │ │ │ ├── magicpen.svg │ │ │ ├── main-component.svg │ │ │ ├── maker-(mkr).svg │ │ │ ├── man.svg │ │ │ ├── map-1.svg │ │ │ ├── map.svg │ │ │ ├── mask-1.svg │ │ │ ├── mask-2.svg │ │ │ ├── mask.svg │ │ │ ├── math.svg │ │ │ ├── maximize-1.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize-21.svg │ │ │ ├── maximize-3.svg │ │ │ ├── maximize-4.svg │ │ │ ├── maximize-circle.svg │ │ │ ├── maximize.svg │ │ │ ├── medal-star.svg │ │ │ ├── medal.svg │ │ │ ├── menu-1.svg │ │ │ ├── menu-board.svg │ │ │ ├── menu.svg │ │ │ ├── message-2.svg │ │ │ ├── message-add-1.svg │ │ │ ├── message-add.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-edit.svg │ │ │ ├── message-favorite.svg │ │ │ ├── message-minus.svg │ │ │ ├── message-notif.svg │ │ │ ├── message-programming.svg │ │ │ ├── message-question.svg │ │ │ ├── message-remove.svg │ │ │ ├── message-search.svg │ │ │ ├── message-square.svg │ │ │ ├── message-text-1.svg │ │ │ ├── message-text.svg │ │ │ ├── message-tick.svg │ │ │ ├── message-time.svg │ │ │ ├── message.svg │ │ │ ├── messages-1.svg │ │ │ ├── messages-2.svg │ │ │ ├── messages-3.svg │ │ │ ├── messages.svg │ │ │ ├── messenger.svg │ │ │ ├── microphone-2.svg │ │ │ ├── microphone-slash-1.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── milk.svg │ │ │ ├── mini-music-sqaure.svg │ │ │ ├── minus-cirlce.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mirror.svg │ │ │ ├── mirroring-screen.svg │ │ │ ├── mobile-programming.svg │ │ │ ├── mobile.svg │ │ │ ├── monero-(xmr).svg │ │ │ ├── money-2.svg │ │ │ ├── money-3.svg │ │ │ ├── money-4.svg │ │ │ ├── money-add.svg │ │ │ ├── money-change.svg │ │ │ ├── money-forbidden.svg │ │ │ ├── money-recive.svg │ │ │ ├── money-remove.svg │ │ │ ├── money-send.svg │ │ │ ├── money-tick.svg │ │ │ ├── money-time.svg │ │ │ ├── money.svg │ │ │ ├── moneys.svg │ │ │ ├── monitor-mobbile.svg │ │ │ ├── monitor-recorder.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-2.svg │ │ │ ├── more-circle.svg │ │ │ ├── more-square.svg │ │ │ ├── more.svg │ │ │ ├── mouse-1.svg │ │ │ ├── mouse-circle.svg │ │ │ ├── mouse-square.svg │ │ │ ├── mouse.svg │ │ │ ├── music-circle.svg │ │ │ ├── music-dashboard.svg │ │ │ ├── music-filter.svg │ │ │ ├── music-library-2.svg │ │ │ ├── music-play.svg │ │ │ ├── music-playlist.svg │ │ │ ├── music-square-add.svg │ │ │ ├── music-square-remove.svg │ │ │ ├── music-square-search.svg │ │ │ ├── music-square.svg │ │ │ ├── music.svg │ │ │ ├── musicnote.svg │ │ │ ├── nebulas-(nas).svg │ │ │ ├── nem-(xem).svg │ │ │ ├── nexo-(nexo).svg │ │ │ ├── next.svg │ │ │ ├── note-1.svg │ │ │ ├── note-2.svg │ │ │ ├── note-21.svg │ │ │ ├── note-add.svg │ │ │ ├── note-favorite.svg │ │ │ ├── note-remove.svg │ │ │ ├── note-square.svg │ │ │ ├── note-text.svg │ │ │ ├── note.svg │ │ │ ├── notification-1.svg │ │ │ ├── notification-bing.svg │ │ │ ├── notification-favorite.svg │ │ │ ├── notification-status.svg │ │ │ ├── notification.svg │ │ │ ├── ocean-protocol-(ocean).svg │ │ │ ├── okb-(okb).svg │ │ │ ├── omega-circle.svg │ │ │ ├── omega-square.svg │ │ │ ├── ontology-(ont).svg │ │ │ ├── paintbucket.svg │ │ │ ├── paperclip-2.svg │ │ │ ├── paperclip.svg │ │ │ ├── password-check.svg │ │ │ ├── path-2.svg │ │ │ ├── path-square.svg │ │ │ ├── path.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen-add.svg │ │ │ ├── pen-close.svg │ │ │ ├── pen-remove.svg │ │ │ ├── pen-tool-2.svg │ │ │ ├── pen-tool.svg │ │ │ ├── people.svg │ │ │ ├── percentage-circle.svg │ │ │ ├── percentage-square.svg │ │ │ ├── personalcard.svg │ │ │ ├── pet.svg │ │ │ ├── pharagraphspacing.svg │ │ │ ├── photoshop.svg │ │ │ ├── picture-frame.svg │ │ │ ├── play-add.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-cricle.svg │ │ │ ├── play-remove.svg │ │ │ ├── play.svg │ │ │ ├── polkadot-(dot).svg │ │ │ ├── polygon-(matic).svg │ │ │ ├── polyswarm-(nct).svg │ │ │ ├── presention-chart.svg │ │ │ ├── previous.svg │ │ │ ├── printer-slash.svg │ │ │ ├── printer.svg │ │ │ ├── profile-2user.svg │ │ │ ├── profile-add.svg │ │ │ ├── profile-circle.svg │ │ │ ├── profile-delete.svg │ │ │ ├── profile-remove.svg │ │ │ ├── profile-tick.svg │ │ │ ├── programming-arrow.svg │ │ │ ├── programming-arrows.svg │ │ │ ├── python.svg │ │ │ ├── quant-(qnt).svg │ │ │ ├── quote-down-circle.svg │ │ │ ├── quote-down-square.svg │ │ │ ├── quote-down.svg │ │ │ ├── quote-up-circle.svg │ │ │ ├── quote-up-square.svg │ │ │ ├── quote-up.svg │ │ │ ├── radar-1.svg │ │ │ ├── radar-2.svg │ │ │ ├── radar.svg │ │ │ ├── radio.svg │ │ │ ├── ram-2.svg │ │ │ ├── ram.svg │ │ │ ├── ranking-1.svg │ │ │ ├── ranking.svg │ │ │ ├── receipt-1.svg │ │ │ ├── receipt-2-1.svg │ │ │ ├── receipt-2.svg │ │ │ ├── receipt-add.svg │ │ │ ├── receipt-discount.svg │ │ │ ├── receipt-disscount.svg │ │ │ ├── receipt-edit.svg │ │ │ ├── receipt-item.svg │ │ │ ├── receipt-minus.svg │ │ │ ├── receipt-search.svg │ │ │ ├── receipt-square.svg │ │ │ ├── receipt-text.svg │ │ │ ├── receipt.svg │ │ │ ├── receive-square-2.svg │ │ │ ├── receive-square.svg │ │ │ ├── received.svg │ │ │ ├── record-circle.svg │ │ │ ├── record.svg │ │ │ ├── recovery-convert.svg │ │ │ ├── redo.svg │ │ │ ├── refresh-2.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-left-square.svg │ │ │ ├── refresh-right-square.svg │ │ │ ├── refresh-square-2.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-circle.svg │ │ │ ├── repeat.svg │ │ │ ├── repeate-music.svg │ │ │ ├── repeate-one.svg │ │ │ ├── reserve.svg │ │ │ ├── rotate-left-1.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right-1.svg │ │ │ ├── rotate-right.svg │ │ │ ├── route-square.svg │ │ │ ├── routing-2.svg │ │ │ ├── routing.svg │ │ │ ├── row-horizontal.svg │ │ │ ├── row-vertical.svg │ │ │ ├── ruler&pen.svg │ │ │ ├── ruler.svg │ │ │ ├── safe-home.svg │ │ │ ├── sagittarius.svg │ │ │ ├── save-2.svg │ │ │ ├── save-add.svg │ │ │ ├── save-minus.svg │ │ │ ├── save-remove.svg │ │ │ ├── scan-barcode.svg │ │ │ ├── scan.svg │ │ │ ├── scanner.svg │ │ │ ├── scanning.svg │ │ │ ├── scissor-1.svg │ │ │ ├── scissor.svg │ │ │ ├── screenmirroring.svg │ │ │ ├── scroll.svg │ │ │ ├── search-favorite-1.svg │ │ │ ├── search-favorite.svg │ │ │ ├── search-normal-1.svg │ │ │ ├── search-normal.svg │ │ │ ├── search-status-1.svg │ │ │ ├── search-status.svg │ │ │ ├── search-zoom-in-1.svg │ │ │ ├── search-zoom-in.svg │ │ │ ├── search-zoom-out-1.svg │ │ │ ├── search-zoom-out.svg │ │ │ ├── security-card.svg │ │ │ ├── security-safe.svg │ │ │ ├── security-time.svg │ │ │ ├── security-user.svg │ │ │ ├── security.svg │ │ │ ├── send-1.svg │ │ │ ├── send-2.svg │ │ │ ├── send-sqaure-2.svg │ │ │ ├── send-square.svg │ │ │ ├── send.svg │ │ │ ├── setting-2.svg │ │ │ ├── setting-3.svg │ │ │ ├── setting-4.svg │ │ │ ├── setting-5.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-1.svg │ │ │ ├── shapes.svg │ │ │ ├── share.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-search.svg │ │ │ ├── shield-security.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-tick.svg │ │ │ ├── ship.svg │ │ │ ├── shop-add.svg │ │ │ ├── shop-remove.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shuffle.svg │ │ │ ├── siacoin-(sc).svg │ │ │ ├── sidebar-bottom.svg │ │ │ ├── sidebar-left.svg │ │ │ ├── sidebar-right.svg │ │ │ ├── sidebar-top.svg │ │ │ ├── signpost.svg │ │ │ ├── simcard-1.svg │ │ │ ├── simcard-2.svg │ │ │ ├── simcard.svg │ │ │ ├── size.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── slider-horizontal-1.svg │ │ │ ├── slider-horizontal.svg │ │ │ ├── slider-vertical-1.svg │ │ │ ├── slider-vertical.svg │ │ │ ├── slider.svg │ │ │ ├── smallcaps.svg │ │ │ ├── smart-car.svg │ │ │ ├── smart-home.svg │ │ │ ├── smileys.svg │ │ │ ├── sms-edit.svg │ │ │ ├── sms-notification.svg │ │ │ ├── sms-search.svg │ │ │ ├── sms-star.svg │ │ │ ├── sms-tracking.svg │ │ │ ├── sms.svg │ │ │ ├── snapchat.svg │ │ │ ├── solana-(sol).svg │ │ │ ├── sort.svg │ │ │ ├── sound.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── stacks-(stx).svg │ │ │ ├── star-1.svg │ │ │ ├── star-slash.svg │ │ │ ├── star.svg │ │ │ ├── status-up.svg │ │ │ ├── status.svg │ │ │ ├── stellar-(xlm).svg │ │ │ ├── sticker.svg │ │ │ ├── stickynote.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── story.svg │ │ │ ├── strongbox-2.svg │ │ │ ├── strongbox.svg │ │ │ ├── subtitle.svg │ │ │ ├── sun-1.svg │ │ │ ├── sun-fog.svg │ │ │ ├── sun.svg │ │ │ ├── tag-2.svg │ │ │ ├── tag-cross.svg │ │ │ ├── tag-right.svg │ │ │ ├── tag-user.svg │ │ │ ├── tag.svg │ │ │ ├── task-square.svg │ │ │ ├── task.svg │ │ │ ├── teacher.svg │ │ │ ├── tenx-(pay).svg │ │ │ ├── tether-(usdt).svg │ │ │ ├── text-block.svg │ │ │ ├── text-bold.svg │ │ │ ├── text-italic.svg │ │ │ ├── text-underline.svg │ │ │ ├── text.svg │ │ │ ├── textalign-center.svg │ │ │ ├── textalign-justifycenter.svg │ │ │ ├── textalign-justifyleft.svg │ │ │ ├── textalign-justifyright.svg │ │ │ ├── textalign-left.svg │ │ │ ├── textalign-right.svg │ │ │ ├── the-graph-(grt).svg │ │ │ ├── theta-(theta).svg │ │ │ ├── thorchain-(rune).svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick-square.svg │ │ │ ├── ticket-2.svg │ │ │ ├── ticket-discount.svg │ │ │ ├── ticket-expired.svg │ │ │ ├── ticket-star.svg │ │ │ ├── ticket.svg │ │ │ ├── timer-1.svg │ │ │ ├── timer-pause.svg │ │ │ ├── timer-start.svg │ │ │ ├── timer.svg │ │ │ ├── toggle-off-circle.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on-circle.svg │ │ │ ├── toggle-on.svg │ │ │ ├── trade.svg │ │ │ ├── transaction-minus.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── trend-down.svg │ │ │ ├── trend-up.svg │ │ │ ├── triangle-02.svg │ │ │ ├── triangle.svg │ │ │ ├── trontron-(trx).svg │ │ │ ├── truck-fast.svg │ │ │ ├── truck-remove.svg │ │ │ ├── truck-tick.svg │ │ │ ├── truck-time.svg │ │ │ ├── truck.svg │ │ │ ├── trush-square.svg │ │ │ ├── twitch.svg │ │ │ ├── ui8.svg │ │ │ ├── undo.svg │ │ │ ├── unlimited.svg │ │ │ ├── unlock.svg │ │ │ ├── usd-coin-(usdc).svg │ │ │ ├── user-add.svg │ │ │ ├── user-cirlce-add.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-octagon.svg │ │ │ ├── user-remove.svg │ │ │ ├── user-search.svg │ │ │ ├── user-square.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tick.svg │ │ │ ├── user.svg │ │ │ ├── velas-(vlx).svg │ │ │ ├── verify.svg │ │ │ ├── vibe-(vibe).svg │ │ │ ├── video-add.svg │ │ │ ├── video-circle.svg │ │ │ ├── video-horizontal.svg │ │ │ ├── video-octagon.svg │ │ │ ├── video-play.svg │ │ │ ├── video-remove.svg │ │ │ ├── video-slash.svg │ │ │ ├── video-square.svg │ │ │ ├── video-tick.svg │ │ │ ├── video-time.svg │ │ │ ├── video-vertical.svg │ │ │ ├── video.svg │ │ │ ├── voice-cricle.svg │ │ │ ├── voice-square.svg │ │ │ ├── volume-cross.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-1.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── vuesax.svg │ │ │ ├── wallet-1.svg │ │ │ ├── wallet-2.svg │ │ │ ├── wallet-3.svg │ │ │ ├── wallet-add-1.svg │ │ │ ├── wallet-add.svg │ │ │ ├── wallet-check.svg │ │ │ ├── wallet-minus.svg │ │ │ ├── wallet-money.svg │ │ │ ├── wallet-remove.svg │ │ │ ├── wallet-search.svg │ │ │ ├── wallet.svg │ │ │ ├── wanchain-(wan)-1.svg │ │ │ ├── wanchain-(wan).svg │ │ │ ├── warning-2.svg │ │ │ ├── watch-status.svg │ │ │ ├── watch.svg │ │ │ ├── weight-1.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-square.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-2.svg │ │ │ ├── wind.svg │ │ │ ├── windows.svg │ │ │ ├── wing-(wing).svg │ │ │ ├── woman.svg │ │ │ ├── xd.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xrp-(xrp).svg │ │ │ ├── youtube.svg │ │ │ ├── zel-(zel).svg │ │ │ └── zoom.svg │ │ ├── broken │ │ │ ├── 24-support.svg │ │ │ ├── 3d-cube-scan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── 3d-square.svg │ │ │ ├── 3dcube.svg │ │ │ ├── 3square.svg │ │ │ ├── aave-(aave).svg │ │ │ ├── activity.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-square.svg │ │ │ ├── add.svg │ │ │ ├── additem.svg │ │ │ ├── airdrop.svg │ │ │ ├── airplane-square.svg │ │ │ ├── airplane.svg │ │ │ ├── airpod.svg │ │ │ ├── airpods.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-horizontally.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-vertically.svg │ │ │ ├── android.svg │ │ │ ├── ankr-(ankr).svg │ │ │ ├── apple.svg │ │ │ ├── aquarius.svg │ │ │ ├── archive-1.svg │ │ │ ├── archive-2.svg │ │ │ ├── archive-add.svg │ │ │ ├── archive-book.svg │ │ │ ├── archive-minus.svg │ │ │ ├── archive-slash.svg │ │ │ ├── archive-tick.svg │ │ │ ├── archive.svg │ │ │ ├── arrange-circle-2.svg │ │ │ ├── arrange-circle.svg │ │ │ ├── arrange-square-2.svg │ │ │ ├── arrange-square.svg │ │ │ ├── arrow-2.svg │ │ │ ├── arrow-3.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down-1.svg │ │ │ ├── arrow-down-2.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-1.svg │ │ │ ├── arrow-left-2.svg │ │ │ ├── arrow-left-3.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-1.svg │ │ │ ├── arrow-right-2.svg │ │ │ ├── arrow-right-3.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-square.svg │ │ │ ├── arrow-swap-horizontal.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-1.svg │ │ │ ├── arrow-up-2.svg │ │ │ ├── arrow-up-3.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── attach-circle.svg │ │ │ ├── attach-square.svg │ │ │ ├── audio-square.svg │ │ │ ├── augur-(rep).svg │ │ │ ├── autobrightness.svg │ │ │ ├── autonio-(niox).svg │ │ │ ├── avalanche-(avax).svg │ │ │ ├── award.svg │ │ │ ├── back-square.svg │ │ │ ├── backward-10-seconds.svg │ │ │ ├── backward-15-seconds.svg │ │ │ ├── backward-5-seconds.svg │ │ │ ├── backward-item.svg │ │ │ ├── backward.svg │ │ │ ├── bag-2.svg │ │ │ ├── bag-cross-1.svg │ │ │ ├── bag-cross.svg │ │ │ ├── bag-happy.svg │ │ │ ├── bag-tick-2.svg │ │ │ ├── bag-tick.svg │ │ │ ├── bag-timer.svg │ │ │ ├── bag.svg │ │ │ ├── bank.svg │ │ │ ├── barcode.svg │ │ │ ├── battery-3full.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-disable.svg │ │ │ ├── battery-empty-1.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── be.svg │ │ │ ├── bezier.svg │ │ │ ├── bill.svg │ │ │ ├── binance-coin-(bnb).svg │ │ │ ├── binance-usd-(busd).svg │ │ │ ├── bitcoin-(btc).svg │ │ │ ├── bitcoin-card.svg │ │ │ ├── bitcoin-convert.svg │ │ │ ├── bitcoin-refresh.svg │ │ │ ├── blend-2.svg │ │ │ ├── blend.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-2.svg │ │ │ ├── bluetooth-circle.svg │ │ │ ├── bluetooth-rectangle.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur.svg │ │ │ ├── book-1.svg │ │ │ ├── book-saved.svg │ │ │ ├── book-square.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-2.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootstrap.svg │ │ │ ├── box-1.svg │ │ │ ├── box-2.svg │ │ │ ├── box-add.svg │ │ │ ├── box-remove.svg │ │ │ ├── box-search.svg │ │ │ ├── box-tick.svg │ │ │ ├── box-time.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brifecase-cross.svg │ │ │ ├── brifecase-tick.svg │ │ │ ├── brifecase-timer.svg │ │ │ ├── broom.svg │ │ │ ├── brush-1.svg │ │ │ ├── brush-2.svg │ │ │ ├── brush-3.svg │ │ │ ├── brush-4.svg │ │ │ ├── brush.svg │ │ │ ├── bubble.svg │ │ │ ├── bucket-circle.svg │ │ │ ├── bucket-square.svg │ │ │ ├── bucket.svg │ │ │ ├── building-3.svg │ │ │ ├── building-4.svg │ │ │ ├── building.svg │ │ │ ├── buildings-2.svg │ │ │ ├── buildings.svg │ │ │ ├── buliding.svg │ │ │ ├── bus.svg │ │ │ ├── buy-crypto.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-1.svg │ │ │ ├── calendar-2.svg │ │ │ ├── calendar-add.svg │ │ │ ├── calendar-circle.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-remove.svg │ │ │ ├── calendar-search.svg │ │ │ ├── calendar-tick.svg │ │ │ ├── calendar.svg │ │ │ ├── call-add.svg │ │ │ ├── call-calling.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-minus.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-received.svg │ │ │ ├── call-remove.svg │ │ │ ├── call-slash.svg │ │ │ ├── call.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── candle-2.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── card-add.svg │ │ │ ├── card-coin.svg │ │ │ ├── card-edit.svg │ │ │ ├── card-pos.svg │ │ │ ├── card-receive.svg │ │ │ ├── card-remove-1.svg │ │ │ ├── card-remove.svg │ │ │ ├── card-send.svg │ │ │ ├── card-slash.svg │ │ │ ├── card-tick-1.svg │ │ │ ├── card-tick.svg │ │ │ ├── card.svg │ │ │ ├── cardano-(ada).svg │ │ │ ├── cards.svg │ │ │ ├── category-2.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── celo-(celo).svg │ │ │ ├── celsius-(cel)-.svg │ │ │ ├── chainlink-(link).svg │ │ │ ├── chart-1.svg │ │ │ ├── chart-2.svg │ │ │ ├── chart-21.svg │ │ │ ├── chart-3.svg │ │ │ ├── chart-fail.svg │ │ │ ├── chart-square.svg │ │ │ ├── chart-success.svg │ │ │ ├── chart.svg │ │ │ ├── check.svg │ │ │ ├── chrome.svg │ │ │ ├── civic-(cvc).svg │ │ │ ├── clipboard-close.svg │ │ │ ├── clipboard-export.svg │ │ │ ├── clipboard-import.svg │ │ │ ├── clipboard-text.svg │ │ │ ├── clipboard-tick.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-1.svg │ │ │ ├── clock.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-square.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-change.svg │ │ │ ├── cloud-connection.svg │ │ │ ├── cloud-cross.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-notif.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-remove.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sunny.svg │ │ │ ├── cloud.svg │ │ │ ├── code-1.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── coin-1.svg │ │ │ ├── coin.svg │ │ │ ├── color-swatch.svg │ │ │ ├── colorfilter.svg │ │ │ ├── colors-square.svg │ │ │ ├── command-square.svg │ │ │ ├── command.svg │ │ │ ├── component.svg │ │ │ ├── computing.svg │ │ │ ├── convert-3d-cube.svg │ │ │ ├── convert-card.svg │ │ │ ├── convert.svg │ │ │ ├── convertshape-2.svg │ │ │ ├── convertshape.svg │ │ │ ├── copy-success.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── courthouse.svg │ │ │ ├── cpu-charge.svg │ │ │ ├── cpu-setting.svg │ │ │ ├── cpu.svg │ │ │ ├── creative-commons.svg │ │ │ ├── crop.svg │ │ │ ├── crown-1.svg │ │ │ ├── crown.svg │ │ │ ├── cup.svg │ │ │ ├── dai-(dai).svg │ │ │ ├── danger.svg │ │ │ ├── dash-(dash).svg │ │ │ ├── data-2.svg │ │ │ ├── data.svg │ │ │ ├── decred-(dcr).svg │ │ │ ├── dent-(dent).svg │ │ │ ├── designtools.svg │ │ │ ├── device-message.svg │ │ │ ├── devices-1.svg │ │ │ ├── devices.svg │ │ │ ├── diagram.svg │ │ │ ├── diamonds.svg │ │ │ ├── direct-down.svg │ │ │ ├── direct-inbox.svg │ │ │ ├── direct-left.svg │ │ │ ├── direct-normal.svg │ │ │ ├── direct-notification.svg │ │ │ ├── direct-right.svg │ │ │ ├── direct-send.svg │ │ │ ├── direct-up.svg │ │ │ ├── direct.svg │ │ │ ├── directbox-default.svg │ │ │ ├── directbox-notif.svg │ │ │ ├── directbox-receive.svg │ │ │ ├── directbox-send.svg │ │ │ ├── discount-circle.svg │ │ │ ├── discount-shape.svg │ │ │ ├── discover-1.svg │ │ │ ├── discover.svg │ │ │ ├── dislike.svg │ │ │ ├── document-1.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-code-2.svg │ │ │ ├── document-code.svg │ │ │ ├── document-copy.svg │ │ │ ├── document-download.svg │ │ │ ├── document-favorite.svg │ │ │ ├── document-filter.svg │ │ │ ├── document-forward.svg │ │ │ ├── document-like.svg │ │ │ ├── document-normal.svg │ │ │ ├── document-previous.svg │ │ │ ├── document-sketch.svg │ │ │ ├── document-text-1.svg │ │ │ ├── document-text.svg │ │ │ ├── document-upload.svg │ │ │ ├── document.svg │ │ │ ├── dollar-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── driver-2.svg │ │ │ ├── driver-refresh.svg │ │ │ ├── driver.svg │ │ │ ├── driving.svg │ │ │ ├── drop.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit.svg │ │ │ ├── educare-(ekt).svg │ │ │ ├── electricity.svg │ │ │ ├── element-2.svg │ │ │ ├── element-3.svg │ │ │ ├── element-4.svg │ │ │ ├── element-equal.svg │ │ │ ├── element-plus.svg │ │ │ ├── emercoin-(emc).svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-normal.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── empty-wallet-add.svg │ │ │ ├── empty-wallet-change.svg │ │ │ ├── empty-wallet-remove.svg │ │ │ ├── empty-wallet-tick.svg │ │ │ ├── empty-wallet-time.svg │ │ │ ├── empty-wallet.svg │ │ │ ├── enjin-coin-(enj).svg │ │ │ ├── eos-(eos).svg │ │ │ ├── eraser-1.svg │ │ │ ├── eraser.svg │ │ │ ├── ethereum-(eth).svg │ │ │ ├── ethereum-classic-(etc).svg │ │ │ ├── export-1.svg │ │ │ ├── export-2.svg │ │ │ ├── export-3.svg │ │ │ ├── export.svg │ │ │ ├── external-drive.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── facebook.svg │ │ │ ├── fatrows.svg │ │ │ ├── favorite-chart.svg │ │ │ ├── figma-1.svg │ │ │ ├── figma.svg │ │ │ ├── filter-add.svg │ │ │ ├── filter-edit.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter-search.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter-tick.svg │ │ │ ├── filter.svg │ │ │ ├── finger-cricle.svg │ │ │ ├── finger-scan.svg │ │ │ ├── firstline.svg │ │ │ ├── flag-2.svg │ │ │ ├── flag.svg │ │ │ ├── flash-1.svg │ │ │ ├── flash-circle-1.svg │ │ │ ├── flash-circle.svg │ │ │ ├── flash-slash.svg │ │ │ ├── flash.svg │ │ │ ├── folder-2.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cloud.svg │ │ │ ├── folder-connection.svg │ │ │ ├── folder-cross.svg │ │ │ ├── folder-favorite.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forbidden-2.svg │ │ │ ├── forbidden.svg │ │ │ ├── format-circle.svg │ │ │ ├── format-square.svg │ │ │ ├── forward-10-seconds.svg │ │ │ ├── forward-15-seconds.svg │ │ │ ├── forward-5-seconds.svg │ │ │ ├── forward-item.svg │ │ │ ├── forward-square.svg │ │ │ ├── forward.svg │ │ │ ├── frame-1.svg │ │ │ ├── frame-2.svg │ │ │ ├── frame-3.svg │ │ │ ├── frame-4.svg │ │ │ ├── frame-5.svg │ │ │ ├── frame-6.svg │ │ │ ├── frame-7.svg │ │ │ ├── frame.svg │ │ │ ├── framer.svg │ │ │ ├── ftx-token-(ftt).svg │ │ │ ├── gallery-add.svg │ │ │ ├── gallery-edit.svg │ │ │ ├── gallery-export.svg │ │ │ ├── gallery-favorite.svg │ │ │ ├── gallery-import.svg │ │ │ ├── gallery-remove.svg │ │ │ ├── gallery-slash.svg │ │ │ ├── gallery-tick.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gameboy.svg │ │ │ ├── gas-station.svg │ │ │ ├── gemini-2.svg │ │ │ ├── gemini.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── glass-1.svg │ │ │ ├── glass.svg │ │ │ ├── global-edit.svg │ │ │ ├── global-refresh.svg │ │ │ ├── global-search.svg │ │ │ ├── global.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── gps-slash.svg │ │ │ ├── gps.svg │ │ │ ├── grammerly.svg │ │ │ ├── graph.svg │ │ │ ├── grid-1.svg │ │ │ ├── grid-2.svg │ │ │ ├── grid-3.svg │ │ │ ├── grid-4.svg │ │ │ ├── grid-5.svg │ │ │ ├── grid-6.svg │ │ │ ├── grid-7.svg │ │ │ ├── grid-8.svg │ │ │ ├── grid-9.svg │ │ │ ├── grid-edit.svg │ │ │ ├── grid-eraser.svg │ │ │ ├── grid-lock.svg │ │ │ ├── group.svg │ │ │ ├── happyemoji.svg │ │ │ ├── harmony-(one).svg │ │ │ ├── hashtag-1.svg │ │ │ ├── hashtag-down.svg │ │ │ ├── hashtag-up.svg │ │ │ ├── hashtag.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones.svg │ │ │ ├── health.svg │ │ │ ├── heart-add.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-edit.svg │ │ │ ├── heart-remove.svg │ │ │ ├── heart-search.svg │ │ │ ├── heart-slash.svg │ │ │ ├── heart-tick.svg │ │ │ ├── heart.svg │ │ │ ├── hedera-hashgraph-(hbar).svg │ │ │ ├── hex-(hex).svg │ │ │ ├── hierarchy-2.svg │ │ │ ├── hierarchy-3.svg │ │ │ ├── hierarchy-square-2.svg │ │ │ ├── hierarchy-square-3.svg │ │ │ ├── hierarchy-square.svg │ │ │ ├── hierarchy.svg │ │ │ ├── home-1.svg │ │ │ ├── home-2.svg │ │ │ ├── home-hashtag.svg │ │ │ ├── home-trend-down.svg │ │ │ ├── home-trend-up.svg │ │ │ ├── home-wifi.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── house-2.svg │ │ │ ├── house.svg │ │ │ ├── html-3.svg │ │ │ ├── html-5.svg │ │ │ ├── huobi-token-(ht).svg │ │ │ ├── icon-(icx).svg │ │ │ ├── icon-1.svg │ │ │ ├── icon.svg │ │ │ ├── illustrator.svg │ │ │ ├── image.svg │ │ │ ├── import-1.svg │ │ │ ├── import-2.svg │ │ │ ├── import.svg │ │ │ ├── info-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── iost-(iost).svg │ │ │ ├── javascript.svg │ │ │ ├── js.svg │ │ │ ├── judge.svg │ │ │ ├── key-square.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-open.svg │ │ │ ├── keyboard.svg │ │ │ ├── kyber-network-(knc).svg │ │ │ ├── lamp-1.svg │ │ │ ├── lamp-charge.svg │ │ │ ├── lamp-on.svg │ │ │ ├── lamp-slash.svg │ │ │ ├── lamp.svg │ │ │ ├── language-circle.svg │ │ │ ├── language-square.svg │ │ │ ├── layer.svg │ │ │ ├── level.svg │ │ │ ├── lifebuoy.svg │ │ │ ├── like-1.svg │ │ │ ├── like-dislike.svg │ │ │ ├── like-shapes.svg │ │ │ ├── like-tag.svg │ │ │ ├── like.svg │ │ │ ├── link-1.svg │ │ │ ├── link-2.svg │ │ │ ├── link-21.svg │ │ │ ├── link-circle.svg │ │ │ ├── link-square.svg │ │ │ ├── link.svg │ │ │ ├── litecoin(ltc).svg │ │ │ ├── location-add.svg │ │ │ ├── location-cross.svg │ │ │ ├── location-minus.svg │ │ │ ├── location-slash.svg │ │ │ ├── location-tick.svg │ │ │ ├── location.svg │ │ │ ├── lock-1.svg │ │ │ ├── lock-circle.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── login-1.svg │ │ │ ├── login.svg │ │ │ ├── logout-1.svg │ │ │ ├── logout.svg │ │ │ ├── lovely.svg │ │ │ ├── magic-star.svg │ │ │ ├── magicpen.svg │ │ │ ├── main-component.svg │ │ │ ├── maker-(mkr).svg │ │ │ ├── man.svg │ │ │ ├── map-1.svg │ │ │ ├── map.svg │ │ │ ├── mask-1.svg │ │ │ ├── mask-2.svg │ │ │ ├── mask.svg │ │ │ ├── math.svg │ │ │ ├── maximize-1.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize-21.svg │ │ │ ├── maximize-3.svg │ │ │ ├── maximize-4.svg │ │ │ ├── maximize-circle.svg │ │ │ ├── maximize.svg │ │ │ ├── medal-star.svg │ │ │ ├── medal.svg │ │ │ ├── menu-1.svg │ │ │ ├── menu-board.svg │ │ │ ├── menu.svg │ │ │ ├── message-2.svg │ │ │ ├── message-add-1.svg │ │ │ ├── message-add.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-edit.svg │ │ │ ├── message-favorite.svg │ │ │ ├── message-minus.svg │ │ │ ├── message-notif.svg │ │ │ ├── message-programming.svg │ │ │ ├── message-question.svg │ │ │ ├── message-remove.svg │ │ │ ├── message-search.svg │ │ │ ├── message-square.svg │ │ │ ├── message-text-1.svg │ │ │ ├── message-text.svg │ │ │ ├── message-tick.svg │ │ │ ├── message-time.svg │ │ │ ├── message.svg │ │ │ ├── messages-1.svg │ │ │ ├── messages-2.svg │ │ │ ├── messages-3.svg │ │ │ ├── messages.svg │ │ │ ├── messenger.svg │ │ │ ├── microphone-2.svg │ │ │ ├── microphone-slash-1.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── milk.svg │ │ │ ├── mini-music-sqaure.svg │ │ │ ├── minus-cirlce.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mirror.svg │ │ │ ├── mirroring-screen.svg │ │ │ ├── mobile-programming.svg │ │ │ ├── mobile.svg │ │ │ ├── monero-(xmr).svg │ │ │ ├── money-2.svg │ │ │ ├── money-3.svg │ │ │ ├── money-4.svg │ │ │ ├── money-add.svg │ │ │ ├── money-change.svg │ │ │ ├── money-forbidden.svg │ │ │ ├── money-recive.svg │ │ │ ├── money-remove.svg │ │ │ ├── money-send.svg │ │ │ ├── money-tick.svg │ │ │ ├── money-time.svg │ │ │ ├── money.svg │ │ │ ├── moneys.svg │ │ │ ├── monitor-mobbile.svg │ │ │ ├── monitor-recorder.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-2.svg │ │ │ ├── more-circle.svg │ │ │ ├── more-square.svg │ │ │ ├── more.svg │ │ │ ├── mouse-1.svg │ │ │ ├── mouse-circle.svg │ │ │ ├── mouse-square.svg │ │ │ ├── mouse.svg │ │ │ ├── music-circle.svg │ │ │ ├── music-dashboard.svg │ │ │ ├── music-filter.svg │ │ │ ├── music-library-2.svg │ │ │ ├── music-play.svg │ │ │ ├── music-playlist.svg │ │ │ ├── music-square-add.svg │ │ │ ├── music-square-remove.svg │ │ │ ├── music-square-search.svg │ │ │ ├── music-square.svg │ │ │ ├── music.svg │ │ │ ├── musicnote.svg │ │ │ ├── nebulas-(nas).svg │ │ │ ├── nem-(xem).svg │ │ │ ├── nexo-(nexo).svg │ │ │ ├── next.svg │ │ │ ├── note-1.svg │ │ │ ├── note-2.svg │ │ │ ├── note-21.svg │ │ │ ├── note-add.svg │ │ │ ├── note-favorite.svg │ │ │ ├── note-remove.svg │ │ │ ├── note-square.svg │ │ │ ├── note-text.svg │ │ │ ├── note.svg │ │ │ ├── notification-1.svg │ │ │ ├── notification-bing.svg │ │ │ ├── notification-circle.svg │ │ │ ├── notification-favorite.svg │ │ │ ├── notification-status.svg │ │ │ ├── notification.svg │ │ │ ├── ocean-protocol-(ocean).svg │ │ │ ├── okb-(okb).svg │ │ │ ├── omega-circle.svg │ │ │ ├── omega-square.svg │ │ │ ├── ontology-(ont).svg │ │ │ ├── paintbucket.svg │ │ │ ├── paperclip-2.svg │ │ │ ├── paperclip.svg │ │ │ ├── password-check.svg │ │ │ ├── path-2.svg │ │ │ ├── path-square.svg │ │ │ ├── path.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen-add.svg │ │ │ ├── pen-close.svg │ │ │ ├── pen-remove.svg │ │ │ ├── pen-tool-2.svg │ │ │ ├── pen-tool.svg │ │ │ ├── people.svg │ │ │ ├── percentage-circle.svg │ │ │ ├── percentage-square.svg │ │ │ ├── personalcard.svg │ │ │ ├── pet.svg │ │ │ ├── pharagraphspacing.svg │ │ │ ├── photoshop.svg │ │ │ ├── picture-frame.svg │ │ │ ├── play-add.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-cricle.svg │ │ │ ├── play-remove.svg │ │ │ ├── play.svg │ │ │ ├── polkadot-(dot).svg │ │ │ ├── polygon-(matic).svg │ │ │ ├── polyswarm-(nct).svg │ │ │ ├── presention-chart.svg │ │ │ ├── previous.svg │ │ │ ├── printer-slash.svg │ │ │ ├── printer.svg │ │ │ ├── profile-2user.svg │ │ │ ├── profile-add.svg │ │ │ ├── profile-circle.svg │ │ │ ├── profile-delete.svg │ │ │ ├── profile-remove.svg │ │ │ ├── profile-tick.svg │ │ │ ├── programming-arrow.svg │ │ │ ├── programming-arrows.svg │ │ │ ├── python.svg │ │ │ ├── quant-(qnt).svg │ │ │ ├── quote-down-circle.svg │ │ │ ├── quote-down-square.svg │ │ │ ├── quote-down.svg │ │ │ ├── quote-up-circle.svg │ │ │ ├── quote-up-square.svg │ │ │ ├── quote-up.svg │ │ │ ├── radar-1.svg │ │ │ ├── radar-2.svg │ │ │ ├── radar.svg │ │ │ ├── radio.svg │ │ │ ├── ram-2.svg │ │ │ ├── ram.svg │ │ │ ├── ranking-1.svg │ │ │ ├── ranking.svg │ │ │ ├── receipt-1.svg │ │ │ ├── receipt-2-1.svg │ │ │ ├── receipt-2.svg │ │ │ ├── receipt-add.svg │ │ │ ├── receipt-discount.svg │ │ │ ├── receipt-disscount.svg │ │ │ ├── receipt-edit.svg │ │ │ ├── receipt-item.svg │ │ │ ├── receipt-minus.svg │ │ │ ├── receipt-search.svg │ │ │ ├── receipt-square.svg │ │ │ ├── receipt-text.svg │ │ │ ├── receipt.svg │ │ │ ├── receive-square-2.svg │ │ │ ├── receive-square.svg │ │ │ ├── received.svg │ │ │ ├── record-circle.svg │ │ │ ├── record.svg │ │ │ ├── recovery-convert.svg │ │ │ ├── redo.svg │ │ │ ├── refresh-2.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-left-square.svg │ │ │ ├── refresh-right-square.svg │ │ │ ├── refresh-square-2.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-circle.svg │ │ │ ├── repeat.svg │ │ │ ├── repeate-music.svg │ │ │ ├── repeate-one.svg │ │ │ ├── reserve.svg │ │ │ ├── rotate-left-1.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right-1.svg │ │ │ ├── rotate-right.svg │ │ │ ├── route-square.svg │ │ │ ├── routing-2.svg │ │ │ ├── routing.svg │ │ │ ├── row-horizontal.svg │ │ │ ├── row-vertical.svg │ │ │ ├── ruler&pen.svg │ │ │ ├── ruler.svg │ │ │ ├── safe-home.svg │ │ │ ├── sagittarius.svg │ │ │ ├── save-2.svg │ │ │ ├── save-add.svg │ │ │ ├── save-minus.svg │ │ │ ├── save-remove.svg │ │ │ ├── scan-barcode.svg │ │ │ ├── scan.svg │ │ │ ├── scanner.svg │ │ │ ├── scanning.svg │ │ │ ├── scissor-1.svg │ │ │ ├── scissor.svg │ │ │ ├── screenmirroring.svg │ │ │ ├── scroll.svg │ │ │ ├── search-favorite-1.svg │ │ │ ├── search-favorite.svg │ │ │ ├── search-normal-1.svg │ │ │ ├── search-normal.svg │ │ │ ├── search-status-1.svg │ │ │ ├── search-status.svg │ │ │ ├── search-zoom-in-1.svg │ │ │ ├── search-zoom-in.svg │ │ │ ├── search-zoom-out-1.svg │ │ │ ├── search-zoom-out.svg │ │ │ ├── security-card.svg │ │ │ ├── security-safe.svg │ │ │ ├── security-time.svg │ │ │ ├── security-user.svg │ │ │ ├── security.svg │ │ │ ├── send-1.svg │ │ │ ├── send-2.svg │ │ │ ├── send-sqaure-2.svg │ │ │ ├── send-square.svg │ │ │ ├── send.svg │ │ │ ├── setting-2.svg │ │ │ ├── setting-3.svg │ │ │ ├── setting-4.svg │ │ │ ├── setting-5.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-1.svg │ │ │ ├── shapes.svg │ │ │ ├── share.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-search.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-tick.svg │ │ │ ├── ship.svg │ │ │ ├── shop-add.svg │ │ │ ├── shop-remove.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shuffle.svg │ │ │ ├── siacoin-(sc).svg │ │ │ ├── sidebar-bottom.svg │ │ │ ├── sidebar-left.svg │ │ │ ├── sidebar-right.svg │ │ │ ├── sidebar-top.svg │ │ │ ├── signpost.svg │ │ │ ├── simcard-1.svg │ │ │ ├── simcard-2.svg │ │ │ ├── simcard.svg │ │ │ ├── size.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── slider-horizontal-1.svg │ │ │ ├── slider-horizontal.svg │ │ │ ├── slider-vertical-1.svg │ │ │ ├── slider-vertical.svg │ │ │ ├── slider.svg │ │ │ ├── smallcaps.svg │ │ │ ├── smart-car.svg │ │ │ ├── smart-home.svg │ │ │ ├── smileys.svg │ │ │ ├── sms-edit.svg │ │ │ ├── sms-notification.svg │ │ │ ├── sms-search.svg │ │ │ ├── sms-star.svg │ │ │ ├── sms-tracking.svg │ │ │ ├── sms.svg │ │ │ ├── snapchat.svg │ │ │ ├── solana-(sol).svg │ │ │ ├── sort.svg │ │ │ ├── sound.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── stacks-(stx).svg │ │ │ ├── star-1.svg │ │ │ ├── star-slash.svg │ │ │ ├── star.svg │ │ │ ├── status-up.svg │ │ │ ├── status.svg │ │ │ ├── stellar-(xlm).svg │ │ │ ├── sticker.svg │ │ │ ├── stickynote.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── story.svg │ │ │ ├── strongbox-2.svg │ │ │ ├── strongbox.svg │ │ │ ├── subtitle.svg │ │ │ ├── sun-1.svg │ │ │ ├── sun-fog.svg │ │ │ ├── sun.svg │ │ │ ├── tag-2.svg │ │ │ ├── tag-cross.svg │ │ │ ├── tag-right.svg │ │ │ ├── tag-user.svg │ │ │ ├── tag.svg │ │ │ ├── task-square.svg │ │ │ ├── task.svg │ │ │ ├── teacher.svg │ │ │ ├── tenx-(pay).svg │ │ │ ├── tether-(usdt).svg │ │ │ ├── text-block.svg │ │ │ ├── text-bold.svg │ │ │ ├── text-italic.svg │ │ │ ├── text-underline.svg │ │ │ ├── text.svg │ │ │ ├── textalign-center.svg │ │ │ ├── textalign-justifycenter.svg │ │ │ ├── textalign-justifyleft.svg │ │ │ ├── textalign-justifyright.svg │ │ │ ├── textalign-left.svg │ │ │ ├── textalign-right.svg │ │ │ ├── the-graph-(grt).svg │ │ │ ├── theta-(theta).svg │ │ │ ├── thorchain-(rune).svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick-square.svg │ │ │ ├── ticket-2.svg │ │ │ ├── ticket-discount.svg │ │ │ ├── ticket-expired.svg │ │ │ ├── ticket-star.svg │ │ │ ├── ticket.svg │ │ │ ├── timer-1.svg │ │ │ ├── timer-pause.svg │ │ │ ├── timer-start.svg │ │ │ ├── timer.svg │ │ │ ├── toggle-off-circle.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on-circle.svg │ │ │ ├── toggle-on.svg │ │ │ ├── trade.svg │ │ │ ├── transaction-minus.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── trend-down.svg │ │ │ ├── trend-up.svg │ │ │ ├── triangle.svg │ │ │ ├── trontron-(trx).svg │ │ │ ├── truck-fast.svg │ │ │ ├── truck-tick.svg │ │ │ ├── truck.svg │ │ │ ├── trush-square.svg │ │ │ ├── twitch.svg │ │ │ ├── ui8.svg │ │ │ ├── undo.svg │ │ │ ├── unlimited.svg │ │ │ ├── unlock.svg │ │ │ ├── usd-coin-(usdc).svg │ │ │ ├── user-add.svg │ │ │ ├── user-cirlce-add.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-octagon.svg │ │ │ ├── user-remove.svg │ │ │ ├── user-search.svg │ │ │ ├── user-square.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tick.svg │ │ │ ├── user.svg │ │ │ ├── velas-(vlx).svg │ │ │ ├── verify.svg │ │ │ ├── vibe-(vibe).svg │ │ │ ├── video-add.svg │ │ │ ├── video-circle.svg │ │ │ ├── video-horizontal.svg │ │ │ ├── video-octagon.svg │ │ │ ├── video-play.svg │ │ │ ├── video-remove.svg │ │ │ ├── video-slash.svg │ │ │ ├── video-square.svg │ │ │ ├── video-tick.svg │ │ │ ├── video-time.svg │ │ │ ├── video-vertical.svg │ │ │ ├── video.svg │ │ │ ├── voice-cricle.svg │ │ │ ├── voice-square.svg │ │ │ ├── volume-cross.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-1.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── vuesax.svg │ │ │ ├── wallet-1.svg │ │ │ ├── wallet-2.svg │ │ │ ├── wallet-3.svg │ │ │ ├── wallet-add-1.svg │ │ │ ├── wallet-add.svg │ │ │ ├── wallet-check.svg │ │ │ ├── wallet-minus.svg │ │ │ ├── wallet-money.svg │ │ │ ├── wallet-remove.svg │ │ │ ├── wallet-search.svg │ │ │ ├── wallet.svg │ │ │ ├── wanchain-(wan)-1.svg │ │ │ ├── wanchain-(wan).svg │ │ │ ├── warning-2.svg │ │ │ ├── watch-status.svg │ │ │ ├── watch.svg │ │ │ ├── weight-1.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-square.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-2.svg │ │ │ ├── wind.svg │ │ │ ├── windows.svg │ │ │ ├── wing-(wing).svg │ │ │ ├── woman.svg │ │ │ ├── xd.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xrp-(xrp).svg │ │ │ ├── youtube.svg │ │ │ ├── zel-(zel).svg │ │ │ └── zoom.svg │ │ ├── bulk │ │ │ ├── 24-support.svg │ │ │ ├── 3d-cube-scan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── 3d-square.svg │ │ │ ├── 3dcube.svg │ │ │ ├── 3square.svg │ │ │ ├── aave-(aave).svg │ │ │ ├── activity.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-square.svg │ │ │ ├── add.svg │ │ │ ├── additem.svg │ │ │ ├── airdrop.svg │ │ │ ├── airplane-square.svg │ │ │ ├── airplane.svg │ │ │ ├── airpod.svg │ │ │ ├── airpods.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-horizontally.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-vertically.svg │ │ │ ├── android.svg │ │ │ ├── ankr-(ankr).svg │ │ │ ├── apple.svg │ │ │ ├── aquarius.svg │ │ │ ├── archive-1.svg │ │ │ ├── archive-2.svg │ │ │ ├── archive-add.svg │ │ │ ├── archive-book.svg │ │ │ ├── archive-minus.svg │ │ │ ├── archive-slash.svg │ │ │ ├── archive-tick.svg │ │ │ ├── archive.svg │ │ │ ├── arrange-circle-2.svg │ │ │ ├── arrange-circle.svg │ │ │ ├── arrange-square-2.svg │ │ │ ├── arrange-square.svg │ │ │ ├── arrow-2.svg │ │ │ ├── arrow-3.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down-1.svg │ │ │ ├── arrow-down-2.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-1.svg │ │ │ ├── arrow-left-2.svg │ │ │ ├── arrow-left-3.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-1.svg │ │ │ ├── arrow-right-2.svg │ │ │ ├── arrow-right-3.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-square.svg │ │ │ ├── arrow-swap-horizontal.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-1.svg │ │ │ ├── arrow-up-2.svg │ │ │ ├── arrow-up-3.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── attach-circle.svg │ │ │ ├── attach-square.svg │ │ │ ├── audio-square.svg │ │ │ ├── augur-(rep).svg │ │ │ ├── autobrightness.svg │ │ │ ├── autonio-(niox).svg │ │ │ ├── avalanche-(avax).svg │ │ │ ├── award.svg │ │ │ ├── back-square.svg │ │ │ ├── backward-10-seconds.svg │ │ │ ├── backward-15-seconds.svg │ │ │ ├── backward-5-seconds.svg │ │ │ ├── backward-item.svg │ │ │ ├── backward.svg │ │ │ ├── bag-2.svg │ │ │ ├── bag-cross-1.svg │ │ │ ├── bag-cross.svg │ │ │ ├── bag-happy.svg │ │ │ ├── bag-tick-2.svg │ │ │ ├── bag-tick.svg │ │ │ ├── bag-timer.svg │ │ │ ├── bag.svg │ │ │ ├── bank.svg │ │ │ ├── barcode.svg │ │ │ ├── battery-3full.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-disable.svg │ │ │ ├── battery-empty-1.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── be.svg │ │ │ ├── bezier.svg │ │ │ ├── bill.svg │ │ │ ├── binance-coin-(bnb).svg │ │ │ ├── binance-usd-(busd).svg │ │ │ ├── bitcoin-(btc).svg │ │ │ ├── bitcoin-card.svg │ │ │ ├── bitcoin-convert.svg │ │ │ ├── bitcoin-refresh.svg │ │ │ ├── blend-2.svg │ │ │ ├── blend.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-2.svg │ │ │ ├── bluetooth-circle.svg │ │ │ ├── bluetooth-rectangle.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur.svg │ │ │ ├── book-1.svg │ │ │ ├── book-saved.svg │ │ │ ├── book-square.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-2.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootstrap.svg │ │ │ ├── box-1.svg │ │ │ ├── box-2.svg │ │ │ ├── box-add.svg │ │ │ ├── box-remove.svg │ │ │ ├── box-search.svg │ │ │ ├── box-tick.svg │ │ │ ├── box-time.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brifecase-cross.svg │ │ │ ├── brifecase-tick.svg │ │ │ ├── brifecase-timer.svg │ │ │ ├── broom.svg │ │ │ ├── brush-1.svg │ │ │ ├── brush-2.svg │ │ │ ├── brush-3.svg │ │ │ ├── brush-4.svg │ │ │ ├── brush.svg │ │ │ ├── bubble.svg │ │ │ ├── bucket-circle.svg │ │ │ ├── bucket-square.svg │ │ │ ├── bucket.svg │ │ │ ├── building-3.svg │ │ │ ├── building-4.svg │ │ │ ├── building.svg │ │ │ ├── buildings-2.svg │ │ │ ├── buildings.svg │ │ │ ├── buliding.svg │ │ │ ├── bus.svg │ │ │ ├── buy-crypto.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-1.svg │ │ │ ├── calendar-2.svg │ │ │ ├── calendar-add.svg │ │ │ ├── calendar-circle.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-remove.svg │ │ │ ├── calendar-search.svg │ │ │ ├── calendar-tick.svg │ │ │ ├── calendar.svg │ │ │ ├── call-add.svg │ │ │ ├── call-calling.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-minus.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-received.svg │ │ │ ├── call-remove.svg │ │ │ ├── call-slash.svg │ │ │ ├── call.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── candle-2.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── card-add.svg │ │ │ ├── card-coin.svg │ │ │ ├── card-edit.svg │ │ │ ├── card-pos.svg │ │ │ ├── card-receive.svg │ │ │ ├── card-remove-1.svg │ │ │ ├── card-remove.svg │ │ │ ├── card-send.svg │ │ │ ├── card-slash.svg │ │ │ ├── card-tick-1.svg │ │ │ ├── card-tick.svg │ │ │ ├── card.svg │ │ │ ├── cardano-(ada).svg │ │ │ ├── cards.svg │ │ │ ├── category-2.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── celo-(celo).svg │ │ │ ├── celsius-(cel)-.svg │ │ │ ├── chainlink-(link).svg │ │ │ ├── chart-1.svg │ │ │ ├── chart-2.svg │ │ │ ├── chart-21.svg │ │ │ ├── chart-3.svg │ │ │ ├── chart-square.svg │ │ │ ├── chart-success.svg │ │ │ ├── chart.svg │ │ │ ├── check.svg │ │ │ ├── chrome.svg │ │ │ ├── civic-(cvc).svg │ │ │ ├── clipboard-close.svg │ │ │ ├── clipboard-export.svg │ │ │ ├── clipboard-import.svg │ │ │ ├── clipboard-text.svg │ │ │ ├── clipboard-tick.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-1.svg │ │ │ ├── clock.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-square.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-change.svg │ │ │ ├── cloud-connection.svg │ │ │ ├── cloud-cross.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-notif.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-remove.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sunny.svg │ │ │ ├── cloud.svg │ │ │ ├── code-1.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── coin-1.svg │ │ │ ├── coin.svg │ │ │ ├── color-swatch.svg │ │ │ ├── colorfilter.svg │ │ │ ├── colors-square.svg │ │ │ ├── command-square.svg │ │ │ ├── command.svg │ │ │ ├── component.svg │ │ │ ├── computing.svg │ │ │ ├── convert-3d-cube.svg │ │ │ ├── convert-card.svg │ │ │ ├── convert.svg │ │ │ ├── convertshape-2.svg │ │ │ ├── convertshape.svg │ │ │ ├── copy-success.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── courthouse.svg │ │ │ ├── cpu-charge.svg │ │ │ ├── cpu-setting.svg │ │ │ ├── cpu.svg │ │ │ ├── creative-commons.svg │ │ │ ├── crop.svg │ │ │ ├── crown-1.svg │ │ │ ├── crown.svg │ │ │ ├── cup.svg │ │ │ ├── dai-(dai).svg │ │ │ ├── danger.svg │ │ │ ├── dash-(dash).svg │ │ │ ├── data-2.svg │ │ │ ├── data.svg │ │ │ ├── decred-(dcr).svg │ │ │ ├── dent-(dent).svg │ │ │ ├── designtools.svg │ │ │ ├── device-message.svg │ │ │ ├── devices-1.svg │ │ │ ├── devices.svg │ │ │ ├── diagram.svg │ │ │ ├── diamonds.svg │ │ │ ├── direct-down.svg │ │ │ ├── direct-inbox.svg │ │ │ ├── direct-left.svg │ │ │ ├── direct-normal.svg │ │ │ ├── direct-notification.svg │ │ │ ├── direct-right.svg │ │ │ ├── direct-send.svg │ │ │ ├── direct-up.svg │ │ │ ├── direct.svg │ │ │ ├── directbox-default.svg │ │ │ ├── directbox-notif.svg │ │ │ ├── directbox-receive.svg │ │ │ ├── directbox-send.svg │ │ │ ├── discount-circle.svg │ │ │ ├── discount-shape.svg │ │ │ ├── discover-1.svg │ │ │ ├── discover.svg │ │ │ ├── dislike.svg │ │ │ ├── document-1.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-code-2.svg │ │ │ ├── document-code.svg │ │ │ ├── document-copy.svg │ │ │ ├── document-download.svg │ │ │ ├── document-favorite.svg │ │ │ ├── document-filter.svg │ │ │ ├── document-forward.svg │ │ │ ├── document-like.svg │ │ │ ├── document-normal.svg │ │ │ ├── document-previous.svg │ │ │ ├── document-sketch.svg │ │ │ ├── document-text-1.svg │ │ │ ├── document-text.svg │ │ │ ├── document-upload.svg │ │ │ ├── document.svg │ │ │ ├── dollar-circle.svg │ │ │ ├── dollar-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── driver-2.svg │ │ │ ├── driver-refresh.svg │ │ │ ├── driver.svg │ │ │ ├── driving.svg │ │ │ ├── drop.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit.svg │ │ │ ├── educare-(ekt).svg │ │ │ ├── electricity.svg │ │ │ ├── element-1.svg │ │ │ ├── element-2.svg │ │ │ ├── element-3.svg │ │ │ ├── element-4.svg │ │ │ ├── element-equal.svg │ │ │ ├── element-plus.svg │ │ │ ├── emercoin-(emc).svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-normal.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── empty-wallet-add.svg │ │ │ ├── empty-wallet-change.svg │ │ │ ├── empty-wallet-remove.svg │ │ │ ├── empty-wallet-tick.svg │ │ │ ├── empty-wallet-time.svg │ │ │ ├── empty-wallet.svg │ │ │ ├── enjin-coin-(enj).svg │ │ │ ├── eos-(eos).svg │ │ │ ├── eraser-1.svg │ │ │ ├── eraser.svg │ │ │ ├── ethereum-(eth).svg │ │ │ ├── ethereum-classic-(etc).svg │ │ │ ├── export-1.svg │ │ │ ├── export-2.svg │ │ │ ├── export-3.svg │ │ │ ├── export.svg │ │ │ ├── external-drive.svg │ │ │ ├── eye-slash.svg │ │ │ ├── facebook.svg │ │ │ ├── fatrows.svg │ │ │ ├── favorite-chart.svg │ │ │ ├── figma-1.svg │ │ │ ├── figma.svg │ │ │ ├── filter-add.svg │ │ │ ├── filter-edit.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter-search.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter-tick.svg │ │ │ ├── filter.svg │ │ │ ├── finger-cricle.svg │ │ │ ├── finger-scan.svg │ │ │ ├── firstline.svg │ │ │ ├── flag-2.svg │ │ │ ├── flag.svg │ │ │ ├── flash-1.svg │ │ │ ├── flash-circle-1.svg │ │ │ ├── flash-circle.svg │ │ │ ├── flash-slash.svg │ │ │ ├── flash.svg │ │ │ ├── folder-2.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cloud.svg │ │ │ ├── folder-connection.svg │ │ │ ├── folder-cross.svg │ │ │ ├── folder-favorite.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forbidden-2.svg │ │ │ ├── forbidden.svg │ │ │ ├── format-circle.svg │ │ │ ├── format-square.svg │ │ │ ├── forward-10-seconds.svg │ │ │ ├── forward-15-seconds.svg │ │ │ ├── forward-5-seconds.svg │ │ │ ├── forward-item.svg │ │ │ ├── forward-square.svg │ │ │ ├── forward.svg │ │ │ ├── frame-1.svg │ │ │ ├── frame-2.svg │ │ │ ├── frame-3.svg │ │ │ ├── frame-4.svg │ │ │ ├── frame.svg │ │ │ ├── framer.svg │ │ │ ├── ftx-token-(ftt).svg │ │ │ ├── gallery-add.svg │ │ │ ├── gallery-edit.svg │ │ │ ├── gallery-favorite.svg │ │ │ ├── gallery-import.svg │ │ │ ├── gallery-remove.svg │ │ │ ├── gallery-slash.svg │ │ │ ├── gallery-tick.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gameboy.svg │ │ │ ├── gas-station.svg │ │ │ ├── gemini-2.svg │ │ │ ├── gemini.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── glass-1.svg │ │ │ ├── glass.svg │ │ │ ├── global-edit.svg │ │ │ ├── global-refresh.svg │ │ │ ├── global-search.svg │ │ │ ├── global.svg │ │ │ ├── google-1.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── gps-slash.svg │ │ │ ├── gps.svg │ │ │ ├── grammerly.svg │ │ │ ├── graph.svg │ │ │ ├── grid-1.svg │ │ │ ├── grid-2.svg │ │ │ ├── grid-3.svg │ │ │ ├── grid-4.svg │ │ │ ├── grid-5.svg │ │ │ ├── grid-6.svg │ │ │ ├── grid-7.svg │ │ │ ├── grid-8.svg │ │ │ ├── grid-9.svg │ │ │ ├── grid-edit.svg │ │ │ ├── grid-eraser.svg │ │ │ ├── grid-lock.svg │ │ │ ├── group-1.svg │ │ │ ├── group.svg │ │ │ ├── happyemoji.svg │ │ │ ├── harmony-(one).svg │ │ │ ├── hashtag-1.svg │ │ │ ├── hashtag-down.svg │ │ │ ├── hashtag-up.svg │ │ │ ├── hashtag.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones.svg │ │ │ ├── health.svg │ │ │ ├── heart-add.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-edit.svg │ │ │ ├── heart-remove.svg │ │ │ ├── heart-search.svg │ │ │ ├── heart-slash.svg │ │ │ ├── heart-tick.svg │ │ │ ├── heart.svg │ │ │ ├── hedera-hashgraph-(hbar).svg │ │ │ ├── hex-(hex).svg │ │ │ ├── hierarchy-2.svg │ │ │ ├── hierarchy-3.svg │ │ │ ├── hierarchy-square-2.svg │ │ │ ├── hierarchy-square-3.svg │ │ │ ├── hierarchy-square.svg │ │ │ ├── hierarchy.svg │ │ │ ├── home-1.svg │ │ │ ├── home-2.svg │ │ │ ├── home-hashtag.svg │ │ │ ├── home-trend-down.svg │ │ │ ├── home-trend-up.svg │ │ │ ├── home-wifi.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── house-2.svg │ │ │ ├── house.svg │ │ │ ├── html-3.svg │ │ │ ├── html-5.svg │ │ │ ├── huobi-token-(ht).svg │ │ │ ├── icon-(icx).svg │ │ │ ├── illustrator.svg │ │ │ ├── image.svg │ │ │ ├── import-1.svg │ │ │ ├── import-2.svg │ │ │ ├── import.svg │ │ │ ├── info-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── iost-(iost).svg │ │ │ ├── java-script.svg │ │ │ ├── js.svg │ │ │ ├── judge.svg │ │ │ ├── kanban.svg │ │ │ ├── key-square.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-open.svg │ │ │ ├── keyboard.svg │ │ │ ├── kyber-network-(knc).svg │ │ │ ├── lamp-1.svg │ │ │ ├── lamp-charge.svg │ │ │ ├── lamp-on.svg │ │ │ ├── lamp-slash.svg │ │ │ ├── lamp.svg │ │ │ ├── language-circle.svg │ │ │ ├── language-square.svg │ │ │ ├── layer.svg │ │ │ ├── level.svg │ │ │ ├── lifebuoy.svg │ │ │ ├── like-1.svg │ │ │ ├── like-dislike.svg │ │ │ ├── like-shapes.svg │ │ │ ├── like-tag.svg │ │ │ ├── like.svg │ │ │ ├── link-1.svg │ │ │ ├── link-2.svg │ │ │ ├── link-21.svg │ │ │ ├── link-circle.svg │ │ │ ├── link-square.svg │ │ │ ├── link.svg │ │ │ ├── litecoin(ltc).svg │ │ │ ├── location-add.svg │ │ │ ├── location-cross.svg │ │ │ ├── location-minus.svg │ │ │ ├── location-slash.svg │ │ │ ├── location-tick.svg │ │ │ ├── location.svg │ │ │ ├── lock-1.svg │ │ │ ├── lock-circle.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── login-1.svg │ │ │ ├── login.svg │ │ │ ├── logout-1.svg │ │ │ ├── logout.svg │ │ │ ├── lovely.svg │ │ │ ├── magic-star.svg │ │ │ ├── magicpen.svg │ │ │ ├── main-component.svg │ │ │ ├── maker-(mkr).svg │ │ │ ├── man.svg │ │ │ ├── map-1.svg │ │ │ ├── map.svg │ │ │ ├── mask-1.svg │ │ │ ├── mask-2.svg │ │ │ ├── mask.svg │ │ │ ├── math.svg │ │ │ ├── maximize-1.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize-21.svg │ │ │ ├── maximize-3.svg │ │ │ ├── maximize-4.svg │ │ │ ├── maximize.svg │ │ │ ├── medal-star.svg │ │ │ ├── medal.svg │ │ │ ├── menu-1.svg │ │ │ ├── menu-board.svg │ │ │ ├── menu.svg │ │ │ ├── message-2.svg │ │ │ ├── message-add-1.svg │ │ │ ├── message-add.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-edit.svg │ │ │ ├── message-favorite.svg │ │ │ ├── message-minus.svg │ │ │ ├── message-notif.svg │ │ │ ├── message-programming.svg │ │ │ ├── message-question.svg │ │ │ ├── message-remove.svg │ │ │ ├── message-search.svg │ │ │ ├── message-square.svg │ │ │ ├── message-text-1.svg │ │ │ ├── message-text.svg │ │ │ ├── message-tick.svg │ │ │ ├── message-time.svg │ │ │ ├── message.svg │ │ │ ├── messages-1.svg │ │ │ ├── messages-2.svg │ │ │ ├── messages-3.svg │ │ │ ├── messages.svg │ │ │ ├── messenger.svg │ │ │ ├── microphone-2.svg │ │ │ ├── microphone-slash-1.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── milk.svg │ │ │ ├── mini-music-sqaure.svg │ │ │ ├── minus-cirlce.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mirror.svg │ │ │ ├── mirroring-screen.svg │ │ │ ├── mobile-programming.svg │ │ │ ├── mobile.svg │ │ │ ├── money-2.svg │ │ │ ├── money-3.svg │ │ │ ├── money-4.svg │ │ │ ├── money-add.svg │ │ │ ├── money-change.svg │ │ │ ├── money-forbidden.svg │ │ │ ├── money-recive.svg │ │ │ ├── money-remove.svg │ │ │ ├── money-send.svg │ │ │ ├── money-tick.svg │ │ │ ├── money-time.svg │ │ │ ├── money.svg │ │ │ ├── moneys.svg │ │ │ ├── monitor-mobbile.svg │ │ │ ├── monitor-recorder.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-2.svg │ │ │ ├── more-circle.svg │ │ │ ├── more-square.svg │ │ │ ├── more.svg │ │ │ ├── mouse-1.svg │ │ │ ├── mouse-circle.svg │ │ │ ├── mouse-square.svg │ │ │ ├── mouse.svg │ │ │ ├── music-circle.svg │ │ │ ├── music-dashboard.svg │ │ │ ├── music-filter.svg │ │ │ ├── music-library-2.svg │ │ │ ├── music-play.svg │ │ │ ├── music-playlist.svg │ │ │ ├── music-square-add.svg │ │ │ ├── music-square-remove.svg │ │ │ ├── music-square-search.svg │ │ │ ├── music-square.svg │ │ │ ├── music.svg │ │ │ ├── musicnote.svg │ │ │ ├── nebulas-(nas).svg │ │ │ ├── nem-(xem).svg │ │ │ ├── next.svg │ │ │ ├── note-1.svg │ │ │ ├── note-2.svg │ │ │ ├── note-21.svg │ │ │ ├── note-add.svg │ │ │ ├── note-favorite.svg │ │ │ ├── note-remove.svg │ │ │ ├── note-square.svg │ │ │ ├── note-text.svg │ │ │ ├── note.svg │ │ │ ├── notification-1.svg │ │ │ ├── notification-bing.svg │ │ │ ├── notification-circle.svg │ │ │ ├── notification-favorite.svg │ │ │ ├── notification-status.svg │ │ │ ├── notification.svg │ │ │ ├── ocean-protocol-(ocean).svg │ │ │ ├── okb-(okb).svg │ │ │ ├── omega-circle.svg │ │ │ ├── omega-square.svg │ │ │ ├── ontology-(ont).svg │ │ │ ├── paintbucket.svg │ │ │ ├── paperclip-2.svg │ │ │ ├── paperclip.svg │ │ │ ├── password-check.svg │ │ │ ├── path-2.svg │ │ │ ├── path-square.svg │ │ │ ├── path.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen-add.svg │ │ │ ├── pen-close.svg │ │ │ ├── pen-remove.svg │ │ │ ├── pen-tool-2.svg │ │ │ ├── pen-tool.svg │ │ │ ├── people.svg │ │ │ ├── percentage-circle.svg │ │ │ ├── percentage-square.svg │ │ │ ├── personalcard.svg │ │ │ ├── pet.svg │ │ │ ├── pharagraphspacing.svg │ │ │ ├── photoshop.svg │ │ │ ├── picture-frame.svg │ │ │ ├── play-add.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-cricle.svg │ │ │ ├── play-remove.svg │ │ │ ├── play.svg │ │ │ ├── polkadot-(dot).svg │ │ │ ├── polygon-(matic).svg │ │ │ ├── polyswarm-(nct).svg │ │ │ ├── presention-chart.svg │ │ │ ├── previous.svg │ │ │ ├── printer-slash.svg │ │ │ ├── printer.svg │ │ │ ├── profile-2user.svg │ │ │ ├── profile-add.svg │ │ │ ├── profile-circle.svg │ │ │ ├── profile-delete.svg │ │ │ ├── profile-remove.svg │ │ │ ├── profile-tick.svg │ │ │ ├── profile.svg │ │ │ ├── programming-arrow.svg │ │ │ ├── programming-arrows.svg │ │ │ ├── python.svg │ │ │ ├── quant-(qnt).svg │ │ │ ├── quote-down-circle.svg │ │ │ ├── quote-down-square.svg │ │ │ ├── quote-down.svg │ │ │ ├── quote-up-circle.svg │ │ │ ├── quote-up-square.svg │ │ │ ├── quote-up.svg │ │ │ ├── radar-1.svg │ │ │ ├── radar-2.svg │ │ │ ├── radar.svg │ │ │ ├── radio.svg │ │ │ ├── ram-2.svg │ │ │ ├── ram.svg │ │ │ ├── ranking-1.svg │ │ │ ├── ranking.svg │ │ │ ├── receipt-1.svg │ │ │ ├── receipt-2-1.svg │ │ │ ├── receipt-2.svg │ │ │ ├── receipt-add.svg │ │ │ ├── receipt-discount.svg │ │ │ ├── receipt-disscount.svg │ │ │ ├── receipt-edit.svg │ │ │ ├── receipt-item.svg │ │ │ ├── receipt-minus.svg │ │ │ ├── receipt-search.svg │ │ │ ├── receipt-square.svg │ │ │ ├── receipt-text.svg │ │ │ ├── receipt.svg │ │ │ ├── receive-square-2.svg │ │ │ ├── receive-square.svg │ │ │ ├── received.svg │ │ │ ├── record-circle.svg │ │ │ ├── record.svg │ │ │ ├── recovery-convert.svg │ │ │ ├── redo.svg │ │ │ ├── refresh-2.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-left-square.svg │ │ │ ├── refresh-right-square.svg │ │ │ ├── refresh-square-2.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-circle.svg │ │ │ ├── repeat.svg │ │ │ ├── repeate-music.svg │ │ │ ├── repeate-one.svg │ │ │ ├── reserve.svg │ │ │ ├── rotate-left-1.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right-1.svg │ │ │ ├── rotate-right.svg │ │ │ ├── route-square.svg │ │ │ ├── routing-2.svg │ │ │ ├── routing.svg │ │ │ ├── row-horizontal.svg │ │ │ ├── row-vertical.svg │ │ │ ├── ruler&pen.svg │ │ │ ├── ruler.svg │ │ │ ├── safe-home.svg │ │ │ ├── sagittarius.svg │ │ │ ├── save-2.svg │ │ │ ├── save-add.svg │ │ │ ├── save-minus.svg │ │ │ ├── save-remove.svg │ │ │ ├── scan-barcode.svg │ │ │ ├── scan.svg │ │ │ ├── scanner.svg │ │ │ ├── scanning.svg │ │ │ ├── scissor-1.svg │ │ │ ├── scissor.svg │ │ │ ├── screenmirroring.svg │ │ │ ├── scroll.svg │ │ │ ├── search-favorite-1.svg │ │ │ ├── search-favorite.svg │ │ │ ├── search-normal-1.svg │ │ │ ├── search-normal.svg │ │ │ ├── search-status-1.svg │ │ │ ├── search-status.svg │ │ │ ├── search-zoom-in-1.svg │ │ │ ├── search-zoom-in.svg │ │ │ ├── search-zoom-out-1.svg │ │ │ ├── search-zoom-out.svg │ │ │ ├── security-card.svg │ │ │ ├── security-safe.svg │ │ │ ├── security-time.svg │ │ │ ├── security-user.svg │ │ │ ├── security.svg │ │ │ ├── send-1.svg │ │ │ ├── send-2.svg │ │ │ ├── send-sqaure-2.svg │ │ │ ├── send-square.svg │ │ │ ├── send.svg │ │ │ ├── setting-2.svg │ │ │ ├── setting-3.svg │ │ │ ├── setting-4.svg │ │ │ ├── setting-5.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-1.svg │ │ │ ├── shapes.svg │ │ │ ├── share.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-search.svg │ │ │ ├── shield-security.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-tick.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shop-add.svg │ │ │ ├── shop-remove.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shuffle.svg │ │ │ ├── siacoin-(sc).svg │ │ │ ├── sidebar-bottom.svg │ │ │ ├── sidebar-left.svg │ │ │ ├── sidebar-right.svg │ │ │ ├── sidebar-top.svg │ │ │ ├── signpost.svg │ │ │ ├── simcard-1.svg │ │ │ ├── simcard-2.svg │ │ │ ├── simcard.svg │ │ │ ├── size.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── slider-horizontal-1.svg │ │ │ ├── slider-horizontal.svg │ │ │ ├── slider-vertical-1.svg │ │ │ ├── slider-vertical.svg │ │ │ ├── slider.svg │ │ │ ├── smallcaps.svg │ │ │ ├── smart-car.svg │ │ │ ├── smart-home.svg │ │ │ ├── smileys.svg │ │ │ ├── sms-edit.svg │ │ │ ├── sms-notification.svg │ │ │ ├── sms-search.svg │ │ │ ├── sms-star.svg │ │ │ ├── sms-tracking.svg │ │ │ ├── sms.svg │ │ │ ├── snapchat.svg │ │ │ ├── solana-(sol).svg │ │ │ ├── sort.svg │ │ │ ├── sound.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── stacks-(stx).svg │ │ │ ├── star-1.svg │ │ │ ├── star-slash.svg │ │ │ ├── star.svg │ │ │ ├── status-up.svg │ │ │ ├── status.svg │ │ │ ├── sticker.svg │ │ │ ├── stickynote.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── story.svg │ │ │ ├── strongbox-2.svg │ │ │ ├── strongbox.svg │ │ │ ├── subtitle.svg │ │ │ ├── sun-1.svg │ │ │ ├── sun-fog.svg │ │ │ ├── sun.svg │ │ │ ├── tag-2.svg │ │ │ ├── tag-cross.svg │ │ │ ├── tag-right.svg │ │ │ ├── tag-user.svg │ │ │ ├── tag.svg │ │ │ ├── task-square.svg │ │ │ ├── task.svg │ │ │ ├── teacher.svg │ │ │ ├── tenx-(pay).svg │ │ │ ├── tether-(usdt).svg │ │ │ ├── text-block.svg │ │ │ ├── text-bold.svg │ │ │ ├── text-italic.svg │ │ │ ├── text-underline.svg │ │ │ ├── text.svg │ │ │ ├── textalign-center.svg │ │ │ ├── textalign-justifycenter.svg │ │ │ ├── textalign-justifyleft.svg │ │ │ ├── textalign-justifyright.svg │ │ │ ├── textalign-left.svg │ │ │ ├── textalign-right.svg │ │ │ ├── the-graph-(grt).svg │ │ │ ├── theta-(theta).svg │ │ │ ├── thorchain-(rune).svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick-square.svg │ │ │ ├── ticket-2.svg │ │ │ ├── ticket-discount.svg │ │ │ ├── ticket-expired.svg │ │ │ ├── ticket-star.svg │ │ │ ├── ticket.svg │ │ │ ├── timer-1.svg │ │ │ ├── timer-pause.svg │ │ │ ├── timer-start.svg │ │ │ ├── timer.svg │ │ │ ├── toggle-off-circle.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on-circle.svg │ │ │ ├── toggle-on.svg │ │ │ ├── trade.svg │ │ │ ├── transaction-minus.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── trend-down.svg │ │ │ ├── trend-up.svg │ │ │ ├── triangle.svg │ │ │ ├── trontron-(trx).svg │ │ │ ├── truck-remove.svg │ │ │ ├── truck-tick.svg │ │ │ ├── truck-time.svg │ │ │ ├── trush-square.svg │ │ │ ├── twitch.svg │ │ │ ├── ui8.svg │ │ │ ├── undo.svg │ │ │ ├── unlimited.svg │ │ │ ├── unlock.svg │ │ │ ├── usd-coin-(usdc).svg │ │ │ ├── user-add.svg │ │ │ ├── user-cirlce-add.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-octagon.svg │ │ │ ├── user-remove.svg │ │ │ ├── user-search.svg │ │ │ ├── user-square.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tick.svg │ │ │ ├── user.svg │ │ │ ├── velas-(vlx).svg │ │ │ ├── verify.svg │ │ │ ├── vibe-(vibe).svg │ │ │ ├── video-add.svg │ │ │ ├── video-circle.svg │ │ │ ├── video-horizontal.svg │ │ │ ├── video-octagon.svg │ │ │ ├── video-play.svg │ │ │ ├── video-remove.svg │ │ │ ├── video-slash.svg │ │ │ ├── video-square.svg │ │ │ ├── video-tick.svg │ │ │ ├── video-time.svg │ │ │ ├── video-vertical.svg │ │ │ ├── video.svg │ │ │ ├── voice-cricle.svg │ │ │ ├── voice-square.svg │ │ │ ├── volume-cross.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-1.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── vuesax.svg │ │ │ ├── wallet-1.svg │ │ │ ├── wallet-2.svg │ │ │ ├── wallet-3.svg │ │ │ ├── wallet-add-1.svg │ │ │ ├── wallet-add.svg │ │ │ ├── wallet-check.svg │ │ │ ├── wallet-minus.svg │ │ │ ├── wallet-money.svg │ │ │ ├── wallet-remove.svg │ │ │ ├── wallet-search.svg │ │ │ ├── wallet.svg │ │ │ ├── wanchain-(wan)-1.svg │ │ │ ├── wanchain-(wan).svg │ │ │ ├── warning-2.svg │ │ │ ├── watch-status.svg │ │ │ ├── watch.svg │ │ │ ├── weight-1.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-square.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-2.svg │ │ │ ├── wind.svg │ │ │ ├── windows.svg │ │ │ ├── wing-(wing).svg │ │ │ ├── woman.svg │ │ │ ├── xd.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xrp-(xrp).svg │ │ │ ├── youtube.svg │ │ │ ├── zel-(zel).svg │ │ │ └── zoom.svg │ │ ├── linear │ │ │ ├── 24-support.svg │ │ │ ├── 3d-cube-scan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── 3d-square.svg │ │ │ ├── 3dcube.svg │ │ │ ├── 3square.svg │ │ │ ├── aave-(aave).svg │ │ │ ├── activity.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-square.svg │ │ │ ├── add.svg │ │ │ ├── additem.svg │ │ │ ├── airdrop.svg │ │ │ ├── airplane-square.svg │ │ │ ├── airplane.svg │ │ │ ├── airpod.svg │ │ │ ├── airpods.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-horizontally.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-vertically.svg │ │ │ ├── android.svg │ │ │ ├── ankr-(ankr).svg │ │ │ ├── apple.svg │ │ │ ├── aquarius.svg │ │ │ ├── archive-1.svg │ │ │ ├── archive-add.svg │ │ │ ├── archive-book.svg │ │ │ ├── archive-minus.svg │ │ │ ├── archive-slash.svg │ │ │ ├── archive-tick.svg │ │ │ ├── archive.svg │ │ │ ├── arrange-circle-2.svg │ │ │ ├── arrange-circle.svg │ │ │ ├── arrange-square-2.svg │ │ │ ├── arrange-square.svg │ │ │ ├── arrow-2.svg │ │ │ ├── arrow-3.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-down-1.svg │ │ │ ├── arrow-down-2.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-1.svg │ │ │ ├── arrow-left-2.svg │ │ │ ├── arrow-left-3.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-1.svg │ │ │ ├── arrow-right-2.svg │ │ │ ├── arrow-right-3.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-right.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-square.svg │ │ │ ├── arrow-swap-horizontal.svg │ │ │ ├── arrow-up-1.svg │ │ │ ├── arrow-up-2.svg │ │ │ ├── arrow-up-3.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── attach-circle.svg │ │ │ ├── attach-square.svg │ │ │ ├── audio-square.svg │ │ │ ├── augur-(rep).svg │ │ │ ├── autobrightness.svg │ │ │ ├── autonio-(niox).svg │ │ │ ├── avalanche-(avax).svg │ │ │ ├── award.svg │ │ │ ├── back-square.svg │ │ │ ├── backward-10-seconds.svg │ │ │ ├── backward-15-seconds.svg │ │ │ ├── backward-5-seconds.svg │ │ │ ├── backward-item-1.svg │ │ │ ├── backward-item.svg │ │ │ ├── backward.svg │ │ │ ├── bag-2.svg │ │ │ ├── bag-cross-1.svg │ │ │ ├── bag-cross.svg │ │ │ ├── bag-happy.svg │ │ │ ├── bag-tick-2.svg │ │ │ ├── bag-tick.svg │ │ │ ├── bag-timer.svg │ │ │ ├── bag.svg │ │ │ ├── bank.svg │ │ │ ├── barcode.svg │ │ │ ├── battery-3full.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-disable.svg │ │ │ ├── battery-empty-1.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── be.svg │ │ │ ├── bezier-1.svg │ │ │ ├── bezier.svg │ │ │ ├── bill.svg │ │ │ ├── binance-coin-(bnb).svg │ │ │ ├── binance-usd-(busd).svg │ │ │ ├── bitcoin-(btc).svg │ │ │ ├── bitcoin-card.svg │ │ │ ├── bitcoin-convert.svg │ │ │ ├── bitcoin-refresh.svg │ │ │ ├── blend-2.svg │ │ │ ├── blend.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-2.svg │ │ │ ├── bluetooth-circle.svg │ │ │ ├── bluetooth-rectangle.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur-1.svg │ │ │ ├── blur.svg │ │ │ ├── book-1.svg │ │ │ ├── book-saved.svg │ │ │ ├── book-square.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-2.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootsrap.svg │ │ │ ├── box-1.svg │ │ │ ├── box-2.svg │ │ │ ├── box-add.svg │ │ │ ├── box-remove.svg │ │ │ ├── box-search.svg │ │ │ ├── box-tick.svg │ │ │ ├── box-time.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brifecase-cross.svg │ │ │ ├── brifecase-tick.svg │ │ │ ├── brifecase-timer.svg │ │ │ ├── broom.svg │ │ │ ├── brush-1.svg │ │ │ ├── brush-2.svg │ │ │ ├── brush-3.svg │ │ │ ├── brush.svg │ │ │ ├── bubble.svg │ │ │ ├── bucket-circle-1.svg │ │ │ ├── bucket-circle.svg │ │ │ ├── bucket-square-1.svg │ │ │ ├── bucket-square.svg │ │ │ ├── building-3.svg │ │ │ ├── building-4.svg │ │ │ ├── building.svg │ │ │ ├── buildings-2.svg │ │ │ ├── buildings.svg │ │ │ ├── buliding.svg │ │ │ ├── bus.svg │ │ │ ├── buy-crypto.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-1.svg │ │ │ ├── calendar-2.svg │ │ │ ├── calendar-add.svg │ │ │ ├── calendar-circle.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-remove.svg │ │ │ ├── calendar-search.svg │ │ │ ├── calendar-tick.svg │ │ │ ├── calendar.svg │ │ │ ├── call-add.svg │ │ │ ├── call-calling.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-minus.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-received.svg │ │ │ ├── call-remove.svg │ │ │ ├── call-slash.svg │ │ │ ├── call.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── candle-2.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── card-add.svg │ │ │ ├── card-coin.svg │ │ │ ├── card-edit.svg │ │ │ ├── card-pos.svg │ │ │ ├── card-receive.svg │ │ │ ├── card-remove-1.svg │ │ │ ├── card-remove.svg │ │ │ ├── card-send.svg │ │ │ ├── card-slash.svg │ │ │ ├── card-tick-1.svg │ │ │ ├── card-tick.svg │ │ │ ├── card.svg │ │ │ ├── cardano-(ada).svg │ │ │ ├── cards.svg │ │ │ ├── category-2.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── celo-(celo).svg │ │ │ ├── celsius-(cel)-.svg │ │ │ ├── chainlink-(link).svg │ │ │ ├── chart-1.svg │ │ │ ├── chart-2.svg │ │ │ ├── chart-21.svg │ │ │ ├── chart-3.svg │ │ │ ├── chart-square.svg │ │ │ ├── chart-success.svg │ │ │ ├── chart.svg │ │ │ ├── check.svg │ │ │ ├── chrome.svg │ │ │ ├── civic-(cvc).svg │ │ │ ├── clipboard-close.svg │ │ │ ├── clipboard-export.svg │ │ │ ├── clipboard-import.svg │ │ │ ├── clipboard-text.svg │ │ │ ├── clipboard-tick.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-1.svg │ │ │ ├── clock.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-square.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-change.svg │ │ │ ├── cloud-connection.svg │ │ │ ├── cloud-cross.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-notif.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-remove.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sunny.svg │ │ │ ├── cloud.svg │ │ │ ├── code-1.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── coin-1.svg │ │ │ ├── coin.svg │ │ │ ├── color-swatch.svg │ │ │ ├── colorfilter.svg │ │ │ ├── colors-square-1.svg │ │ │ ├── colors-square.svg │ │ │ ├── command-square.svg │ │ │ ├── command.svg │ │ │ ├── component-1.svg │ │ │ ├── component.svg │ │ │ ├── computing.svg │ │ │ ├── convert-3d-cube.svg │ │ │ ├── convert.svg │ │ │ ├── convertshape-2.svg │ │ │ ├── convertshape.svg │ │ │ ├── copy-success.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── courthouse.svg │ │ │ ├── cpu-charge.svg │ │ │ ├── cpu-setting.svg │ │ │ ├── cpu.svg │ │ │ ├── creative-commons.svg │ │ │ ├── crop.svg │ │ │ ├── crown-1.svg │ │ │ ├── crown.svg │ │ │ ├── cup.svg │ │ │ ├── dai-(dai).svg │ │ │ ├── danger.svg │ │ │ ├── dash-(dash).svg │ │ │ ├── data-2.svg │ │ │ ├── data.svg │ │ │ ├── decred-(dcr).svg │ │ │ ├── dent-(dent).svg │ │ │ ├── designtools.svg │ │ │ ├── device-message.svg │ │ │ ├── devices-1.svg │ │ │ ├── devices.svg │ │ │ ├── diagram.svg │ │ │ ├── diamonds.svg │ │ │ ├── direct-down.svg │ │ │ ├── direct-inbox.svg │ │ │ ├── direct-left.svg │ │ │ ├── direct-normal.svg │ │ │ ├── direct-notification.svg │ │ │ ├── direct-right.svg │ │ │ ├── direct-send.svg │ │ │ ├── direct-up.svg │ │ │ ├── direct.svg │ │ │ ├── directbox-default.svg │ │ │ ├── directbox-notif.svg │ │ │ ├── directbox-receive.svg │ │ │ ├── directbox-send.svg │ │ │ ├── discount-circle.svg │ │ │ ├── discount-shape.svg │ │ │ ├── discover-1.svg │ │ │ ├── discover.svg │ │ │ ├── dislike.svg │ │ │ ├── document-1.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-code-2.svg │ │ │ ├── document-code.svg │ │ │ ├── document-copy.svg │ │ │ ├── document-download.svg │ │ │ ├── document-favorite.svg │ │ │ ├── document-filter.svg │ │ │ ├── document-forward.svg │ │ │ ├── document-like.svg │ │ │ ├── document-normal.svg │ │ │ ├── document-previous.svg │ │ │ ├── document-sketch.svg │ │ │ ├── document-text-1.svg │ │ │ ├── document-text.svg │ │ │ ├── document-upload.svg │ │ │ ├── document.svg │ │ │ ├── dollar-circle.svg │ │ │ ├── dollar-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── driver-2.svg │ │ │ ├── driver-refresh.svg │ │ │ ├── driver.svg │ │ │ ├── driving.svg │ │ │ ├── drop.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit.svg │ │ │ ├── educare-(ekt).svg │ │ │ ├── electricity.svg │ │ │ ├── element-1.svg │ │ │ ├── element-2.svg │ │ │ ├── element-3.svg │ │ │ ├── element-4.svg │ │ │ ├── element-equal.svg │ │ │ ├── element-plus.svg │ │ │ ├── emercoin-(emc).svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-normal.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── empty-circle.svg │ │ │ ├── empty-wallet-add.svg │ │ │ ├── empty-wallet-change.svg │ │ │ ├── empty-wallet-remove.svg │ │ │ ├── empty-wallet-tick.svg │ │ │ ├── empty-wallet-time.svg │ │ │ ├── empty-wallet.svg │ │ │ ├── enjin-coin-(enj).svg │ │ │ ├── eos-(eos).svg │ │ │ ├── eraser-1.svg │ │ │ ├── eraser-2.svg │ │ │ ├── eraser.svg │ │ │ ├── ethereum-(eth).svg │ │ │ ├── ethereum-classic-(etc).svg │ │ │ ├── export-1.svg │ │ │ ├── export-2.svg │ │ │ ├── export-3.svg │ │ │ ├── export.svg │ │ │ ├── external-drive.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── facebook.svg │ │ │ ├── fatrows.svg │ │ │ ├── favorite-chart.svg │ │ │ ├── figma-1.svg │ │ │ ├── figma.svg │ │ │ ├── filter-add.svg │ │ │ ├── filter-edit.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter-search.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter-tick.svg │ │ │ ├── filter.svg │ │ │ ├── finger-cricle.svg │ │ │ ├── finger-scan.svg │ │ │ ├── firstline.svg │ │ │ ├── flag-2.svg │ │ │ ├── flag.svg │ │ │ ├── flash-1.svg │ │ │ ├── flash-circle-1.svg │ │ │ ├── flash-circle-2.svg │ │ │ ├── flash-circle.svg │ │ │ ├── flash-slash.svg │ │ │ ├── flash.svg │ │ │ ├── folder-2.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cloud.svg │ │ │ ├── folder-connection.svg │ │ │ ├── folder-cross.svg │ │ │ ├── folder-favorite.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── format-circle.svg │ │ │ ├── format-square.svg │ │ │ ├── forward-10-seconds.svg │ │ │ ├── forward-15-seconds.svg │ │ │ ├── forward-5-seconds.svg │ │ │ ├── forward-item-1.svg │ │ │ ├── forward-item.svg │ │ │ ├── forward-square.svg │ │ │ ├── forward.svg │ │ │ ├── frame-1.svg │ │ │ ├── frame-2.svg │ │ │ ├── frame-3.svg │ │ │ ├── frame-4.svg │ │ │ ├── frame-5.svg │ │ │ ├── frame.svg │ │ │ ├── framer.svg │ │ │ ├── ftx-token-(ftt).svg │ │ │ ├── gallery-add.svg │ │ │ ├── gallery-edit.svg │ │ │ ├── gallery-export.svg │ │ │ ├── gallery-favorite.svg │ │ │ ├── gallery-import.svg │ │ │ ├── gallery-remove.svg │ │ │ ├── gallery-slash.svg │ │ │ ├── gallery-tick.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gameboy.svg │ │ │ ├── gas-station.svg │ │ │ ├── gemini-2.svg │ │ │ ├── gemini.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── glass-1.svg │ │ │ ├── glass.svg │ │ │ ├── global-edit.svg │ │ │ ├── global-refresh.svg │ │ │ ├── global-search.svg │ │ │ ├── global.svg │ │ │ ├── google-1.svg │ │ │ ├── google-play.svg │ │ │ ├── google.svg │ │ │ ├── gps-slash.svg │ │ │ ├── gps.svg │ │ │ ├── grammerly.svg │ │ │ ├── graph.svg │ │ │ ├── grid-1.svg │ │ │ ├── grid-2.svg │ │ │ ├── grid-3.svg │ │ │ ├── grid-4.svg │ │ │ ├── grid-5.svg │ │ │ ├── grid-6.svg │ │ │ ├── grid-7.svg │ │ │ ├── grid-8.svg │ │ │ ├── grid-9.svg │ │ │ ├── grid-edit.svg │ │ │ ├── grid-eraser.svg │ │ │ ├── grid-lock.svg │ │ │ ├── group-1.svg │ │ │ ├── group-10.svg │ │ │ ├── group-11.svg │ │ │ ├── group-2.svg │ │ │ ├── group-3.svg │ │ │ ├── group-4.svg │ │ │ ├── group-5.svg │ │ │ ├── group-6.svg │ │ │ ├── group-7.svg │ │ │ ├── group-8.svg │ │ │ ├── group-9.svg │ │ │ ├── group.svg │ │ │ ├── happyemoji.svg │ │ │ ├── harmony-(one).svg │ │ │ ├── hashtag-1.svg │ │ │ ├── hashtag-down.svg │ │ │ ├── hashtag-up.svg │ │ │ ├── hashtag.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones.svg │ │ │ ├── health.svg │ │ │ ├── heart-add.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-edit.svg │ │ │ ├── heart-remove.svg │ │ │ ├── heart-search.svg │ │ │ ├── heart-slash.svg │ │ │ ├── heart-tick.svg │ │ │ ├── heart.svg │ │ │ ├── hedera-hashgraph-(hbar).svg │ │ │ ├── hex-(hex).svg │ │ │ ├── hierarchy-2.svg │ │ │ ├── hierarchy-3.svg │ │ │ ├── hierarchy-square-2.svg │ │ │ ├── hierarchy-square-3.svg │ │ │ ├── hierarchy-square.svg │ │ │ ├── hierarchy.svg │ │ │ ├── home-2.svg │ │ │ ├── home-hashtag.svg │ │ │ ├── home-trend-down.svg │ │ │ ├── home-trend-up.svg │ │ │ ├── home-wifi.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── house-2.svg │ │ │ ├── house.svg │ │ │ ├── html-3.svg │ │ │ ├── html-5.svg │ │ │ ├── huobi-token-(ht).svg │ │ │ ├── icon-(icx).svg │ │ │ ├── illustrator.svg │ │ │ ├── image.svg │ │ │ ├── import-1.svg │ │ │ ├── import-2.svg │ │ │ ├── import.svg │ │ │ ├── info-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── iost-(iost).svg │ │ │ ├── java-script.svg │ │ │ ├── js.svg │ │ │ ├── judge.svg │ │ │ ├── kanban.svg │ │ │ ├── key-square.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-open.svg │ │ │ ├── keyboard.svg │ │ │ ├── kyber-network-(knc).svg │ │ │ ├── lamp-1.svg │ │ │ ├── lamp-charge.svg │ │ │ ├── lamp-on.svg │ │ │ ├── lamp-slash.svg │ │ │ ├── lamp.svg │ │ │ ├── language-circle.svg │ │ │ ├── language-square.svg │ │ │ ├── layer.svg │ │ │ ├── level.svg │ │ │ ├── lifebuoy.svg │ │ │ ├── like-1.svg │ │ │ ├── like-dislike.svg │ │ │ ├── like-shapes.svg │ │ │ ├── like-tag.svg │ │ │ ├── like.svg │ │ │ ├── link-1.svg │ │ │ ├── link-2.svg │ │ │ ├── link-21.svg │ │ │ ├── link-circle.svg │ │ │ ├── link-square.svg │ │ │ ├── link.svg │ │ │ ├── litecoin(ltc).svg │ │ │ ├── location-add.svg │ │ │ ├── location-cross.svg │ │ │ ├── location-minus.svg │ │ │ ├── location-slash.svg │ │ │ ├── location-tick.svg │ │ │ ├── location.svg │ │ │ ├── lock-1.svg │ │ │ ├── lock-circle.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── login-1.svg │ │ │ ├── login.svg │ │ │ ├── logout-1.svg │ │ │ ├── logout.svg │ │ │ ├── lovely.svg │ │ │ ├── magic-star.svg │ │ │ ├── magicpen.svg │ │ │ ├── main-component-1.svg │ │ │ ├── main-component.svg │ │ │ ├── maker-(mkr).svg │ │ │ ├── man.svg │ │ │ ├── map-1.svg │ │ │ ├── map.svg │ │ │ ├── mask-1.svg │ │ │ ├── mask-2.svg │ │ │ ├── mask-3.svg │ │ │ ├── mask.svg │ │ │ ├── math.svg │ │ │ ├── maximize-1.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize-21.svg │ │ │ ├── maximize-3.svg │ │ │ ├── maximize-4.svg │ │ │ ├── maximize-circle.svg │ │ │ ├── maximize.svg │ │ │ ├── medal-star.svg │ │ │ ├── medal.svg │ │ │ ├── menu-1.svg │ │ │ ├── menu-board.svg │ │ │ ├── menu.svg │ │ │ ├── message-2.svg │ │ │ ├── message-add-1.svg │ │ │ ├── message-add.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-edit.svg │ │ │ ├── message-favorite.svg │ │ │ ├── message-minus.svg │ │ │ ├── message-notif.svg │ │ │ ├── message-programming.svg │ │ │ ├── message-question.svg │ │ │ ├── message-remove.svg │ │ │ ├── message-search.svg │ │ │ ├── message-square.svg │ │ │ ├── message-text-1.svg │ │ │ ├── message-text.svg │ │ │ ├── message-tick.svg │ │ │ ├── message-time.svg │ │ │ ├── message.svg │ │ │ ├── messages-1.svg │ │ │ ├── messages-2.svg │ │ │ ├── messages-3.svg │ │ │ ├── messages.svg │ │ │ ├── messenger.svg │ │ │ ├── microphone-2.svg │ │ │ ├── microphone-slash-1.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── milk.svg │ │ │ ├── mini-music-sqaure.svg │ │ │ ├── minus-cirlce.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mirror.svg │ │ │ ├── mirroring-screen.svg │ │ │ ├── mobile-programming.svg │ │ │ ├── mobile.svg │ │ │ ├── monero-(xmr).svg │ │ │ ├── money-2.svg │ │ │ ├── money-3.svg │ │ │ ├── money-4.svg │ │ │ ├── money-add.svg │ │ │ ├── money-change.svg │ │ │ ├── money-forbidden.svg │ │ │ ├── money-recive.svg │ │ │ ├── money-remove.svg │ │ │ ├── money-send.svg │ │ │ ├── money-tick.svg │ │ │ ├── money-time.svg │ │ │ ├── money.svg │ │ │ ├── moneys.svg │ │ │ ├── monitor-mobbile.svg │ │ │ ├── monitor-recorder.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-2.svg │ │ │ ├── more-circle.svg │ │ │ ├── more-square.svg │ │ │ ├── more.svg │ │ │ ├── mouse-1.svg │ │ │ ├── mouse-circle.svg │ │ │ ├── mouse-square.svg │ │ │ ├── mouse.svg │ │ │ ├── music-circle.svg │ │ │ ├── music-dashboard.svg │ │ │ ├── music-filter.svg │ │ │ ├── music-library-2.svg │ │ │ ├── music-play.svg │ │ │ ├── music-playlist.svg │ │ │ ├── music-square-add.svg │ │ │ ├── music-square-remove.svg │ │ │ ├── music-square-search.svg │ │ │ ├── music-square.svg │ │ │ ├── music.svg │ │ │ ├── musicnote.svg │ │ │ ├── nebulas-(nas).svg │ │ │ ├── nem-(xem).svg │ │ │ ├── nexo-(nexo).svg │ │ │ ├── next.svg │ │ │ ├── note-1.svg │ │ │ ├── note-2.svg │ │ │ ├── note-21.svg │ │ │ ├── note-add.svg │ │ │ ├── note-favorite.svg │ │ │ ├── note-remove.svg │ │ │ ├── note-square.svg │ │ │ ├── note-text.svg │ │ │ ├── note.svg │ │ │ ├── notification-1.svg │ │ │ ├── notification-bing.svg │ │ │ ├── notification-circle.svg │ │ │ ├── notification-favorite.svg │ │ │ ├── notification-status.svg │ │ │ ├── notification.svg │ │ │ ├── ocean-protocol-(ocean).svg │ │ │ ├── okb-(okb).svg │ │ │ ├── omega-circle-1.svg │ │ │ ├── omega-circle.svg │ │ │ ├── omega-square-1.svg │ │ │ ├── omega-square.svg │ │ │ ├── ontology-(ont).svg │ │ │ ├── paintbucket.svg │ │ │ ├── paperclip-2.svg │ │ │ ├── paperclip.svg │ │ │ ├── password-check.svg │ │ │ ├── path-2.svg │ │ │ ├── path-square.svg │ │ │ ├── path.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen-add-1.svg │ │ │ ├── pen-add.svg │ │ │ ├── pen-close-1.svg │ │ │ ├── pen-close.svg │ │ │ ├── pen-remove-1.svg │ │ │ ├── pen-remove.svg │ │ │ ├── pen-tool-1.svg │ │ │ ├── pen-tool-2-1.svg │ │ │ ├── pen-tool-2.svg │ │ │ ├── pen-tool.svg │ │ │ ├── people.svg │ │ │ ├── percentage-square.svg │ │ │ ├── personalcard.svg │ │ │ ├── pet.svg │ │ │ ├── pharagraphspacing.svg │ │ │ ├── photoshop.svg │ │ │ ├── picture-frame.svg │ │ │ ├── play-add.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-cricle.svg │ │ │ ├── play-remove.svg │ │ │ ├── play.svg │ │ │ ├── polkadot-(dot).svg │ │ │ ├── polygon-(matic).svg │ │ │ ├── polyswarm-(nct).svg │ │ │ ├── presention-chart.svg │ │ │ ├── previous.svg │ │ │ ├── printer-slash.svg │ │ │ ├── printer.svg │ │ │ ├── profile-2user.svg │ │ │ ├── profile-add.svg │ │ │ ├── profile-circle.svg │ │ │ ├── profile-delete.svg │ │ │ ├── profile-remove.svg │ │ │ ├── profile-tick.svg │ │ │ ├── profile.svg │ │ │ ├── programming-arrow.svg │ │ │ ├── programming-arrows.svg │ │ │ ├── python.svg │ │ │ ├── quant-(qnt).svg │ │ │ ├── quote-down-circle.svg │ │ │ ├── quote-down-square.svg │ │ │ ├── quote-down.svg │ │ │ ├── quote-up-circle.svg │ │ │ ├── quote-up-square.svg │ │ │ ├── quote-up.svg │ │ │ ├── radar-1.svg │ │ │ ├── radar-2.svg │ │ │ ├── radar.svg │ │ │ ├── radio.svg │ │ │ ├── ram-2.svg │ │ │ ├── ram.svg │ │ │ ├── ranking-1.svg │ │ │ ├── ranking.svg │ │ │ ├── receipt-1.svg │ │ │ ├── receipt-2-1.svg │ │ │ ├── receipt-2.svg │ │ │ ├── receipt-add.svg │ │ │ ├── receipt-discount.svg │ │ │ ├── receipt-disscount.svg │ │ │ ├── receipt-edit.svg │ │ │ ├── receipt-item.svg │ │ │ ├── receipt-minus.svg │ │ │ ├── receipt-search.svg │ │ │ ├── receipt-square.svg │ │ │ ├── receipt-text.svg │ │ │ ├── receipt.svg │ │ │ ├── receive-square-2.svg │ │ │ ├── receive-square.svg │ │ │ ├── received.svg │ │ │ ├── record-circle.svg │ │ │ ├── record.svg │ │ │ ├── recovery-convert.svg │ │ │ ├── redo.svg │ │ │ ├── refresh-2.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-left-square.svg │ │ │ ├── refresh-right-square.svg │ │ │ ├── refresh-square-2.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-circle.svg │ │ │ ├── repeat.svg │ │ │ ├── repeate-music.svg │ │ │ ├── repeate-one.svg │ │ │ ├── reserve.svg │ │ │ ├── rotate-left-1.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right-1.svg │ │ │ ├── rotate-right.svg │ │ │ ├── route-square.svg │ │ │ ├── routing-2.svg │ │ │ ├── routing.svg │ │ │ ├── row-horizontal.svg │ │ │ ├── row-vertical.svg │ │ │ ├── ruler&pen.svg │ │ │ ├── ruler.svg │ │ │ ├── safe-home.svg │ │ │ ├── sagittarius.svg │ │ │ ├── save-2.svg │ │ │ ├── save-add.svg │ │ │ ├── save-minus.svg │ │ │ ├── save-remove.svg │ │ │ ├── scan-barcode.svg │ │ │ ├── scan.svg │ │ │ ├── scanner.svg │ │ │ ├── scanning.svg │ │ │ ├── scissor-1.svg │ │ │ ├── scissor-2.svg │ │ │ ├── scissor.svg │ │ │ ├── screenmirroring.svg │ │ │ ├── scroll.svg │ │ │ ├── search-favorite-1.svg │ │ │ ├── search-favorite.svg │ │ │ ├── search-normal-1.svg │ │ │ ├── search-normal.svg │ │ │ ├── search-status-1.svg │ │ │ ├── search-status.svg │ │ │ ├── search-zoom-in-1.svg │ │ │ ├── search-zoom-in.svg │ │ │ ├── search-zoom-out-1.svg │ │ │ ├── search-zoom-out.svg │ │ │ ├── security-card.svg │ │ │ ├── security-safe.svg │ │ │ ├── security-time.svg │ │ │ ├── security-user.svg │ │ │ ├── security.svg │ │ │ ├── send-1.svg │ │ │ ├── send-2.svg │ │ │ ├── send-sqaure-2.svg │ │ │ ├── send-square.svg │ │ │ ├── send.svg │ │ │ ├── setting-2.svg │ │ │ ├── setting-3.svg │ │ │ ├── setting-4.svg │ │ │ ├── setting-5.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-1.svg │ │ │ ├── shapes-2.svg │ │ │ ├── shapes.svg │ │ │ ├── share.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-search.svg │ │ │ ├── shield-security.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-tick.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shop-add.svg │ │ │ ├── shop-remove.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── siacoin-(sc).svg │ │ │ ├── sidebar-bottom.svg │ │ │ ├── sidebar-left.svg │ │ │ ├── sidebar-right.svg │ │ │ ├── sidebar-top.svg │ │ │ ├── signpost.svg │ │ │ ├── simcard-1.svg │ │ │ ├── simcard-2.svg │ │ │ ├── simcard.svg │ │ │ ├── size.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── slider-horizontal-1.svg │ │ │ ├── slider-horizontal.svg │ │ │ ├── slider-vertical-1.svg │ │ │ ├── slider-vertical.svg │ │ │ ├── slider.svg │ │ │ ├── smallcaps.svg │ │ │ ├── smart-car.svg │ │ │ ├── smart-home.svg │ │ │ ├── smileys.svg │ │ │ ├── sms-edit.svg │ │ │ ├── sms-notification.svg │ │ │ ├── sms-search.svg │ │ │ ├── sms-star.svg │ │ │ ├── sms-tracking.svg │ │ │ ├── sms.svg │ │ │ ├── snapchat.svg │ │ │ ├── solana-(sol).svg │ │ │ ├── sort.svg │ │ │ ├── sound.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── stacks-(stx).svg │ │ │ ├── star-1.svg │ │ │ ├── star-slash.svg │ │ │ ├── star.svg │ │ │ ├── status-up.svg │ │ │ ├── status.svg │ │ │ ├── stellar-(xlm).svg │ │ │ ├── sticker.svg │ │ │ ├── stickynote.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── story.svg │ │ │ ├── strongbox-2.svg │ │ │ ├── strongbox.svg │ │ │ ├── subtitle.svg │ │ │ ├── sun-1.svg │ │ │ ├── sun-fog.svg │ │ │ ├── sun.svg │ │ │ ├── tag-2.svg │ │ │ ├── tag-cross.svg │ │ │ ├── tag-right.svg │ │ │ ├── tag-user.svg │ │ │ ├── tag.svg │ │ │ ├── task-square.svg │ │ │ ├── task.svg │ │ │ ├── teacher.svg │ │ │ ├── tenx-(pay).svg │ │ │ ├── tether-(usdt).svg │ │ │ ├── text-block.svg │ │ │ ├── text-bold.svg │ │ │ ├── text-italic.svg │ │ │ ├── text-underline.svg │ │ │ ├── text.svg │ │ │ ├── textalign-center.svg │ │ │ ├── textalign-justifycenter.svg │ │ │ ├── textalign-justifyleft.svg │ │ │ ├── textalign-justifyright.svg │ │ │ ├── textalign-left.svg │ │ │ ├── textalign-right.svg │ │ │ ├── the-graph-(grt).svg │ │ │ ├── theta-(theta).svg │ │ │ ├── thorchain-(rune).svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick-square.svg │ │ │ ├── ticket-2.svg │ │ │ ├── ticket-discount.svg │ │ │ ├── ticket-expired.svg │ │ │ ├── ticket-star.svg │ │ │ ├── ticket.svg │ │ │ ├── timer-1.svg │ │ │ ├── timer-pause.svg │ │ │ ├── timer-start.svg │ │ │ ├── timer.svg │ │ │ ├── toggle-off-circle.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on-circle.svg │ │ │ ├── toggle-on.svg │ │ │ ├── trade.svg │ │ │ ├── transaction-minus.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── trend-down.svg │ │ │ ├── trend-up.svg │ │ │ ├── triangle.svg │ │ │ ├── trontron-(trx).svg │ │ │ ├── truck-remove.svg │ │ │ ├── truck-tick.svg │ │ │ ├── truck-time.svg │ │ │ ├── trush-square.svg │ │ │ ├── twitch.svg │ │ │ ├── ui8.svg │ │ │ ├── undo.svg │ │ │ ├── unlimited.svg │ │ │ ├── unlock.svg │ │ │ ├── usd-coin-(usdc).svg │ │ │ ├── user-add.svg │ │ │ ├── user-cirlce-add.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-octagon.svg │ │ │ ├── user-remove.svg │ │ │ ├── user-search.svg │ │ │ ├── user-square.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tick.svg │ │ │ ├── user.svg │ │ │ ├── velas-(vlx).svg │ │ │ ├── verify.svg │ │ │ ├── vibe-(vibe).svg │ │ │ ├── video-add.svg │ │ │ ├── video-circle.svg │ │ │ ├── video-horizontal.svg │ │ │ ├── video-octagon.svg │ │ │ ├── video-play.svg │ │ │ ├── video-remove.svg │ │ │ ├── video-slash.svg │ │ │ ├── video-square.svg │ │ │ ├── video-tick.svg │ │ │ ├── video-time.svg │ │ │ ├── video-vertical.svg │ │ │ ├── video.svg │ │ │ ├── voice-cricle.svg │ │ │ ├── voice-square.svg │ │ │ ├── volume-cross.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-1.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── vuesax.svg │ │ │ ├── wallet-1.svg │ │ │ ├── wallet-2.svg │ │ │ ├── wallet-3.svg │ │ │ ├── wallet-add-1.svg │ │ │ ├── wallet-add.svg │ │ │ ├── wallet-check.svg │ │ │ ├── wallet-minus.svg │ │ │ ├── wallet-money.svg │ │ │ ├── wallet-remove.svg │ │ │ ├── wallet-search.svg │ │ │ ├── wallet.svg │ │ │ ├── wanchain-(wan)-1.svg │ │ │ ├── wanchain-(wan).svg │ │ │ ├── warning-2.svg │ │ │ ├── watch-status.svg │ │ │ ├── watch.svg │ │ │ ├── weight-1.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-square.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-2.svg │ │ │ ├── wind.svg │ │ │ ├── windows.svg │ │ │ ├── wing-(wing).svg │ │ │ ├── woman.svg │ │ │ ├── xd.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xrp-(xrp).svg │ │ │ ├── youtube.svg │ │ │ ├── zel-(zel).svg │ │ │ └── zoom.svg │ │ ├── outline │ │ │ ├── 24-support.svg │ │ │ ├── 3d-cube-scan.svg │ │ │ ├── 3d-rotate.svg │ │ │ ├── 3d-square.svg │ │ │ ├── 3dcube.svg │ │ │ ├── 3square.svg │ │ │ ├── aave-(aave).svg │ │ │ ├── activity.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-square.svg │ │ │ ├── add.svg │ │ │ ├── additem.svg │ │ │ ├── airdrop.svg │ │ │ ├── airplane-square.svg │ │ │ ├── airplane.svg │ │ │ ├── airpod.svg │ │ │ ├── airpods.svg │ │ │ ├── alarm.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-horizontally.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-vertically.svg │ │ │ ├── android.svg │ │ │ ├── ankr-(ankr).svg │ │ │ ├── apple.svg │ │ │ ├── aquarius.svg │ │ │ ├── archive-1.svg │ │ │ ├── archive-2.svg │ │ │ ├── archive-add.svg │ │ │ ├── archive-book.svg │ │ │ ├── archive-minus.svg │ │ │ ├── archive-slash.svg │ │ │ ├── archive-tick.svg │ │ │ ├── archive.svg │ │ │ ├── arrange-circle-2.svg │ │ │ ├── arrange-circle.svg │ │ │ ├── arrange-square-2.svg │ │ │ ├── arrange-square.svg │ │ │ ├── arrow-2.svg │ │ │ ├── arrow-3.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down-1.svg │ │ │ ├── arrow-down-2.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left-1.svg │ │ │ ├── arrow-left-2.svg │ │ │ ├── arrow-left-3.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right-1.svg │ │ │ ├── arrow-right-2.svg │ │ │ ├── arrow-right-3.svg │ │ │ ├── arrow-right-4.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-square-down.svg │ │ │ ├── arrow-square-left.svg │ │ │ ├── arrow-square-up.svg │ │ │ ├── arrow-square.svg │ │ │ ├── arrow-swap-horizontal.svg │ │ │ ├── arrow-swap.svg │ │ │ ├── arrow-up-1.svg │ │ │ ├── arrow-up-2.svg │ │ │ ├── arrow-up-3.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrow.svg │ │ │ ├── attach-circle.svg │ │ │ ├── attach-square.svg │ │ │ ├── audio-square.svg │ │ │ ├── augur-(rep).svg │ │ │ ├── autobrightness.svg │ │ │ ├── autonio-(niox).svg │ │ │ ├── avalanche-(avax).svg │ │ │ ├── award.svg │ │ │ ├── back-square.svg │ │ │ ├── backward-10-seconds.svg │ │ │ ├── backward-15-seconds.svg │ │ │ ├── backward-5-seconds.svg │ │ │ ├── backward-item.svg │ │ │ ├── backward.svg │ │ │ ├── bag-2.svg │ │ │ ├── bag-cross-1.svg │ │ │ ├── bag-cross.svg │ │ │ ├── bag-happy.svg │ │ │ ├── bag-tick-2.svg │ │ │ ├── bag-tick.svg │ │ │ ├── bag-timer.svg │ │ │ ├── bag.svg │ │ │ ├── bank.svg │ │ │ ├── barcode.svg │ │ │ ├── battery-3full.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-disable.svg │ │ │ ├── battery-empty-1.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── be.svg │ │ │ ├── bezier.svg │ │ │ ├── bill.svg │ │ │ ├── binance-coin-(bnb).svg │ │ │ ├── binance-usd-(busd).svg │ │ │ ├── bitcoin-(btc).svg │ │ │ ├── bitcoin-card.svg │ │ │ ├── bitcoin-convert.svg │ │ │ ├── bitcoin-refresh.svg │ │ │ ├── blend-2.svg │ │ │ ├── blend.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-2.svg │ │ │ ├── bluetooth-circle.svg │ │ │ ├── bluetooth-rectangle.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur.svg │ │ │ ├── book-1.svg │ │ │ ├── book-saved.svg │ │ │ ├── book-square.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-2.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootstrap.svg │ │ │ ├── box-1.svg │ │ │ ├── box-2.svg │ │ │ ├── box-add.svg │ │ │ ├── box-remove.svg │ │ │ ├── box-search.svg │ │ │ ├── box-tick.svg │ │ │ ├── box-time.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brifecase-cross.svg │ │ │ ├── brifecase-tick.svg │ │ │ ├── brifecase-timer.svg │ │ │ ├── broom.svg │ │ │ ├── brush-1.svg │ │ │ ├── brush-2.svg │ │ │ ├── brush-3.svg │ │ │ ├── brush-4.svg │ │ │ ├── brush.svg │ │ │ ├── bubble.svg │ │ │ ├── bucket-circle.svg │ │ │ ├── bucket-square.svg │ │ │ ├── bucket.svg │ │ │ ├── building-3.svg │ │ │ ├── building-4.svg │ │ │ ├── building.svg │ │ │ ├── buildings-2.svg │ │ │ ├── buildings.svg │ │ │ ├── buliding.svg │ │ │ ├── bus.svg │ │ │ ├── buy-crypto.svg │ │ │ ├── cake.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-1.svg │ │ │ ├── calendar-2.svg │ │ │ ├── calendar-add.svg │ │ │ ├── calendar-circle.svg │ │ │ ├── calendar-edit.svg │ │ │ ├── calendar-remove.svg │ │ │ ├── calendar-search.svg │ │ │ ├── calendar-tick.svg │ │ │ ├── calendar.svg │ │ │ ├── call-add.svg │ │ │ ├── call-calling.svg │ │ │ ├── call-incoming.svg │ │ │ ├── call-minus.svg │ │ │ ├── call-outgoing.svg │ │ │ ├── call-received.svg │ │ │ ├── call-remove.svg │ │ │ ├── call-slash.svg │ │ │ ├── call.svg │ │ │ ├── camera-slash.svg │ │ │ ├── camera.svg │ │ │ ├── candle-2.svg │ │ │ ├── candle.svg │ │ │ ├── car.svg │ │ │ ├── card-add.svg │ │ │ ├── card-coin.svg │ │ │ ├── card-edit.svg │ │ │ ├── card-pos.svg │ │ │ ├── card-receive.svg │ │ │ ├── card-remove-1.svg │ │ │ ├── card-remove.svg │ │ │ ├── card-send.svg │ │ │ ├── card-slash.svg │ │ │ ├── card-tick-1.svg │ │ │ ├── card-tick.svg │ │ │ ├── card.svg │ │ │ ├── cardano-(ada).svg │ │ │ ├── cards.svg │ │ │ ├── category-2.svg │ │ │ ├── category.svg │ │ │ ├── cd.svg │ │ │ ├── celo-(celo).svg │ │ │ ├── celsius-(cel)-.svg │ │ │ ├── chainlink-(link).svg │ │ │ ├── chart-1.svg │ │ │ ├── chart-2.svg │ │ │ ├── chart-21.svg │ │ │ ├── chart-3.svg │ │ │ ├── chart-fail.svg │ │ │ ├── chart-square.svg │ │ │ ├── chart-success.svg │ │ │ ├── chart.svg │ │ │ ├── check.svg │ │ │ ├── chrome.svg │ │ │ ├── civic-(cvc).svg │ │ │ ├── clipboard-close.svg │ │ │ ├── clipboard-export.svg │ │ │ ├── clipboard-import.svg │ │ │ ├── clipboard-text.svg │ │ │ ├── clipboard-tick.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock-1.svg │ │ │ ├── clock.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-square.svg │ │ │ ├── cloud-add.svg │ │ │ ├── cloud-change.svg │ │ │ ├── cloud-connection.svg │ │ │ ├── cloud-cross.svg │ │ │ ├── cloud-drizzle.svg │ │ │ ├── cloud-fog.svg │ │ │ ├── cloud-lightning.svg │ │ │ ├── cloud-minus.svg │ │ │ ├── cloud-notif.svg │ │ │ ├── cloud-plus.svg │ │ │ ├── cloud-remove.svg │ │ │ ├── cloud-snow.svg │ │ │ ├── cloud-sunny.svg │ │ │ ├── cloud.svg │ │ │ ├── code-1.svg │ │ │ ├── code-circle.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── coin-1.svg │ │ │ ├── coin.svg │ │ │ ├── color-swatch.svg │ │ │ ├── colorfilter.svg │ │ │ ├── colors-square.svg │ │ │ ├── command-square.svg │ │ │ ├── command.svg │ │ │ ├── component.svg │ │ │ ├── computing.svg │ │ │ ├── convert-3d-cube.svg │ │ │ ├── convert-card.svg │ │ │ ├── convert.svg │ │ │ ├── convertshape-2.svg │ │ │ ├── convertshape.svg │ │ │ ├── copy-success.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── courthouse.svg │ │ │ ├── cpu-charge.svg │ │ │ ├── cpu-setting.svg │ │ │ ├── cpu.svg │ │ │ ├── creative-commons.svg │ │ │ ├── crop.svg │ │ │ ├── crown-1.svg │ │ │ ├── crown.svg │ │ │ ├── cup.svg │ │ │ ├── dai-(dai).svg │ │ │ ├── danger.svg │ │ │ ├── dash-(dash).svg │ │ │ ├── data-2.svg │ │ │ ├── data.svg │ │ │ ├── decred-(dcr).svg │ │ │ ├── dent-(dent).svg │ │ │ ├── designtools.svg │ │ │ ├── device-message.svg │ │ │ ├── devices-1.svg │ │ │ ├── devices.svg │ │ │ ├── diagram.svg │ │ │ ├── diamonds.svg │ │ │ ├── direct-down.svg │ │ │ ├── direct-inbox.svg │ │ │ ├── direct-left.svg │ │ │ ├── direct-normal.svg │ │ │ ├── direct-notification.svg │ │ │ ├── direct-right.svg │ │ │ ├── direct-send.svg │ │ │ ├── direct-up.svg │ │ │ ├── direct.svg │ │ │ ├── directbox-default.svg │ │ │ ├── directbox-notif.svg │ │ │ ├── directbox-receive.svg │ │ │ ├── directbox-send.svg │ │ │ ├── discount-circle.svg │ │ │ ├── discount-shape.svg │ │ │ ├── discover-1.svg │ │ │ ├── discover.svg │ │ │ ├── dislike.svg │ │ │ ├── document-1.svg │ │ │ ├── document-cloud.svg │ │ │ ├── document-code-2.svg │ │ │ ├── document-code.svg │ │ │ ├── document-copy.svg │ │ │ ├── document-download.svg │ │ │ ├── document-favorite.svg │ │ │ ├── document-filter.svg │ │ │ ├── document-forward.svg │ │ │ ├── document-like.svg │ │ │ ├── document-normal.svg │ │ │ ├── document-previous.svg │ │ │ ├── document-sketch.svg │ │ │ ├── document-text-1.svg │ │ │ ├── document-text.svg │ │ │ ├── document-upload.svg │ │ │ ├── document.svg │ │ │ ├── dollar-circle.svg │ │ │ ├── dollar-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── driver-2.svg │ │ │ ├── driver-refresh.svg │ │ │ ├── driver.svg │ │ │ ├── driving.svg │ │ │ ├── dropbox.svg │ │ │ ├── edit-2.svg │ │ │ ├── edit.svg │ │ │ ├── educare-(ekt).svg │ │ │ ├── electricity.svg │ │ │ ├── element-2.svg │ │ │ ├── element-3.svg │ │ │ ├── element-4.svg │ │ │ ├── element-equal.svg │ │ │ ├── element-plus.svg │ │ │ ├── emercoin-(emc).svg │ │ │ ├── emoji-happy.svg │ │ │ ├── emoji-normal.svg │ │ │ ├── emoji-sad.svg │ │ │ ├── empty-wallet-add.svg │ │ │ ├── empty-wallet-change.svg │ │ │ ├── empty-wallet-remove.svg │ │ │ ├── empty-wallet-tick.svg │ │ │ ├── empty-wallet-time.svg │ │ │ ├── empty-wallet.svg │ │ │ ├── enjin-coin-(enj).svg │ │ │ ├── eos-(eos).svg │ │ │ ├── eraser-1.svg │ │ │ ├── eraser.svg │ │ │ ├── ethereum-(eth).svg │ │ │ ├── ethereum-classic-(etc).svg │ │ │ ├── export-1.svg │ │ │ ├── export-2.svg │ │ │ ├── export-3.svg │ │ │ ├── export.svg │ │ │ ├── external-drive.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── facebook.svg │ │ │ ├── fatrows.svg │ │ │ ├── favorite-chart.svg │ │ │ ├── figma-1.svg │ │ │ ├── figma.svg │ │ │ ├── filter-add.svg │ │ │ ├── filter-edit.svg │ │ │ ├── filter-remove.svg │ │ │ ├── filter-search.svg │ │ │ ├── filter-square.svg │ │ │ ├── filter-tick.svg │ │ │ ├── filter.svg │ │ │ ├── finger-cricle.svg │ │ │ ├── finger-scan.svg │ │ │ ├── firstline.svg │ │ │ ├── flag-2.svg │ │ │ ├── flag.svg │ │ │ ├── flash-1.svg │ │ │ ├── flash-circle-1.svg │ │ │ ├── flash-circle.svg │ │ │ ├── flash-slash.svg │ │ │ ├── flash.svg │ │ │ ├── folder-2.svg │ │ │ ├── folder-add.svg │ │ │ ├── folder-cloud.svg │ │ │ ├── folder-connection.svg │ │ │ ├── folder-cross.svg │ │ │ ├── folder-favorite.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forbidden-2.svg │ │ │ ├── forbidden.svg │ │ │ ├── format-circle.svg │ │ │ ├── format-square.svg │ │ │ ├── forward-10-seconds.svg │ │ │ ├── forward-15-seconds.svg │ │ │ ├── forward-5-seconds.svg │ │ │ ├── forward-item.svg │ │ │ ├── forward-square.svg │ │ │ ├── forward.svg │ │ │ ├── frame-1.svg │ │ │ ├── frame-2.svg │ │ │ ├── frame-3.svg │ │ │ ├── frame-4.svg │ │ │ ├── frame.svg │ │ │ ├── framer.svg │ │ │ ├── ftx-token-(ftt).svg │ │ │ ├── gallery-add.svg │ │ │ ├── gallery-edit.svg │ │ │ ├── gallery-export.svg │ │ │ ├── gallery-favorite.svg │ │ │ ├── gallery-import.svg │ │ │ ├── gallery-remove.svg │ │ │ ├── gallery-slash.svg │ │ │ ├── gallery-tick.svg │ │ │ ├── gallery.svg │ │ │ ├── game.svg │ │ │ ├── gameboy.svg │ │ │ ├── gas-station.svg │ │ │ ├── gemini-2.svg │ │ │ ├── gemini.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── glass-1.svg │ │ │ ├── glass.svg │ │ │ ├── global-edit.svg │ │ │ ├── global-refresh.svg │ │ │ ├── global-search.svg │ │ │ ├── global.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-paly.svg │ │ │ ├── google.svg │ │ │ ├── gps-slash.svg │ │ │ ├── gps.svg │ │ │ ├── grammerly.svg │ │ │ ├── graph.svg │ │ │ ├── grid-1.svg │ │ │ ├── grid-2.svg │ │ │ ├── grid-3.svg │ │ │ ├── grid-4.svg │ │ │ ├── grid-5.svg │ │ │ ├── grid-6.svg │ │ │ ├── grid-7.svg │ │ │ ├── grid-8.svg │ │ │ ├── grid-9.svg │ │ │ ├── grid-edit.svg │ │ │ ├── grid-eraser.svg │ │ │ ├── grid-lock.svg │ │ │ ├── happyemoji.svg │ │ │ ├── harmony-(one).svg │ │ │ ├── hashtag-1.svg │ │ │ ├── hashtag-down.svg │ │ │ ├── hashtag-up.svg │ │ │ ├── hashtag.svg │ │ │ ├── headphone.svg │ │ │ ├── headphones.svg │ │ │ ├── health.svg │ │ │ ├── heart-add.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-edit.svg │ │ │ ├── heart-remove.svg │ │ │ ├── heart-search.svg │ │ │ ├── heart-slash.svg │ │ │ ├── heart-tick.svg │ │ │ ├── heart.svg │ │ │ ├── hedera-hashgraph-(hbar).svg │ │ │ ├── hex-(hex).svg │ │ │ ├── hierarchy-2.svg │ │ │ ├── hierarchy-3.svg │ │ │ ├── hierarchy-square-2.svg │ │ │ ├── hierarchy-square-3.svg │ │ │ ├── hierarchy-square.svg │ │ │ ├── hierarchy.svg │ │ │ ├── home-1.svg │ │ │ ├── home-2.svg │ │ │ ├── home-hashtag.svg │ │ │ ├── home-trend-down.svg │ │ │ ├── home-trend-up.svg │ │ │ ├── home-wifi.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── house-2.svg │ │ │ ├── house.svg │ │ │ ├── html-3.svg │ │ │ ├── html-5.svg │ │ │ ├── huobi-token-(ht).svg │ │ │ ├── icon-(icx).svg │ │ │ ├── icon-1.svg │ │ │ ├── icon.svg │ │ │ ├── illustrator.svg │ │ │ ├── image.svg │ │ │ ├── import-1.svg │ │ │ ├── import-2.svg │ │ │ ├── import.svg │ │ │ ├── info-circle.svg │ │ │ ├── information.svg │ │ │ ├── instagram.svg │ │ │ ├── iost-(iost).svg │ │ │ ├── java-script.svg │ │ │ ├── js.svg │ │ │ ├── judge.svg │ │ │ ├── kanban.svg │ │ │ ├── key-square.svg │ │ │ ├── key.svg │ │ │ ├── keyboard-open.svg │ │ │ ├── keyboard.svg │ │ │ ├── kyber-network-(knc).svg │ │ │ ├── lamp-1.svg │ │ │ ├── lamp-charge.svg │ │ │ ├── lamp-on.svg │ │ │ ├── lamp-slash.svg │ │ │ ├── lamp.svg │ │ │ ├── language-circle.svg │ │ │ ├── language-square.svg │ │ │ ├── layer.svg │ │ │ ├── level.svg │ │ │ ├── lifebuoy.svg │ │ │ ├── like-1.svg │ │ │ ├── like-dislike.svg │ │ │ ├── like-shapes.svg │ │ │ ├── like-tag.svg │ │ │ ├── like.svg │ │ │ ├── link-1.svg │ │ │ ├── link-2.svg │ │ │ ├── link-21.svg │ │ │ ├── link-circle.svg │ │ │ ├── link-square.svg │ │ │ ├── link.svg │ │ │ ├── litecoin(ltc).svg │ │ │ ├── location-add.svg │ │ │ ├── location-cross.svg │ │ │ ├── location-minus.svg │ │ │ ├── location-slash.svg │ │ │ ├── location-tick.svg │ │ │ ├── location.svg │ │ │ ├── lock-1.svg │ │ │ ├── lock-circle.svg │ │ │ ├── lock-slash.svg │ │ │ ├── lock.svg │ │ │ ├── login-1.svg │ │ │ ├── login.svg │ │ │ ├── logout-1.svg │ │ │ ├── logout.svg │ │ │ ├── lovely.svg │ │ │ ├── magic-star.svg │ │ │ ├── magicpen.svg │ │ │ ├── main-component.svg │ │ │ ├── maker-(mkr).svg │ │ │ ├── man.svg │ │ │ ├── map-1.svg │ │ │ ├── map.svg │ │ │ ├── mask-1.svg │ │ │ ├── mask-2.svg │ │ │ ├── mask.svg │ │ │ ├── math.svg │ │ │ ├── maximize-1.svg │ │ │ ├── maximize-2.svg │ │ │ ├── maximize-21.svg │ │ │ ├── maximize-3.svg │ │ │ ├── maximize-4.svg │ │ │ ├── maximize-circle.svg │ │ │ ├── maximize.svg │ │ │ ├── medal-star.svg │ │ │ ├── medal.svg │ │ │ ├── menu-1.svg │ │ │ ├── menu-board.svg │ │ │ ├── menu.svg │ │ │ ├── message-2.svg │ │ │ ├── message-add-1.svg │ │ │ ├── message-add.svg │ │ │ ├── message-circle.svg │ │ │ ├── message-edit.svg │ │ │ ├── message-favorite.svg │ │ │ ├── message-minus.svg │ │ │ ├── message-notif.svg │ │ │ ├── message-programming.svg │ │ │ ├── message-question.svg │ │ │ ├── message-remove.svg │ │ │ ├── message-search.svg │ │ │ ├── message-square.svg │ │ │ ├── message-text-1.svg │ │ │ ├── message-text.svg │ │ │ ├── message-tick.svg │ │ │ ├── message-time.svg │ │ │ ├── message.svg │ │ │ ├── messages-1.svg │ │ │ ├── messages-2.svg │ │ │ ├── messages-3.svg │ │ │ ├── messages.svg │ │ │ ├── messenger.svg │ │ │ ├── microphone-2.svg │ │ │ ├── microphone-slash-1.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── milk.svg │ │ │ ├── mini-music-sqaure.svg │ │ │ ├── minus-cirlce.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mirror.svg │ │ │ ├── mirroring-screen.svg │ │ │ ├── mobile-programming.svg │ │ │ ├── mobile.svg │ │ │ ├── monero-(xmr).svg │ │ │ ├── money-2.svg │ │ │ ├── money-3.svg │ │ │ ├── money-4.svg │ │ │ ├── money-add.svg │ │ │ ├── money-change.svg │ │ │ ├── money-forbidden.svg │ │ │ ├── money-recive.svg │ │ │ ├── money-remove.svg │ │ │ ├── money-send.svg │ │ │ ├── money-tick.svg │ │ │ ├── money-time.svg │ │ │ ├── money.svg │ │ │ ├── moneys.svg │ │ │ ├── monitor-mobbile.svg │ │ │ ├── monitor-recorder.svg │ │ │ ├── monitor.svg │ │ │ ├── moon.svg │ │ │ ├── more-2.svg │ │ │ ├── more-circle.svg │ │ │ ├── more-square.svg │ │ │ ├── more.svg │ │ │ ├── mouse-1.svg │ │ │ ├── mouse-circle.svg │ │ │ ├── mouse-square.svg │ │ │ ├── mouse.svg │ │ │ ├── music-circle.svg │ │ │ ├── music-dashboard.svg │ │ │ ├── music-filter.svg │ │ │ ├── music-library-2.svg │ │ │ ├── music-play.svg │ │ │ ├── music-playlist.svg │ │ │ ├── music-square-add.svg │ │ │ ├── music-square-remove.svg │ │ │ ├── music-square-search.svg │ │ │ ├── music-square.svg │ │ │ ├── music.svg │ │ │ ├── musicnote.svg │ │ │ ├── nebulas-(nas).svg │ │ │ ├── nem-(xem).svg │ │ │ ├── nexo-(nexo).svg │ │ │ ├── next.svg │ │ │ ├── note-1.svg │ │ │ ├── note-2.svg │ │ │ ├── note-21.svg │ │ │ ├── note-add.svg │ │ │ ├── note-favorite.svg │ │ │ ├── note-remove.svg │ │ │ ├── note-square.svg │ │ │ ├── note-text.svg │ │ │ ├── note.svg │ │ │ ├── notification-1.svg │ │ │ ├── notification-bing.svg │ │ │ ├── notification-circle.svg │ │ │ ├── notification-favorite.svg │ │ │ ├── notification-status.svg │ │ │ ├── notification.svg │ │ │ ├── ocean-protocol-(ocean).svg │ │ │ ├── okb-(okb).svg │ │ │ ├── omega-circle.svg │ │ │ ├── omega-square.svg │ │ │ ├── ontology-(ont).svg │ │ │ ├── paintbucket.svg │ │ │ ├── paperclip-2.svg │ │ │ ├── paperclip.svg │ │ │ ├── password-check.svg │ │ │ ├── path-2.svg │ │ │ ├── path-square.svg │ │ │ ├── path.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paypal.svg │ │ │ ├── pen-add.svg │ │ │ ├── pen-close.svg │ │ │ ├── pen-remove.svg │ │ │ ├── pen-tool-2.svg │ │ │ ├── pen-tool.svg │ │ │ ├── people.svg │ │ │ ├── percentage-circle.svg │ │ │ ├── percentage-square.svg │ │ │ ├── personalcard.svg │ │ │ ├── pet.svg │ │ │ ├── pharagraphspacing.svg │ │ │ ├── photoshop.svg │ │ │ ├── picture-frame.svg │ │ │ ├── play-add.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-cricle.svg │ │ │ ├── play-remove.svg │ │ │ ├── play.svg │ │ │ ├── polkadot-(dot).svg │ │ │ ├── polygon-(matic).svg │ │ │ ├── polyswarm-(nct).svg │ │ │ ├── presention-chart.svg │ │ │ ├── previous.svg │ │ │ ├── printer-slash.svg │ │ │ ├── printer.svg │ │ │ ├── profile-2user.svg │ │ │ ├── profile-add.svg │ │ │ ├── profile-circle.svg │ │ │ ├── profile-delete.svg │ │ │ ├── profile-remove.svg │ │ │ ├── profile-tick.svg │ │ │ ├── programming-arrow.svg │ │ │ ├── programming-arrows.svg │ │ │ ├── python.svg │ │ │ ├── quant-(qnt).svg │ │ │ ├── quote-down-circle.svg │ │ │ ├── quote-down-square.svg │ │ │ ├── quote-down.svg │ │ │ ├── quote-up-circle.svg │ │ │ ├── quote-up-square.svg │ │ │ ├── quote-up.svg │ │ │ ├── radar-1.svg │ │ │ ├── radar-2.svg │ │ │ ├── radar.svg │ │ │ ├── radio.svg │ │ │ ├── ram-2.svg │ │ │ ├── ram.svg │ │ │ ├── ranking-1.svg │ │ │ ├── ranking.svg │ │ │ ├── receipt-1.svg │ │ │ ├── receipt-2-1.svg │ │ │ ├── receipt-2.svg │ │ │ ├── receipt-add.svg │ │ │ ├── receipt-discount.svg │ │ │ ├── receipt-disscount.svg │ │ │ ├── receipt-edit.svg │ │ │ ├── receipt-item.svg │ │ │ ├── receipt-minus.svg │ │ │ ├── receipt-search.svg │ │ │ ├── receipt-square.svg │ │ │ ├── receipt-text.svg │ │ │ ├── receipt.svg │ │ │ ├── receive-square-2.svg │ │ │ ├── receive-square.svg │ │ │ ├── received.svg │ │ │ ├── record-circle.svg │ │ │ ├── record.svg │ │ │ ├── recovery-convert.svg │ │ │ ├── redo.svg │ │ │ ├── refresh-2.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-left-square.svg │ │ │ ├── refresh-right-square.svg │ │ │ ├── refresh-square-2.svg │ │ │ ├── refresh.svg │ │ │ ├── repeat-circle.svg │ │ │ ├── repeat.svg │ │ │ ├── repeate-music.svg │ │ │ ├── repeate-one.svg │ │ │ ├── reserve.svg │ │ │ ├── rotate-left-1.svg │ │ │ ├── rotate-left.svg │ │ │ ├── rotate-right-1.svg │ │ │ ├── rotate-right.svg │ │ │ ├── route-square.svg │ │ │ ├── routing-2.svg │ │ │ ├── routing.svg │ │ │ ├── row-horizontal.svg │ │ │ ├── row-vertical.svg │ │ │ ├── ruler&pen.svg │ │ │ ├── ruler.svg │ │ │ ├── safe-home.svg │ │ │ ├── sagittarius.svg │ │ │ ├── save-2.svg │ │ │ ├── save-add.svg │ │ │ ├── save-minus.svg │ │ │ ├── save-remove.svg │ │ │ ├── scan-barcode.svg │ │ │ ├── scan.svg │ │ │ ├── scanner.svg │ │ │ ├── scanning.svg │ │ │ ├── scissor-1.svg │ │ │ ├── scissor.svg │ │ │ ├── screenmirroring.svg │ │ │ ├── scroll.svg │ │ │ ├── search-favorite-1.svg │ │ │ ├── search-favorite.svg │ │ │ ├── search-normal-1.svg │ │ │ ├── search-normal.svg │ │ │ ├── search-status-1.svg │ │ │ ├── search-status.svg │ │ │ ├── search-zoom-in-1.svg │ │ │ ├── search-zoom-in.svg │ │ │ ├── search-zoom-out-1.svg │ │ │ ├── search-zoom-out.svg │ │ │ ├── security-card.svg │ │ │ ├── security-safe.svg │ │ │ ├── security-time.svg │ │ │ ├── security-user.svg │ │ │ ├── security.svg │ │ │ ├── send-1.svg │ │ │ ├── send-2.svg │ │ │ ├── send-sqaure-2.svg │ │ │ ├── send-square.svg │ │ │ ├── send.svg │ │ │ ├── setting-2.svg │ │ │ ├── setting-3.svg │ │ │ ├── setting-4.svg │ │ │ ├── setting-5.svg │ │ │ ├── setting.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-1.svg │ │ │ ├── shapes.svg │ │ │ ├── share.svg │ │ │ ├── shield-cross.svg │ │ │ ├── shield-search.svg │ │ │ ├── shield-slash.svg │ │ │ ├── shield-tick.svg │ │ │ ├── shield.svg │ │ │ ├── ship.svg │ │ │ ├── shop-add.svg │ │ │ ├── shop-remove.svg │ │ │ ├── shop.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shuffle.svg │ │ │ ├── siacoin-(sc).svg │ │ │ ├── sidebar-bottom.svg │ │ │ ├── sidebar-left.svg │ │ │ ├── sidebar-right.svg │ │ │ ├── sidebar-top.svg │ │ │ ├── signpost.svg │ │ │ ├── simcard-1.svg │ │ │ ├── simcard-2.svg │ │ │ ├── simcard.svg │ │ │ ├── size.svg │ │ │ ├── slack.svg │ │ │ ├── slash.svg │ │ │ ├── slider-horizontal-1.svg │ │ │ ├── slider-horizontal.svg │ │ │ ├── slider-vertical-1.svg │ │ │ ├── slider-vertical.svg │ │ │ ├── slider.svg │ │ │ ├── smallcaps.svg │ │ │ ├── smart-car.svg │ │ │ ├── smart-home.svg │ │ │ ├── smileys.svg │ │ │ ├── sms-edit.svg │ │ │ ├── sms-notification.svg │ │ │ ├── sms-search.svg │ │ │ ├── sms-star.svg │ │ │ ├── sms-tracking.svg │ │ │ ├── sms.svg │ │ │ ├── snapchat.svg │ │ │ ├── solana-(sol).svg │ │ │ ├── sort.svg │ │ │ ├── sound.svg │ │ │ ├── speaker.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── stacks-(stx).svg │ │ │ ├── star-1.svg │ │ │ ├── star-slash.svg │ │ │ ├── star.svg │ │ │ ├── status-up.svg │ │ │ ├── status.svg │ │ │ ├── stellar-(xlm).svg │ │ │ ├── sticker.svg │ │ │ ├── stickynote.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── story.svg │ │ │ ├── strongbox-2.svg │ │ │ ├── strongbox.svg │ │ │ ├── subtitle.svg │ │ │ ├── sun-1.svg │ │ │ ├── sun-fog.svg │ │ │ ├── sun.svg │ │ │ ├── tag-2.svg │ │ │ ├── tag-cross.svg │ │ │ ├── tag-right.svg │ │ │ ├── tag-user.svg │ │ │ ├── tag.svg │ │ │ ├── task-square.svg │ │ │ ├── task.svg │ │ │ ├── teacher.svg │ │ │ ├── tenx-(pay).svg │ │ │ ├── tether-(usdt).svg │ │ │ ├── text-block.svg │ │ │ ├── text-bold.svg │ │ │ ├── text-italic.svg │ │ │ ├── text-underline.svg │ │ │ ├── text.svg │ │ │ ├── textalign-center.svg │ │ │ ├── textalign-justifycenter.svg │ │ │ ├── textalign-justifyleft.svg │ │ │ ├── textalign-justifyright.svg │ │ │ ├── textalign-left.svg │ │ │ ├── textalign-right.svg │ │ │ ├── the-graph-(grt).svg │ │ │ ├── theta-(theta).svg │ │ │ ├── thorchain-(rune).svg │ │ │ ├── tick-circle.svg │ │ │ ├── tick-square.svg │ │ │ ├── ticket-2.svg │ │ │ ├── ticket-discount.svg │ │ │ ├── ticket-expired.svg │ │ │ ├── ticket-star.svg │ │ │ ├── ticket.svg │ │ │ ├── timer-1.svg │ │ │ ├── timer-pause.svg │ │ │ ├── timer-start.svg │ │ │ ├── timer.svg │ │ │ ├── toggle-off-circle.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on-circle.svg │ │ │ ├── toggle-on.svg │ │ │ ├── trade.svg │ │ │ ├── transaction-minus.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trello.svg │ │ │ ├── trend-down.svg │ │ │ ├── trend-up.svg │ │ │ ├── triangle.svg │ │ │ ├── trontron-(trx).svg │ │ │ ├── truck-fast.svg │ │ │ ├── truck-remove.svg │ │ │ ├── truck-tick.svg │ │ │ ├── truck-time.svg │ │ │ ├── truck.svg │ │ │ ├── trush-square.svg │ │ │ ├── twitch.svg │ │ │ ├── ui8.svg │ │ │ ├── undo.svg │ │ │ ├── unlimited.svg │ │ │ ├── unlock.svg │ │ │ ├── usd-coin-(usdc).svg │ │ │ ├── user-add.svg │ │ │ ├── user-cirlce-add.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-octagon.svg │ │ │ ├── user-remove.svg │ │ │ ├── user-search.svg │ │ │ ├── user-square.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tick.svg │ │ │ ├── user.svg │ │ │ ├── velas-(vlx).svg │ │ │ ├── verify.svg │ │ │ ├── vibe-(vibe).svg │ │ │ ├── video-add.svg │ │ │ ├── video-circle.svg │ │ │ ├── video-horizontal.svg │ │ │ ├── video-octagon.svg │ │ │ ├── video-play.svg │ │ │ ├── video-remove.svg │ │ │ ├── video-slash.svg │ │ │ ├── video-square.svg │ │ │ ├── video-tick.svg │ │ │ ├── video-time.svg │ │ │ ├── video-vertical.svg │ │ │ ├── video.svg │ │ │ ├── voice-cricle.svg │ │ │ ├── voice-square.svg │ │ │ ├── volume-cross.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-1.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-slash.svg │ │ │ ├── volume-up.svg │ │ │ ├── vuesax.svg │ │ │ ├── wallet-1.svg │ │ │ ├── wallet-2.svg │ │ │ ├── wallet-3.svg │ │ │ ├── wallet-add-1.svg │ │ │ ├── wallet-add.svg │ │ │ ├── wallet-check.svg │ │ │ ├── wallet-minus.svg │ │ │ ├── wallet-money.svg │ │ │ ├── wallet-remove.svg │ │ │ ├── wallet-search.svg │ │ │ ├── wallet.svg │ │ │ ├── wanchain-(wan)-1.svg │ │ │ ├── wanchain-(wan).svg │ │ │ ├── warning-2.svg │ │ │ ├── watch-status.svg │ │ │ ├── watch.svg │ │ │ ├── weight-1.svg │ │ │ ├── weight.svg │ │ │ ├── whatsapp.svg │ │ │ ├── wifi-square.svg │ │ │ ├── wifi.svg │ │ │ ├── wind-2.svg │ │ │ ├── wind.svg │ │ │ ├── windows.svg │ │ │ ├── wing-(wing).svg │ │ │ ├── woman.svg │ │ │ ├── xd.svg │ │ │ ├── xiaomi.svg │ │ │ ├── xrp-(xrp).svg │ │ │ ├── youtube.svg │ │ │ ├── zel-(zel).svg │ │ │ └── zoom.svg │ │ └── twotone │ │ ├── 24-support.svg │ │ ├── 3d-cube-scan.svg │ │ ├── 3d-rotate.svg │ │ ├── 3d-square.svg │ │ ├── 3dcube.svg │ │ ├── 3square.svg │ │ ├── aave-(aave).svg │ │ ├── activity.svg │ │ ├── add-circle.svg │ │ ├── add-square.svg │ │ ├── add.svg │ │ ├── additem.svg │ │ ├── airdrop.svg │ │ ├── airplane-square.svg │ │ ├── airplane.svg │ │ ├── airpod.svg │ │ ├── airpods.svg │ │ ├── alarm.svg │ │ ├── align-bottom.svg │ │ ├── align-horizontally.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── align-vertically.svg │ │ ├── android.svg │ │ ├── ankr-(ankr).svg │ │ ├── apple.svg │ │ ├── aquarius.svg │ │ ├── archive-1.svg │ │ ├── archive-add.svg │ │ ├── archive-book.svg │ │ ├── archive-minus.svg │ │ ├── archive-slash.svg │ │ ├── archive-tick.svg │ │ ├── archive.svg │ │ ├── arrange-circle-2.svg │ │ ├── arrange-circle.svg │ │ ├── arrange-square-2.svg │ │ ├── arrange-square.svg │ │ ├── arrow-2.svg │ │ ├── arrow-3.svg │ │ ├── arrow-bottom.svg │ │ ├── arrow-circle-down.svg │ │ ├── arrow-circle-left.svg │ │ ├── arrow-circle-right.svg │ │ ├── arrow-down-1.svg │ │ ├── arrow-down-2.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left-1.svg │ │ ├── arrow-left-2.svg │ │ ├── arrow-left-3.svg │ │ ├── arrow-left.svg │ │ ├── arrow-right-1.svg │ │ ├── arrow-right-2.svg │ │ ├── arrow-right-3.svg │ │ ├── arrow-right.svg │ │ ├── arrow-square-down.svg │ │ ├── arrow-square-left.svg │ │ ├── arrow-square-right.svg │ │ ├── arrow-square-up.svg │ │ ├── arrow-square.svg │ │ ├── arrow-swap-horizontal.svg │ │ ├── arrow-up-1.svg │ │ ├── arrow-up-2.svg │ │ ├── arrow-up-3.svg │ │ ├── arrow-up.svg │ │ ├── arrow.svg │ │ ├── attach-circle.svg │ │ ├── attach-square.svg │ │ ├── audio-square.svg │ │ ├── augur-(rep).svg │ │ ├── autobrightness.svg │ │ ├── autonio-(niox).svg │ │ ├── avalanche-(avax).svg │ │ ├── award.svg │ │ ├── back-square.svg │ │ ├── backward-10-seconds.svg │ │ ├── backward-15-seconds.svg │ │ ├── backward-5-seconds.svg │ │ ├── backward-item.svg │ │ ├── backward.svg │ │ ├── bag-2.svg │ │ ├── bag-cross-1.svg │ │ ├── bag-cross.svg │ │ ├── bag-happy.svg │ │ ├── bag-tick-2.svg │ │ ├── bag-tick.svg │ │ ├── bag-timer.svg │ │ ├── bag.svg │ │ ├── bank.svg │ │ ├── barcode.svg │ │ ├── battery-3full.svg │ │ ├── battery-charging.svg │ │ ├── battery-disable.svg │ │ ├── battery-empty-1.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── be.svg │ │ ├── bezier.svg │ │ ├── bill.svg │ │ ├── binance-coin-(bnb).svg │ │ ├── binance-usd-(busd).svg │ │ ├── bitcoin-(btc).svg │ │ ├── bitcoin-card.svg │ │ ├── bitcoin-convert.svg │ │ ├── bitcoin-refresh.svg │ │ ├── blend-2.svg │ │ ├── blend.svg │ │ ├── blogger.svg │ │ ├── bluetooth-2.svg │ │ ├── bluetooth-circle.svg │ │ ├── bluetooth-rectangle.svg │ │ ├── bluetooth.svg │ │ ├── blur.svg │ │ ├── book-1.svg │ │ ├── book-saved.svg │ │ ├── book-square.svg │ │ ├── book.svg │ │ ├── bookmark-2.svg │ │ ├── bookmark.svg │ │ ├── bootsrap.svg │ │ ├── box-1.svg │ │ ├── box-2.svg │ │ ├── box-add.svg │ │ ├── box-remove.svg │ │ ├── box-search.svg │ │ ├── box-tick.svg │ │ ├── box-time.svg │ │ ├── box.svg │ │ ├── briefcase.svg │ │ ├── brifecase-cross.svg │ │ ├── brifecase-tick.svg │ │ ├── brifecase-timer.svg │ │ ├── broom.svg │ │ ├── brush-1.svg │ │ ├── brush-2.svg │ │ ├── brush-3.svg │ │ ├── brush-4.svg │ │ ├── brush.svg │ │ ├── bubble.svg │ │ ├── bucket-circle.svg │ │ ├── bucket-square.svg │ │ ├── bucket.svg │ │ ├── building-3.svg │ │ ├── building-4.svg │ │ ├── building.svg │ │ ├── buildings-2.svg │ │ ├── buildings.svg │ │ ├── buliding.svg │ │ ├── bus.svg │ │ ├── buy-crypto.svg │ │ ├── cake.svg │ │ ├── calculator.svg │ │ ├── calendar-1.svg │ │ ├── calendar-2.svg │ │ ├── calendar-add.svg │ │ ├── calendar-circle.svg │ │ ├── calendar-edit.svg │ │ ├── calendar-remove.svg │ │ ├── calendar-search.svg │ │ ├── calendar-tick.svg │ │ ├── calendar.svg │ │ ├── call-add.svg │ │ ├── call-calling.svg │ │ ├── call-incoming.svg │ │ ├── call-minus.svg │ │ ├── call-outgoing.svg │ │ ├── call-received.svg │ │ ├── call-remove.svg │ │ ├── call-slash.svg │ │ ├── call.svg │ │ ├── camera-slash.svg │ │ ├── camera.svg │ │ ├── candle-2.svg │ │ ├── candle.svg │ │ ├── car.svg │ │ ├── card-add.svg │ │ ├── card-coin.svg │ │ ├── card-edit.svg │ │ ├── card-pos.svg │ │ ├── card-receive.svg │ │ ├── card-remove-1.svg │ │ ├── card-remove.svg │ │ ├── card-send.svg │ │ ├── card-slash.svg │ │ ├── card-tick-1.svg │ │ ├── card-tick.svg │ │ ├── card.svg │ │ ├── cardano-(ada).svg │ │ ├── cards.svg │ │ ├── category-2.svg │ │ ├── category.svg │ │ ├── cd.svg │ │ ├── celo-(celo).svg │ │ ├── celsius-(cel)-.svg │ │ ├── chainlink-(link).svg │ │ ├── chart-1.svg │ │ ├── chart-2.svg │ │ ├── chart-21.svg │ │ ├── chart-3.svg │ │ ├── chart-square.svg │ │ ├── chart-success.svg │ │ ├── chart.svg │ │ ├── check.svg │ │ ├── chrome.svg │ │ ├── civic-(cvc).svg │ │ ├── clipboard-close.svg │ │ ├── clipboard-export.svg │ │ ├── clipboard-import.svg │ │ ├── clipboard-text.svg │ │ ├── clipboard-tick.svg │ │ ├── clipboard.svg │ │ ├── clock-1.svg │ │ ├── clock.svg │ │ ├── close-circle.svg │ │ ├── close-square.svg │ │ ├── cloud-add.svg │ │ ├── cloud-change.svg │ │ ├── cloud-connection.svg │ │ ├── cloud-cross.svg │ │ ├── cloud-drizzle.svg │ │ ├── cloud-fog.svg │ │ ├── cloud-lightning.svg │ │ ├── cloud-minus.svg │ │ ├── cloud-notif.svg │ │ ├── cloud-plus.svg │ │ ├── cloud-remove.svg │ │ ├── cloud-snow.svg │ │ ├── cloud-sunny.svg │ │ ├── cloud.svg │ │ ├── code-1.svg │ │ ├── code-circle.svg │ │ ├── code.svg │ │ ├── coffee.svg │ │ ├── coin-1.svg │ │ ├── coin.svg │ │ ├── color-swatch.svg │ │ ├── colorfilter.svg │ │ ├── colors-square.svg │ │ ├── command-square.svg │ │ ├── command.svg │ │ ├── component.svg │ │ ├── computing.svg │ │ ├── convert-3d-cube.svg │ │ ├── convert-card.svg │ │ ├── convert.svg │ │ ├── convertshape-2.svg │ │ ├── convertshape.svg │ │ ├── copy-success.svg │ │ ├── copy.svg │ │ ├── copyright.svg │ │ ├── courthouse.svg │ │ ├── cpu-charge.svg │ │ ├── cpu-setting.svg │ │ ├── cpu.svg │ │ ├── creative-commons.svg │ │ ├── crop.svg │ │ ├── crown-1.svg │ │ ├── crown.svg │ │ ├── cup.svg │ │ ├── dai-(dai).svg │ │ ├── danger.svg │ │ ├── dash-(dash).svg │ │ ├── data-2.svg │ │ ├── data.svg │ │ ├── decred-(dcr).svg │ │ ├── dent-(dent).svg │ │ ├── designtools.svg │ │ ├── device-message.svg │ │ ├── devices.svg │ │ ├── diagram.svg │ │ ├── diamonds.svg │ │ ├── direct-down.svg │ │ ├── direct-inbox.svg │ │ ├── direct-left.svg │ │ ├── direct-normal.svg │ │ ├── direct-notification.svg │ │ ├── direct-right.svg │ │ ├── direct-send.svg │ │ ├── direct-up.svg │ │ ├── direct.svg │ │ ├── directbox-default.svg │ │ ├── directbox-notif.svg │ │ ├── directbox-receive.svg │ │ ├── directbox-send.svg │ │ ├── discount-circle.svg │ │ ├── discount-shape.svg │ │ ├── discover.svg │ │ ├── dislike.svg │ │ ├── document-1.svg │ │ ├── document-cloud.svg │ │ ├── document-code-2.svg │ │ ├── document-code.svg │ │ ├── document-copy.svg │ │ ├── document-download.svg │ │ ├── document-favorite.svg │ │ ├── document-filter.svg │ │ ├── document-forward.svg │ │ ├── document-like.svg │ │ ├── document-previous.svg │ │ ├── document-sketch.svg │ │ ├── document-text-1.svg │ │ ├── document-text.svg │ │ ├── document-upload.svg │ │ ├── document.svg │ │ ├── dollar-circle.svg │ │ ├── dollar-square.svg │ │ ├── dribbble.svg │ │ ├── driver-2.svg │ │ ├── driver-refresh.svg │ │ ├── driver.svg │ │ ├── driving.svg │ │ ├── drop.svg │ │ ├── dropbox.svg │ │ ├── edit-2.svg │ │ ├── edit.svg │ │ ├── educare-(ekt).svg │ │ ├── electricity.svg │ │ ├── element-1.svg │ │ ├── element-2.svg │ │ ├── element-3.svg │ │ ├── element-4.svg │ │ ├── element-equal.svg │ │ ├── element-plus.svg │ │ ├── emercoin-(emc).svg │ │ ├── emoji-happy.svg │ │ ├── emoji-normal.svg │ │ ├── emoji-sad.svg │ │ ├── empty-wallet-add.svg │ │ ├── empty-wallet-remove.svg │ │ ├── empty-wallet-tick.svg │ │ ├── empty-wallet.svg │ │ ├── enjin-coin-(enj).svg │ │ ├── eos-(eos).svg │ │ ├── eraser-1.svg │ │ ├── eraser.svg │ │ ├── ethereum-(eth).svg │ │ ├── ethereum-classic-(etc).svg │ │ ├── export-1.svg │ │ ├── export-2.svg │ │ ├── export-3.svg │ │ ├── export.svg │ │ ├── external-drive.svg │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── facebook.svg │ │ ├── fatrows.svg │ │ ├── favorite-chart.svg │ │ ├── figma-1.svg │ │ ├── figma.svg │ │ ├── filter-add.svg │ │ ├── filter-edit.svg │ │ ├── filter-remove.svg │ │ ├── filter-search.svg │ │ ├── filter-square.svg │ │ ├── filter-tick.svg │ │ ├── filter.svg │ │ ├── finger-cricle.svg │ │ ├── finger-scan.svg │ │ ├── firstline.svg │ │ ├── flag-2.svg │ │ ├── flag.svg │ │ ├── flash-1.svg │ │ ├── flash-circle-1.svg │ │ ├── flash-circle.svg │ │ ├── flash-slash.svg │ │ ├── flash.svg │ │ ├── folder-2.svg │ │ ├── folder-add.svg │ │ ├── folder-cloud.svg │ │ ├── folder-connection.svg │ │ ├── folder-cross.svg │ │ ├── folder-favorite.svg │ │ ├── folder-minus.svg │ │ ├── folder-open.svg │ │ ├── folder.svg │ │ ├── forbidden-2.svg │ │ ├── forbidden.svg │ │ ├── format-circle.svg │ │ ├── format-square.svg │ │ ├── forward-10-seconds.svg │ │ ├── forward-15-seconds.svg │ │ ├── forward-5-seconds.svg │ │ ├── forward-item.svg │ │ ├── forward-square.svg │ │ ├── forward.svg │ │ ├── frame-1.svg │ │ ├── frame-2.svg │ │ ├── frame-3.svg │ │ ├── frame-4.svg │ │ ├── frame-5.svg │ │ ├── frame.svg │ │ ├── framer.svg │ │ ├── ftx-token-(ftt).svg │ │ ├── gallery-add.svg │ │ ├── gallery-edit.svg │ │ ├── gallery-export.svg │ │ ├── gallery-favorite.svg │ │ ├── gallery-import.svg │ │ ├── gallery-remove.svg │ │ ├── gallery-slash.svg │ │ ├── gallery-tick.svg │ │ ├── gallery.svg │ │ ├── game.svg │ │ ├── gameboy.svg │ │ ├── gemini-2.svg │ │ ├── gemini.svg │ │ ├── ghost.svg │ │ ├── gift.svg │ │ ├── glass-1.svg │ │ ├── glass.svg │ │ ├── global-edit.svg │ │ ├── global-refresh.svg │ │ ├── global-search.svg │ │ ├── global.svg │ │ ├── google-1.svg │ │ ├── google-play.svg │ │ ├── google.svg │ │ ├── gps-slash.svg │ │ ├── gps.svg │ │ ├── grammerly.svg │ │ ├── graph.svg │ │ ├── grid-1.svg │ │ ├── grid-2.svg │ │ ├── grid-3.svg │ │ ├── grid-4.svg │ │ ├── grid-5.svg │ │ ├── grid-6.svg │ │ ├── grid-7.svg │ │ ├── grid-8.svg │ │ ├── grid-9.svg │ │ ├── grid-edit.svg │ │ ├── grid-eraser.svg │ │ ├── grid-lock.svg │ │ ├── happyemoji.svg │ │ ├── harmony-(one).svg │ │ ├── hashtag-1.svg │ │ ├── hashtag-down.svg │ │ ├── hashtag-up.svg │ │ ├── hashtag.svg │ │ ├── headphone.svg │ │ ├── headphones.svg │ │ ├── health.svg │ │ ├── heart-add.svg │ │ ├── heart-circle.svg │ │ ├── heart-edit.svg │ │ ├── heart-remove.svg │ │ ├── heart-search.svg │ │ ├── heart-slash.svg │ │ ├── heart-tick.svg │ │ ├── heart.svg │ │ ├── hedera-hashgraph-(hbar).svg │ │ ├── hex-(hex).svg │ │ ├── hierarchy-2.svg │ │ ├── hierarchy-3.svg │ │ ├── hierarchy-square-2.svg │ │ ├── hierarchy-square-3.svg │ │ ├── hierarchy-square.svg │ │ ├── hierarchy.svg │ │ ├── home-1.svg │ │ ├── home-2.svg │ │ ├── home-hashtag.svg │ │ ├── home-trend-down.svg │ │ ├── home-trend-up.svg │ │ ├── home-wifi.svg │ │ ├── home.svg │ │ ├── hospital.svg │ │ ├── house-2.svg │ │ ├── house.svg │ │ ├── html-3.svg │ │ ├── html-5.svg │ │ ├── huobi-token-(ht).svg │ │ ├── icon-(icx).svg │ │ ├── icon-1.svg │ │ ├── icon-2.svg │ │ ├── icon-3.svg │ │ ├── icon.svg │ │ ├── illustrator.svg │ │ ├── image.svg │ │ ├── import-1.svg │ │ ├── import-2.svg │ │ ├── import.svg │ │ ├── info-circle.svg │ │ ├── information.svg │ │ ├── instagram.svg │ │ ├── iost-(iost).svg │ │ ├── java-script.svg │ │ ├── js.svg │ │ ├── judge.svg │ │ ├── kanban.svg │ │ ├── key-square.svg │ │ ├── key.svg │ │ ├── keyboard-open.svg │ │ ├── keyboard.svg │ │ ├── kyber-network-(knc).svg │ │ ├── lamp-1.svg │ │ ├── lamp-charge.svg │ │ ├── lamp-on.svg │ │ ├── lamp-slash.svg │ │ ├── lamp.svg │ │ ├── language-circle.svg │ │ ├── language-square.svg │ │ ├── layer.svg │ │ ├── level.svg │ │ ├── lifebuoy.svg │ │ ├── like-1.svg │ │ ├── like-dislike.svg │ │ ├── like-shapes.svg │ │ ├── like-tag.svg │ │ ├── like.svg │ │ ├── link-1.svg │ │ ├── link-2.svg │ │ ├── link-21.svg │ │ ├── link-circle.svg │ │ ├── link-square.svg │ │ ├── link.svg │ │ ├── litecoin(ltc).svg │ │ ├── location-add.svg │ │ ├── location-cross.svg │ │ ├── location-minus.svg │ │ ├── location-slash.svg │ │ ├── location-tick.svg │ │ ├── location.svg │ │ ├── lock-1.svg │ │ ├── lock-circle.svg │ │ ├── lock-slash.svg │ │ ├── lock.svg │ │ ├── login-1.svg │ │ ├── login.svg │ │ ├── logout-1.svg │ │ ├── logout.svg │ │ ├── lovely.svg │ │ ├── magic-star.svg │ │ ├── magicpen.svg │ │ ├── main-component.svg │ │ ├── maker-(mkr).svg │ │ ├── man.svg │ │ ├── map-1.svg │ │ ├── map.svg │ │ ├── mask-1.svg │ │ ├── mask-2.svg │ │ ├── mask.svg │ │ ├── math.svg │ │ ├── maximize-1.svg │ │ ├── maximize-2.svg │ │ ├── maximize-21.svg │ │ ├── maximize-3.svg │ │ ├── maximize-4.svg │ │ ├── maximize-circle.png │ │ ├── maximize-circle.svg │ │ ├── maximize.svg │ │ ├── medal-star.svg │ │ ├── medal.svg │ │ ├── menu-1.svg │ │ ├── menu-board.svg │ │ ├── menu.svg │ │ ├── message-2.svg │ │ ├── message-add-1.svg │ │ ├── message-add.svg │ │ ├── message-circle.svg │ │ ├── message-edit.svg │ │ ├── message-favorite.svg │ │ ├── message-minus.svg │ │ ├── message-notif.svg │ │ ├── message-programming.svg │ │ ├── message-question.svg │ │ ├── message-remove.svg │ │ ├── message-search.svg │ │ ├── message-square.svg │ │ ├── message-text-1.svg │ │ ├── message-text.svg │ │ ├── message-tick.svg │ │ ├── message-time.svg │ │ ├── message.svg │ │ ├── messages-1.svg │ │ ├── messages-2.svg │ │ ├── messages-3.svg │ │ ├── messages.svg │ │ ├── messenger.svg │ │ ├── microphone-2.svg │ │ ├── microphone-slash-1.svg │ │ ├── microphone-slash.svg │ │ ├── microphone.svg │ │ ├── microscope.svg │ │ ├── milk.svg │ │ ├── mini-music-sqaure.svg │ │ ├── minus-cirlce.svg │ │ ├── minus-square.svg │ │ ├── minus.svg │ │ ├── mirror.svg │ │ ├── mirroring-screen.svg │ │ ├── mobile-programming.svg │ │ ├── mobile.svg │ │ ├── monero-(xmr).svg │ │ ├── money-2.svg │ │ ├── money-3.svg │ │ ├── money-4.svg │ │ ├── money-add.svg │ │ ├── money-change.svg │ │ ├── money-forbidden.svg │ │ ├── money-recive.svg │ │ ├── money-remove.svg │ │ ├── money-send.svg │ │ ├── money-tick.svg │ │ ├── money-time.svg │ │ ├── money.svg │ │ ├── moneys.svg │ │ ├── monitor-mobbile.svg │ │ ├── monitor-recorder.svg │ │ ├── monitor.svg │ │ ├── moon.svg │ │ ├── more-2.svg │ │ ├── more-circle.svg │ │ ├── more-square.svg │ │ ├── more.svg │ │ ├── mouse-1.svg │ │ ├── mouse-circle.svg │ │ ├── mouse-square.svg │ │ ├── mouse.svg │ │ ├── music-circle.svg │ │ ├── music-dashboard.svg │ │ ├── music-filter.svg │ │ ├── music-library-2.svg │ │ ├── music-play.svg │ │ ├── music-playlist.svg │ │ ├── music-square-add.svg │ │ ├── music-square-remove.svg │ │ ├── music-square-search.svg │ │ ├── music-square.svg │ │ ├── music.svg │ │ ├── musicnote.svg │ │ ├── nebulas-(nas).svg │ │ ├── nem-(xem).svg │ │ ├── nexo-(nexo).svg │ │ ├── next.svg │ │ ├── note-1.svg │ │ ├── note-2.svg │ │ ├── note-21.svg │ │ ├── note-add.svg │ │ ├── note-favorite.svg │ │ ├── note-remove.svg │ │ ├── note-square.svg │ │ ├── note-text.svg │ │ ├── note.svg │ │ ├── notification-1.svg │ │ ├── notification-bing.svg │ │ ├── notification-circle.svg │ │ ├── notification-favorite.svg │ │ ├── notification-status.svg │ │ ├── notification.svg │ │ ├── ocean-protocol-(ocean).svg │ │ ├── okb-(okb).svg │ │ ├── omega-circle.svg │ │ ├── omega-square.svg │ │ ├── ontology-(ont).svg │ │ ├── paintbucket.svg │ │ ├── paperclip-2.svg │ │ ├── paperclip.svg │ │ ├── password-check.svg │ │ ├── path-2.svg │ │ ├── path-square.svg │ │ ├── path.svg │ │ ├── pause-circle.svg │ │ ├── pause.svg │ │ ├── paypal.svg │ │ ├── pen-add.svg │ │ ├── pen-close.svg │ │ ├── pen-remove.svg │ │ ├── pen-tool-2.svg │ │ ├── pen-tool.svg │ │ ├── people.svg │ │ ├── percentage-circle.svg │ │ ├── percentage-square.svg │ │ ├── personalcard.svg │ │ ├── pet.svg │ │ ├── pharagraphspacing.svg │ │ ├── photoshop.svg │ │ ├── picture-frame.svg │ │ ├── play-add.svg │ │ ├── play-circle.svg │ │ ├── play-cricle.svg │ │ ├── play-remove.svg │ │ ├── play.svg │ │ ├── polkadot-(dot).svg │ │ ├── polygon-(matic).svg │ │ ├── polyswarm-(nct).svg │ │ ├── presention-chart.svg │ │ ├── previous.svg │ │ ├── printer-slash.svg │ │ ├── printer.svg │ │ ├── profile-2user.svg │ │ ├── profile-add.svg │ │ ├── profile-circle.svg │ │ ├── profile-delete.svg │ │ ├── profile-remove.svg │ │ ├── profile-tick.svg │ │ ├── profile.svg │ │ ├── programming-arrow.svg │ │ ├── programming-arrows.svg │ │ ├── python.svg │ │ ├── quant-(qnt).svg │ │ ├── quote-down-circle.svg │ │ ├── quote-down-square.svg │ │ ├── quote-down.svg │ │ ├── quote-up-circle.svg │ │ ├── quote-up-square.svg │ │ ├── quote-up.svg │ │ ├── radar-1.svg │ │ ├── radar-2.svg │ │ ├── radar.svg │ │ ├── radio.svg │ │ ├── ram-2.svg │ │ ├── ram.svg │ │ ├── ranking-1.svg │ │ ├── ranking.svg │ │ ├── receipt-1.svg │ │ ├── receipt-2-1.svg │ │ ├── receipt-2.svg │ │ ├── receipt-add.svg │ │ ├── receipt-discount.svg │ │ ├── receipt-disscount.svg │ │ ├── receipt-edit.svg │ │ ├── receipt-item.svg │ │ ├── receipt-minus.svg │ │ ├── receipt-search.svg │ │ ├── receipt-square.svg │ │ ├── receipt-text.svg │ │ ├── receipt.svg │ │ ├── receive-square-2.svg │ │ ├── receive-square.svg │ │ ├── received.svg │ │ ├── record-circle.svg │ │ ├── record.svg │ │ ├── recovery-convert.svg │ │ ├── redo.svg │ │ ├── refresh-2.svg │ │ ├── refresh-circle.svg │ │ ├── refresh-left-square.svg │ │ ├── refresh-right-square.svg │ │ ├── refresh-square-2.svg │ │ ├── refresh.svg │ │ ├── repeat-circle.svg │ │ ├── repeat.svg │ │ ├── repeate-music.svg │ │ ├── repeate-one.svg │ │ ├── reserve.svg │ │ ├── rotate-left-1.svg │ │ ├── rotate-left.svg │ │ ├── rotate-right-1.svg │ │ ├── rotate-right.svg │ │ ├── route-square.svg │ │ ├── routing-2.svg │ │ ├── routing.svg │ │ ├── row-horizontal.svg │ │ ├── row-vertical.svg │ │ ├── ruler&pen.svg │ │ ├── ruler.svg │ │ ├── safe-home.svg │ │ ├── sagittarius.svg │ │ ├── save-2.svg │ │ ├── save-add.svg │ │ ├── save-minus.svg │ │ ├── save-remove.svg │ │ ├── scan-barcode.svg │ │ ├── scan.svg │ │ ├── scanner.svg │ │ ├── scanning.svg │ │ ├── scissor-1.svg │ │ ├── scissor.svg │ │ ├── screenmirroring.svg │ │ ├── scroll.svg │ │ ├── search-favorite-1.svg │ │ ├── search-favorite.svg │ │ ├── search-normal-1.svg │ │ ├── search-normal.svg │ │ ├── search-status-1.svg │ │ ├── search-status.svg │ │ ├── search-zoom-in-1.svg │ │ ├── search-zoom-in.svg │ │ ├── search-zoom-out-1.svg │ │ ├── search-zoom-out.svg │ │ ├── security-card.svg │ │ ├── security-safe.svg │ │ ├── security-time.svg │ │ ├── security-user.svg │ │ ├── security.svg │ │ ├── send-1.svg │ │ ├── send-2.svg │ │ ├── send-sqaure-2.svg │ │ ├── send-square.svg │ │ ├── send.svg │ │ ├── setting-2.svg │ │ ├── setting-3.svg │ │ ├── setting-4.svg │ │ ├── setting-5.svg │ │ ├── setting.svg │ │ ├── settings.svg │ │ ├── shapes-1.svg │ │ ├── shapes.svg │ │ ├── share.svg │ │ ├── shield-cross.svg │ │ ├── shield-search.svg │ │ ├── shield-security.svg │ │ ├── shield-slash.svg │ │ ├── shield-tick.svg │ │ ├── shield.svg │ │ ├── ship.svg │ │ ├── shop-add.svg │ │ ├── shop-remove.svg │ │ ├── shop.svg │ │ ├── shopping-bag.svg │ │ ├── shopping-cart.svg │ │ ├── shuffle.svg │ │ ├── siacoin-(sc).svg │ │ ├── sidebar-bottom.svg │ │ ├── sidebar-left.svg │ │ ├── sidebar-right.svg │ │ ├── sidebar-top.svg │ │ ├── signpost.svg │ │ ├── simcard-1.svg │ │ ├── simcard-2.svg │ │ ├── simcard.svg │ │ ├── size.svg │ │ ├── slack.svg │ │ ├── slash.svg │ │ ├── slider-horizontal-1.svg │ │ ├── slider-horizontal.svg │ │ ├── slider-vertical-1.svg │ │ ├── slider-vertical.svg │ │ ├── slider.svg │ │ ├── smallcaps.svg │ │ ├── smart-car.svg │ │ ├── smart-home.svg │ │ ├── smileys.svg │ │ ├── sms-edit.svg │ │ ├── sms-notification.svg │ │ ├── sms-search.svg │ │ ├── sms-star.svg │ │ ├── sms-tracking.svg │ │ ├── sms.svg │ │ ├── snapchat.svg │ │ ├── solana-(sol).svg │ │ ├── sort.svg │ │ ├── sound.svg │ │ ├── speaker.svg │ │ ├── speedometer.svg │ │ ├── spotify.svg │ │ ├── stacks-(stx).svg │ │ ├── star-1.svg │ │ ├── star-slash.svg │ │ ├── star.svg │ │ ├── status-up.svg │ │ ├── status.svg │ │ ├── stellar-(xlm).svg │ │ ├── sticker.svg │ │ ├── stickynote.svg │ │ ├── stop-circle.svg │ │ ├── stop.svg │ │ ├── story.svg │ │ ├── strongbox-2.svg │ │ ├── strongbox.svg │ │ ├── subtitle.svg │ │ ├── sun-1.svg │ │ ├── sun-fog.svg │ │ ├── sun.svg │ │ ├── tag-2.svg │ │ ├── tag-cross.svg │ │ ├── tag-right.svg │ │ ├── tag-user.svg │ │ ├── tag.svg │ │ ├── task-square.svg │ │ ├── task.svg │ │ ├── teacher.svg │ │ ├── tenx-(pay).svg │ │ ├── tether-(usdt).svg │ │ ├── text-block.svg │ │ ├── text-bold.svg │ │ ├── text-italic.svg │ │ ├── text-underline.svg │ │ ├── text.svg │ │ ├── textalign-center.svg │ │ ├── textalign-justifycenter.svg │ │ ├── textalign-justifyleft.svg │ │ ├── textalign-justifyright.svg │ │ ├── textalign-left.svg │ │ ├── textalign-right.svg │ │ ├── the-graph-(grt).svg │ │ ├── theta-(theta).svg │ │ ├── thorchain-(rune).svg │ │ ├── tick-circle.svg │ │ ├── tick-square.svg │ │ ├── ticket-2.svg │ │ ├── ticket-discount.svg │ │ ├── ticket-expired.svg │ │ ├── ticket-star.svg │ │ ├── ticket.svg │ │ ├── timer-1.svg │ │ ├── timer-pause.svg │ │ ├── timer-start.svg │ │ ├── timer.svg │ │ ├── toggle-off-circle.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on-circle.svg │ │ ├── toggle-on.svg │ │ ├── trade.svg │ │ ├── transaction-minus.svg │ │ ├── translate.svg │ │ ├── trash.svg │ │ ├── tree.svg │ │ ├── trello.svg │ │ ├── trend-down.svg │ │ ├── trend-up.svg │ │ ├── triangle.svg │ │ ├── trontron-(trx).svg │ │ ├── truck-fast.svg │ │ ├── truck-tick.svg │ │ ├── truck.svg │ │ ├── trush-square.svg │ │ ├── twitch.svg │ │ ├── ui8.svg │ │ ├── undo.svg │ │ ├── unlimited.svg │ │ ├── unlock.svg │ │ ├── usd-coin-(usdc).svg │ │ ├── user-add.svg │ │ ├── user-cirlce-add.svg │ │ ├── user-edit.svg │ │ ├── user-minus.svg │ │ ├── user-octagon.svg │ │ ├── user-remove.svg │ │ ├── user-search.svg │ │ ├── user-square.svg │ │ ├── user-tag.svg │ │ ├── user-tick.svg │ │ ├── user.svg │ │ ├── velas-(vlx).svg │ │ ├── verify.svg │ │ ├── vibe-(vibe).svg │ │ ├── video-add.svg │ │ ├── video-circle.svg │ │ ├── video-horizontal.svg │ │ ├── video-octagon.svg │ │ ├── video-play.svg │ │ ├── video-remove.svg │ │ ├── video-slash.svg │ │ ├── video-square.svg │ │ ├── video-tick.svg │ │ ├── video-time.svg │ │ ├── video-vertical.svg │ │ ├── video.svg │ │ ├── voice-cricle.svg │ │ ├── voice-square.svg │ │ ├── volume-cross.svg │ │ ├── volume-high.svg │ │ ├── volume-low-1.svg │ │ ├── volume-low.svg │ │ ├── volume-mute.svg │ │ ├── volume-slash.svg │ │ ├── volume-up.svg │ │ ├── volume.svg │ │ ├── vuesax.svg │ │ ├── wallet-1.svg │ │ ├── wallet-2.svg │ │ ├── wallet-3.svg │ │ ├── wallet-add-1.svg │ │ ├── wallet-add-2.svg │ │ ├── wallet-add.svg │ │ ├── wallet-check.svg │ │ ├── wallet-minus.svg │ │ ├── wallet-money.svg │ │ ├── wallet-remove.svg │ │ ├── wallet-search.svg │ │ ├── wallet.svg │ │ ├── wanchain-(wan)-1.svg │ │ ├── wanchain-(wan).svg │ │ ├── warning-2.svg │ │ ├── watch-status.svg │ │ ├── watch.svg │ │ ├── weight-1.svg │ │ ├── weight.svg │ │ ├── whatsapp.svg │ │ ├── wifi-square.svg │ │ ├── wifi.svg │ │ ├── wind-2.svg │ │ ├── wind.svg │ │ ├── windows.svg │ │ ├── wing-(wing).svg │ │ ├── woman.svg │ │ ├── xd.svg │ │ ├── xiaomi.svg │ │ ├── xrp-(xrp).svg │ │ ├── youtube.svg │ │ ├── zel-(zel).svg │ │ └── zoom.svg │ └── views │ ├── _mail │ │ └── team-invitation.blade.php │ ├── components │ │ ├── Alerts │ │ │ ├── alerts.blade.php │ │ │ ├── danger.blade.php │ │ │ ├── success.blade.php │ │ │ └── sweetalert2.blade.php │ │ ├── admin │ │ │ ├── elements │ │ │ │ ├── category-tree.blade.php │ │ │ │ ├── menu-builder.blade.php │ │ │ │ └── panel-setting.blade.php │ │ │ ├── forms │ │ │ │ ├── blog-form.blade.php │ │ │ │ └── page-form.blade.php │ │ │ └── ui │ │ │ ├── alerts │ │ │ │ ├── danger.blade.php │ │ │ │ ├── default.blade.php │ │ │ │ ├── success.blade.php │ │ │ │ └── sweetalert2.blade.php │ │ │ ├── breadcrumb-item.blade.php │ │ │ ├── breadcrumb.blade.php │ │ │ ├── form │ │ │ │ └── input.blade.php │ │ │ └── table.blade.php │ │ ├── alizam │ │ │ ├── category-selector.blade.php │ │ │ ├── category-story-type.blade.php │ │ │ ├── category-tree-accordion.blade.php │ │ │ ├── category-tree-input.blade.php │ │ │ ├── category-tree.blade.php │ │ │ ├── combobox.blade.php │ │ │ ├── filter-component.blade.php │ │ │ ├── general-drawer.blade.php │ │ │ ├── modal.blade.php │ │ │ └── svgs │ │ │ └── present-box.blade.php │ │ ├── form │ │ │ ├── comment-post.blade.php │ │ │ ├── comment-product.blade.php │ │ │ ├── delivery_time.blade.php │ │ │ ├── input │ │ │ │ ├── advertise-type-picker.blade.php │ │ │ │ ├── category-picker.blade.php │ │ │ │ ├── countries.blade.php │ │ │ │ ├── currency.blade.php │ │ │ │ ├── file-upload-v2.blade.php │ │ │ │ ├── file-upload.blade.php │ │ │ │ ├── partial │ │ │ │ │ └── loop-checkbox.blade.php │ │ │ │ └── rate.blade.php │ │ │ └── team-form.blade.php │ │ ├── form-builder.blade.php │ │ ├── layouts │ │ │ ├── app.blade.php │ │ │ ├── bottom-nav.blade.php │ │ │ ├── drawer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── offcanvas.blade.php │ │ │ ├── panel.blade.php │ │ │ └── syndron │ │ │ ├── app.blade.php │ │ │ ├── auth.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ └── sidebar.blade.php │ │ ├── logo.blade.php │ │ ├── svgs │ │ │ └── present-box.blade.php │ │ ├── syndron │ │ │ └── admin-sidebar-menu.blade.php │ │ ├── tailwind │ │ │ ├── alert.blade.php │ │ │ ├── flowbite │ │ │ │ └── modal.blade.php │ │ │ └── part │ │ │ ├── payment-selection.blade.php │ │ │ └── team-list.blade.php │ │ ├── tree-view.blade.php │ │ └── ui │ │ ├── form │ │ │ └── input.blade.php │ │ ├── horizontal-line.blade.php │ │ ├── loaders.blade.php │ │ ├── offcanvas.blade.php │ │ └── wire │ │ └── button.blade.php │ ├── emails │ │ ├── team-invitation.blade.php │ │ └── verification-code.blade.php │ ├── errors │ │ ├── 403.blade.php │ │ ├── 404.blade.php │ │ └── 500.blade.php │ ├── layouts │ │ └── syndron │ │ ├── app.blade.php │ │ ├── auth │ │ │ └── app.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── search.blade.php │ │ ├── sidebar-sample.blade.php │ │ └── sidebar.blade.php │ ├── livewire │ │ ├── advertise │ │ │ └── create-advertise-form.blade.php │ │ ├── alizam │ │ │ ├── advertise-list-v2.blade.php │ │ │ ├── advertise-list.blade.php │ │ │ ├── drawer.blade.php │ │ │ ├── drawers │ │ │ │ ├── filters.blade.php │ │ │ │ ├── notifications.blade.php │ │ │ │ └── provinces.blade.php │ │ │ ├── panel.blade.php │ │ │ └── panels │ │ │ ├── advertise-submission-form.blade.php │ │ │ ├── comment.blade.php │ │ │ ├── create-demand-advertisement.blade.php │ │ │ ├── notifications.blade.php │ │ │ └── submission │ │ │ ├── form-inputs-v1.blade.php │ │ │ ├── form-inputs.blade.php │ │ │ └── select-category.blade.php │ │ ├── auth │ │ │ ├── login-form.blade.php │ │ │ ├── login-identifier.blade.php │ │ │ ├── login-password.blade.php │ │ │ ├── login-verification.blade.php │ │ │ └── register-form.blade.php │ │ ├── partial │ │ │ ├── loading.blade.php │ │ │ └── success-message.blade.php │ │ └── user │ │ └── conversation-show.blade.php │ ├── pages │ │ ├── _partials │ │ │ └── category_tree.blade.php │ │ ├── about-us.blade.php │ │ ├── admin │ │ │ ├── advertise │ │ │ │ ├── advertise-feature │ │ │ │ │ ├── create.blade.php │ │ │ │ │ ├── edit.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ │ ├── advertise-type │ │ │ │ │ ├── attributes │ │ │ │ │ │ ├── create.blade.php │ │ │ │ │ │ ├── index.blade.php │ │ │ │ │ │ └── items │ │ │ │ │ │ ├── create.blade.php │ │ │ │ │ │ └── index.blade.php │ │ │ │ │ ├── create.blade.php │ │ │ │ │ ├── edit.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ ├── partials │ │ │ │ │ │ └── advertise-type.blade.php │ │ │ │ │ └── show.blade.php │ │ │ │ ├── advertises │ │ │ │ │ ├── create.blade.php │ │ │ │ │ ├── edit.blade.php │ │ │ │ │ ├── index-card.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ ├── partial │ │ │ │ │ │ └── product-type-input.blade.php │ │ │ │ │ ├── show.blade.php │ │ │ │ │ ├── submission │ │ │ │ │ │ ├── create.blade.php │ │ │ │ │ │ └── select-category.blade.php │ │ │ │ │ └── trash.blade.php │ │ │ │ ├── comments │ │ │ │ │ └── list.blade.php │ │ │ │ ├── components │ │ │ │ │ ├── gallery-modal.blade.php │ │ │ │ │ └── inventory-form.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── options │ │ │ │ │ ├── create-meta-input-for-product.blade.php │ │ │ │ │ └── create-product-color.blade.php │ │ │ │ └── order │ │ │ │ ├── details.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── order-list.blade.php │ │ │ ├── auth │ │ │ │ ├── auth-basic-forgot-password.html │ │ │ │ ├── auth-basic-reset-password.html │ │ │ │ ├── login.blade.php │ │ │ │ └── signup.blade.php │ │ │ ├── blog │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── financial │ │ │ │ ├── payments │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── show.blade.php │ │ │ │ └── settlements │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── form │ │ │ │ ├── show.blade.php │ │ │ │ └── submissions.blade.php │ │ │ ├── forms │ │ │ │ └── contact-us.blade.php │ │ │ ├── index.blade.php │ │ │ ├── package │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── page │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ ├── grapesjs │ │ │ │ │ └── builder.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── permission │ │ │ │ └── index.blade.php │ │ │ ├── plan │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── request │ │ │ │ ├── list.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── role │ │ │ │ ├── index.blade.php │ │ │ │ └── single.blade.php │ │ │ ├── setting.blade.php │ │ │ ├── settings │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ ├── group_index.blade.php │ │ │ │ ├── index.blade.php │ │ │ │ ├── menu.blade.php │ │ │ │ ├── panel-v2.blade.php │ │ │ │ └── panel.blade.php │ │ │ ├── team │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── team-type │ │ │ │ ├── create.blade.php │ │ │ │ ├── edit.blade.php │ │ │ │ └── index.blade.php │ │ │ ├── term │ │ │ │ ├── advertise │ │ │ │ │ ├── category │ │ │ │ │ │ ├── index-old.blade.php │ │ │ │ │ │ ├── index.blade.php │ │ │ │ │ │ └── products-client.blade.php │ │ │ │ │ └── tag │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── products-client.blade.php │ │ │ │ ├── partials │ │ │ │ │ └── category.blade.php │ │ │ │ ├── post │ │ │ │ │ ├── category │ │ │ │ │ │ ├── index.blade.php │ │ │ │ │ │ └── products-client.blade.php │ │ │ │ │ └── tag │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── products-client.blade.php │ │ │ │ └── product │ │ │ │ ├── category │ │ │ │ │ ├── index-old.blade.php │ │ │ │ │ ├── index.blade.php │ │ │ │ │ └── products-client.blade.php │ │ │ │ └── tag │ │ │ │ ├── index.blade.php │ │ │ │ └── products-client.blade.php │ │ │ ├── ticket │ │ │ │ ├── index.blade.php │ │ │ │ └── messages │ │ │ │ └── index.blade.php │ │ │ └── users │ │ │ ├── assign-role.blade.php │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── index.blade.php │ │ │ ├── show.blade.php │ │ │ └── toman-wallet.blade.php │ │ ├── advertise-details.blade.php │ │ ├── authenticate.blade.php │ │ ├── blog.blade.php │ │ ├── contact-us.blade.php │ │ ├── index-category.blade.php │ │ ├── index-landing.blade.php │ │ ├── index.blade.php │ │ ├── page.blade.php │ │ ├── payment.blade.php │ │ ├── privacy-and-policy.blade.php │ │ ├── single-post.blade.php │ │ ├── subscriptions.blade.php │ │ ├── support.blade.php │ │ ├── team-details.blade.php │ │ ├── teams-index.blade.php │ │ ├── test.blade.php │ │ └── user │ │ ├── conversation-single.blade.php │ │ ├── conversations.blade.php │ │ ├── profile.blade.php │ │ ├── team │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ └── index.blade.php │ │ └── wallet.blade.php │ ├── pagination │ │ └── custom.blade.php │ └── vendor │ ├── laravelpwa │ │ ├── meta.blade.php │ │ └── offline.blade.php │ └── shetabitPayment │ └── redirectForm.blade.php ├── routes │ ├── admin │ │ ├── admin.php │ │ └── settings.php │ ├── api.php │ ├── channels.php │ ├── console.php │ ├── error_log │ ├── groups │ │ ├── auth.php │ │ └── test.php │ ├── page.php │ ├── user.php │ └── web.php ├── stubs │ └── nwidart-stubs │ ├── assets │ │ ├── js │ │ │ └── app.stub │ │ └── sass │ │ └── app.stub │ ├── command.stub │ ├── component-class.stub │ ├── component-view.stub │ ├── composer.stub │ ├── controller-api.stub │ ├── controller-plain.stub │ ├── controller.stub │ ├── event.stub │ ├── factory.stub │ ├── feature-test.stub │ ├── job-queued.stub │ ├── job.stub │ ├── json.stub │ ├── listener-duck.stub │ ├── listener-queued-duck.stub │ ├── listener-queued.stub │ ├── listener.stub │ ├── mail.stub │ ├── middleware.stub │ ├── migration │ │ ├── add.stub │ │ ├── create.stub │ │ ├── delete.stub │ │ ├── drop.stub │ │ └── plain.stub │ ├── model.stub │ ├── notification.stub │ ├── package.stub │ ├── policy.plain.stub │ ├── provider.stub │ ├── request.stub │ ├── resource-collection.stub │ ├── resource.stub │ ├── route-provider.stub │ ├── routes │ │ ├── api.stub │ │ └── web.stub │ ├── rule.stub │ ├── scaffold │ │ ├── config.stub │ │ └── provider.stub │ ├── seeder.stub │ ├── unit-test.stub │ ├── views │ │ ├── index.stub │ │ └── master.stub │ └── vite.stub ├── tailwind.config.js ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ ├── Controllers │ │ │ ├── CommentControllerTest.php │ │ │ ├── FeedControllerTest.php │ │ │ ├── FollowControllerTest.php │ │ │ ├── LikeControllerTest.php │ │ │ ├── SaveControllerTest.php │ │ │ └── TermControllerTest.php │ │ ├── WebPagesTest.php │ │ └── error_log │ ├── TestCase.php │ ├── Unit │ │ ├── ExampleTest.php │ │ └── error_log │ └── error_log └── vite.config.js Note: Vendor, node_modules, and other development directories are ignored.