├── .DS_Store ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .htaccess ├── .styleci.yml ├── README.md ├── app ├── Console │ ├── Commands │ │ ├── CheckPostJobRequest.php │ │ └── CheckSubscription.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Helper │ ├── CustomPathGenerator.php │ └── helper.php ├── Http │ ├── Controllers │ │ ├── API │ │ │ ├── BlogController.php │ │ │ ├── BookingController.php │ │ │ ├── CategoryController.php │ │ │ ├── CommanController.php │ │ │ ├── DashboardController.php │ │ │ ├── DocumentsController.php │ │ │ ├── NotificationController.php │ │ │ ├── PaymentController.php │ │ │ ├── PayoutController.php │ │ │ ├── PlanController.php │ │ │ ├── PostJobBidController.php │ │ │ ├── PostJobRequestController.php │ │ │ ├── ProviderAddressMappingController.php │ │ │ ├── ProviderDocumentController.php │ │ │ ├── ProviderFavouriteController.php │ │ │ ├── ProviderSlotController.php │ │ │ ├── ServiceController.php │ │ │ ├── ServicePackageController.php │ │ │ ├── SliderController.php │ │ │ ├── SubCategoryController.php │ │ │ ├── SubscriptionController.php │ │ │ ├── User │ │ │ │ └── UserController.php │ │ │ └── WalletController.php │ │ ├── Admin │ │ │ ├── PermissionController.php │ │ │ └── RoleController.php │ │ ├── Auth │ │ │ ├── AuthenticatedSessionController.php │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ConfirmablePasswordController.php │ │ │ ├── EmailVerificationNotificationController.php │ │ │ ├── EmailVerificationPromptController.php │ │ │ ├── NewPasswordController.php │ │ │ ├── PasswordResetLinkController.php │ │ │ ├── RegisteredUserController.php │ │ │ └── VerifyEmailController.php │ │ ├── BankController.php │ │ ├── BlogController.php │ │ ├── BookingController.php │ │ ├── BookingRatingController.php │ │ ├── CategoryController.php │ │ ├── Controller.php │ │ ├── CouponController.php │ │ ├── CustomerController.php │ │ ├── DocumentsController.php │ │ ├── EarningController.php │ │ ├── FrontendController.php │ │ ├── HandymanController.php │ │ ├── HandymanPayoutController.php │ │ ├── HandymanRatingController.php │ │ ├── HandymanTypeController.php │ │ ├── HomeController.php │ │ ├── LanguageController.php │ │ ├── NotificationController.php │ │ ├── PaymentController.php │ │ ├── PaymentGatewayController.php │ │ ├── PlanController.php │ │ ├── PostJobBidController.php │ │ ├── PostJobRequestController.php │ │ ├── ProviderAddressMappingController.php │ │ ├── ProviderController.php │ │ ├── ProviderDocumentController.php │ │ ├── ProviderPayoutController.php │ │ ├── ProviderSlotController.php │ │ ├── ProviderTypeController.php │ │ ├── RatingReviewController.php │ │ ├── ServiceController.php │ │ ├── ServiceFaqController.php │ │ ├── ServicePackageController.php │ │ ├── SettingController.php │ │ ├── SliderController.php │ │ ├── SubCategoryController.php │ │ ├── TaxController.php │ │ ├── UserServiceListController.php │ │ └── WalletController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── LanguageTranslator.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ ├── Auth │ │ │ └── LoginRequest.php │ │ ├── BankRequest.php │ │ ├── BlogRequest.php │ │ ├── BookingUpdateRequest.php │ │ ├── CategoryRequest.php │ │ ├── CouponRequest.php │ │ ├── DocumentRequest.php │ │ ├── HandymanPayoutRequest.php │ │ ├── HandymanTypeRequest.php │ │ ├── PlanRequest.php │ │ ├── ProviderDocumentRequest.php │ │ ├── ProviderPayout.php │ │ ├── ProviderSubscriptionRequest.php │ │ ├── ProviderTypeRequest.php │ │ ├── ServiceRequest.php │ │ ├── SubCategoryRequest.php │ │ ├── TaxRequest.php │ │ ├── UserRequest.php │ │ └── WalletRequest.php │ └── Resources │ │ └── API │ │ ├── AppDownloadResource.php │ │ ├── BankResource.php │ │ ├── BlogResource.php │ │ ├── BookingChargesResource.php │ │ ├── BookingDetailResource.php │ │ ├── BookingPackageResource.php │ │ ├── BookingRatingResource.php │ │ ├── BookingResource.php │ │ ├── CategoryResource.php │ │ ├── CouponResource.php │ │ ├── DocumentResource.php │ │ ├── FavouriteProviderResource.php │ │ ├── GetCashPaymentHistoryResource.php │ │ ├── HandymanRatingResource.php │ │ ├── HandymanResource.php │ │ ├── NotificationResource.php │ │ ├── PaymentGatewayResource.php │ │ ├── PaymentHistoryResource.php │ │ ├── PaymentResource.php │ │ ├── PayoutResource.php │ │ ├── PlanResource.php │ │ ├── PostJobBiderResource.php │ │ ├── PostJobRequestDetailResource.php │ │ ├── PostJobRequestResource.php │ │ ├── ProviderAddressMappingResource.php │ │ ├── ProviderDocumentResource.php │ │ ├── ProviderSubscribeResource.php │ │ ├── ProviderTaxResource.php │ │ ├── ServiceDetailResource.php │ │ ├── ServicePackageResource.php │ │ ├── ServiceProofResource.php │ │ ├── ServiceResource.php │ │ ├── SliderResource.php │ │ ├── SubCategoryResource.php │ │ ├── TaxResource.php │ │ ├── TypeResource.php │ │ ├── UserFavouriteResource.php │ │ ├── UserResource.php │ │ ├── WalletHistoryResource.php │ │ └── WalletResource.php ├── Models │ ├── AppDownload.php │ ├── AppSetting.php │ ├── Bank.php │ ├── BaseModel.php │ ├── Blog.php │ ├── Booking.php │ ├── BookingActivity.php │ ├── BookingAddressMapping.php │ ├── BookingCouponMapping.php │ ├── BookingExtraCharge.php │ ├── BookingHandymanMapping.php │ ├── BookingPackageMapping.php │ ├── BookingRating.php │ ├── BookingStatus.php │ ├── Category.php │ ├── City.php │ ├── Country.php │ ├── Coupon.php │ ├── CouponServiceMapping.php │ ├── Documents.php │ ├── HandymanPayout.php │ ├── HandymanRating.php │ ├── HandymanType.php │ ├── Notification.php │ ├── PackageServiceMapping.php │ ├── Payment.php │ ├── PaymentGateway.php │ ├── PaymentHistory.php │ ├── Permission.php │ ├── PlanLimit.php │ ├── Plans.php │ ├── PostJobBid.php │ ├── PostJobRequest.php │ ├── PostJobServiceMapping.php │ ├── PostRequestStatus.php │ ├── ProviderAddressMapping.php │ ├── ProviderDocument.php │ ├── ProviderPayout.php │ ├── ProviderServiceAddressMapping.php │ ├── ProviderSlotMapping.php │ ├── ProviderSubscription.php │ ├── ProviderTaxMapping.php │ ├── ProviderType.php │ ├── Role.php │ ├── Service.php │ ├── ServiceFaq.php │ ├── ServicePackage.php │ ├── ServiceProof.php │ ├── Setting.php │ ├── Slider.php │ ├── State.php │ ├── StaticData.php │ ├── SubCategory.php │ ├── SubscriptionTransaction.php │ ├── Tax.php │ ├── User.php │ ├── UserFavouriteProvider.php │ ├── UserFavouriteService.php │ ├── UserPlayerIds.php │ ├── Wallet.php │ └── WalletHistory.php ├── Notifications │ ├── BookingNotification.php │ ├── CommonNotification.php │ ├── PayoutNotification.php │ └── WalletNotification.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── RouteServiceProvider.php │ └── TranslationServiceProvider.php ├── Traits │ └── DataTableTrait.php └── View │ └── Components │ ├── GuestLayout.php │ └── MasterLayout.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── constant.php ├── cors.php ├── database.php ├── datatables.php ├── dompdf.php ├── filesystems.php ├── geocoder.php ├── hashing.php ├── laravel-menu │ ├── settings.php │ └── views.php ├── logging.php ├── mail.php ├── media-library.php ├── mobile-config.php ├── permission.php ├── queue.php ├── sanctum.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ ├── 2021_05_29_065224_create_categories_table.php │ ├── 2021_05_29_070033_create_services_table.php │ ├── 2021_05_29_112557_create_bookings_table.php │ ├── 2021_05_30_055042_create_media_table.php │ ├── 2021_05_30_070712_create_countries_table.php │ ├── 2021_05_30_070726_create_states_table.php │ ├── 2021_05_30_070735_create_cities_table.php │ ├── 2021_05_30_095337_create_booking_handyman_mappings_table.php │ ├── 2021_06_01_050736_create_booking_ratings_table.php │ ├── 2021_06_03_052433_create_permission_tables.php │ ├── 2021_06_10_102714_create_provider_types_table.php │ ├── 2021_06_24_125715_create_booking_coupon_mappings_table.php │ ├── 2021_07_06_055059_create_booking_statuses_table.php │ ├── 2021_07_06_093626_create_booking_activities_table.php │ ├── 2021_07_09_074735_create_app_settings_table.php │ ├── 2021_07_09_074743_create_settings_table.php │ ├── 2021_07_19_100454_create_payments_table.php │ ├── 2021_07_20_092824_create_notifications_table.php │ ├── 2021_07_28_000004_create_coupons_table.php │ ├── 2021_07_28_000013_create_sliders_table.php │ ├── 2021_07_28_000017_create_coupon_service_mappings_table.php │ ├── 2021_09_11_121648_create_user_favourite_services_table.php │ ├── 2021_09_18_073847_add_language_option_to_app_settings_table.php │ ├── 2021_10_01_044809_create_provider_address_mappings_table.php │ ├── 2021_10_01_044851_create_provider_service_address_mappings_table.php │ ├── 2021_10_05_101306_create_booking_address_mappings_table.php │ ├── 2021_10_06_052616_alter_bookings.php │ ├── 2021_10_06_074321_add_login_type_to_users_table.php │ ├── 2021_10_27_052244_create_documents_table.php │ ├── 2021_10_27_090904_create_provider_documents_table.php │ ├── 2021_10_27_115257_create_handyman_ratings_table.php │ ├── 2021_12_01_073610_alter_app_settings.php │ ├── 2021_12_25_102810_create_payment_gateways_table.php │ ├── 2022_01_10_093501_create_taxes_table.php │ ├── 2022_01_11_051545_alter_provider_types.php │ ├── 2022_01_12_100148_create_provider_taxes_table.php │ ├── 2022_01_12_100212_create_provider_payouts_table.php │ ├── 2022_01_20_091224_alter_booking_tax.php │ ├── 2022_02_12_064817_create_handyman_payouts_table.php │ ├── 2022_02_14_051023_create_handyman_types_table.php │ ├── 2022_02_14_054750_alter_users_table.php │ ├── 2022_03_03_091112_create_service_faqs_table.php │ ├── 2022_03_05_070357_alter_app_settings_time_zone.php │ ├── 2022_03_10_055017_create_plans_table.php │ ├── 2022_03_10_064650_create_provider_subscriptions_table.php │ ├── 2022_03_10_101132_create_subscription_transactions_table.php │ ├── 2022_03_10_101854_alter_users_provider_subscribe.php │ ├── 2022_03_16_101916_alter_app_settings_earningtype.php │ ├── 2022_03_30_040831_create_wallets_table.php │ ├── 2022_03_30_043359_create_wallet_histories_table.php │ ├── 2022_03_31_041639_create_sub_categories_table.php │ ├── 2022_03_31_101955_alter_services_subcategory_id.php │ ├── 2022_04_06_100943_create_service_proofs_table.php │ ├── 2022_04_08_071126_alter_plans_table.php │ ├── 2022_04_21_041519_create_static_data_table.php │ ├── 2022_04_22_052403_create_plan_limits_table.php │ ├── 2022_04_28_045146_alter_provider_subscriptions.php │ ├── 2022_06_04_063629_alter_users_social_image.php │ ├── 2022_06_08_064423_alter_users_is_available.php │ ├── 2022_06_29_041432_alter_app_settings_social.php │ ├── 2022_10_04_045142_create_app_downloads_table.php │ ├── 2022_10_08_092355_alter_provider_address_mappings.php │ ├── 2022_11_09_062910_create_booking_extra_charges_table.php │ ├── 2022_11_21_053018_create_post_request_statuses_table.php │ ├── 2022_11_21_054846_create_post_job_requests_table.php │ ├── 2022_11_21_055423_create_post_job_service_mappings_table.php │ ├── 2022_11_21_061922_create_post_job_bids_table.php │ ├── 2022_11_21_092221_alter_bookings_type.php │ ├── 2022_11_23_050939_create_banks_table.php │ ├── 2022_11_29_060816_alter_services_request_type.php │ ├── 2022_11_30_065035_create_provider_slot_mappings_table.php │ ├── 2022_11_30_075407_alter_bookings_slot.php │ ├── 2022_12_01_114140_alter_user_slot.php │ ├── 2022_12_07_060914_alter_app_downloads.php │ ├── 2023_01_04_042931_create_service_packages_table.php │ ├── 2023_01_04_043628_create_package_service_mappings_table.php │ ├── 2023_01_04_071523_alter_booking_package.php │ ├── 2023_01_12_084620_create_booking_package_mappings_table.php │ ├── 2023_03_06_072111_create_blogs_table.php │ ├── 2023_03_06_120952_create_user_favourite_providers_table.php │ ├── 2023_03_06_124554_alter_users_info.php │ ├── 2023_03_15_062814_alter_services_amount.php │ ├── 2023_03_17_052748_alter_bookings_advance_paid_amount.php │ ├── 2023_05_22_045050_create_payment_histories_table.php │ ├── 2023_08_11_122837_add_calculation_field_to_bookings_table.php │ ├── 2023_08_25_042305_create_user_player_ids_table.php │ ├── 2023_09_13_115448_alter_votes_to_provider_payouts.php │ ├── 2023_09_13_115650_alter_votes_to_banks.php │ └── 2023_10_04_045944_alter_post_job_requests_table.php └── seeders │ ├── AppSettingsTableSeeder.php │ ├── BookingStatusesTableSeeder.php │ ├── CategoriesTableSeeder.php │ ├── CitiesTableSeeder.php │ ├── CountriesTableSeeder.php │ ├── DatabaseSeeder.php │ ├── HandymanTypesTableSeeder.php │ ├── ModelHasPermissionsTableSeeder.php │ ├── ModelHasRolesTableSeeder.php │ ├── PermissionTableSeeder.php │ ├── PlansTableDataSeeder.php │ ├── PostRequestStatusesTableSeeder.php │ ├── ProviderTypesTableSeeder.php │ ├── RoleHasPermissionsTableSeeder.php │ ├── RoleTableSeeder.php │ ├── ServicesTableSeeder.php │ ├── SettingsTableSeeder.php │ ├── SlidersTableSeeder.php │ ├── StatesTableSeeder.php │ ├── StaticDataSeeder.php │ └── UserTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .DS_Store ├── .htaccess ├── about-us.json ├── appdownload.json ├── css │ ├── app.css │ ├── backend-bundle.min.css │ ├── backend-plugin.min.css │ ├── backend.css │ ├── backup │ │ └── frontend.min.css.txt │ ├── bootstrap │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-reboot.css │ │ └── bootstrap.css │ ├── custom.css │ ├── dragula.css │ ├── fronted-custom.css │ ├── frontend.min.css │ ├── frontend │ │ ├── custom.css │ │ ├── slick-theme.css │ │ └── slick.css │ ├── intro.css │ ├── provide.css │ └── themes │ │ └── select2.min.css ├── favicon.ico ├── frontend │ ├── bootstrap │ │ ├── _accordion.scss │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _containers.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _helpers.scss │ │ ├── _images.scss │ │ ├── _list-group.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _offcanvas.scss │ │ ├── _pagination.scss │ │ ├── _placeholders.scss │ │ ├── _popover.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── forms │ │ │ ├── _floating-labels.scss │ │ │ ├── _form-check.scss │ │ │ ├── _form-control.scss │ │ │ ├── _form-range.scss │ │ │ ├── _form-select.scss │ │ │ ├── _form-text.scss │ │ │ ├── _input-group.scss │ │ │ ├── _labels.scss │ │ │ └── _validation.scss │ │ ├── helpers │ │ │ ├── _clearfix.scss │ │ │ ├── _colored-links.scss │ │ │ ├── _position.scss │ │ │ ├── _ratio.scss │ │ │ ├── _stacks.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text-truncation.scss │ │ │ ├── _visually-hidden.scss │ │ │ └── _vr.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _backdrop.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _color-scheme.scss │ │ │ ├── _container.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _table-variants.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ ├── _utilities.scss │ │ │ └── _visually-hidden.scss │ │ ├── utilities │ │ │ └── _api.scss │ │ └── vendor │ │ │ └── _rfs.scss │ ├── custom-css.scss │ ├── custom.scss │ ├── custom │ │ ├── auth │ │ │ └── _authentication.scss │ │ ├── kanban │ │ │ └── _kanban.scss │ │ ├── pricing │ │ │ └── _pricing.scss │ │ └── ui-kit │ │ │ └── _ui-kit.scss │ ├── handyman-design-system │ │ ├── _variable.scss │ │ ├── components │ │ │ ├── _components.scss │ │ │ ├── _main-content.scss │ │ │ ├── accordion │ │ │ │ └── _custom-accordion.scss │ │ │ ├── alert │ │ │ │ └── _alert.scss │ │ │ ├── badge │ │ │ │ └── _badge.scss │ │ │ ├── button │ │ │ │ ├── _border-btn.scss │ │ │ │ ├── _bs-btn-close.scss │ │ │ │ ├── _bs-btn.scss │ │ │ │ ├── _fixed-btn.scss │ │ │ │ ├── _icon-btn.scss │ │ │ │ └── _soft-btn.scss │ │ │ ├── calender │ │ │ │ └── _calender.scss │ │ │ ├── card │ │ │ │ ├── _card-dack.scss │ │ │ │ ├── _card.scss │ │ │ │ └── _icon-box.scss │ │ │ ├── carousel │ │ │ │ └── _carousel.scss │ │ │ ├── chart │ │ │ │ └── _chart.scss │ │ │ ├── circular-gradient │ │ │ │ ├── _circular-gradient.scss │ │ │ │ ├── _gradient-bottom-left-2.scss │ │ │ │ ├── _gradient-bottom-left.scss │ │ │ │ ├── _gradient-bottom-right.scss │ │ │ │ ├── _gradient-bottom.scss │ │ │ │ ├── _gradient-top-right-2.scss │ │ │ │ ├── _gradient-top-right.scss │ │ │ │ └── _gradient-top.scss │ │ │ ├── dropdown │ │ │ │ └── _bs-dropdown.scss │ │ │ ├── error │ │ │ │ └── _maintenance.scss │ │ │ ├── floating │ │ │ │ └── _floating-btn.scss │ │ │ ├── footer │ │ │ │ └── _footer-mini.scss │ │ │ ├── forms │ │ │ │ ├── _bs-form-check.scss │ │ │ │ ├── _floating-input.scss │ │ │ │ ├── _form-check.scss │ │ │ │ ├── _form-control-alternative.scss │ │ │ │ └── _form-wizard.scss │ │ │ ├── grid │ │ │ │ └── _grid.scss │ │ │ ├── layouts │ │ │ │ ├── _pages.scss │ │ │ │ └── _theme.scss │ │ │ ├── loader │ │ │ │ ├── _loader.scss │ │ │ │ └── _simple-loder.scss │ │ │ ├── map │ │ │ │ └── _vactor-map.scss │ │ │ ├── menu-style │ │ │ │ ├── _default-horizontal.scss │ │ │ │ ├── _default-main-content.scss │ │ │ │ ├── _default-sidebar-responsive.scss │ │ │ │ ├── _default-sidebar.scss │ │ │ │ ├── _dual-compact.scss │ │ │ │ ├── _dual-horizontal.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _nav-color.scss │ │ │ │ ├── _nav-rounded.scss │ │ │ │ ├── _sidebar-boxed.scss │ │ │ │ ├── _sidebar-hover.scss │ │ │ │ └── _sidebar-mini.scss │ │ │ ├── modal │ │ │ │ └── _modal.scss │ │ │ ├── nav │ │ │ │ ├── _header.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _slider-tab.scss │ │ │ │ └── _tabs.scss │ │ │ ├── profile │ │ │ │ └── _profile.scss │ │ │ ├── progressbar │ │ │ │ └── _progressbar.scss │ │ │ ├── slider │ │ │ │ └── _nouislider.scss │ │ │ ├── swiper-icon │ │ │ │ └── _swiper.scss │ │ │ ├── table │ │ │ │ └── _bs-table.scss │ │ │ ├── timeline │ │ │ │ ├── _simple-timeline.scss │ │ │ │ ├── _timeline-mega.scss │ │ │ │ └── _timeline.scss │ │ │ ├── tooltip │ │ │ │ └── _tooltip.scss │ │ │ └── widgets │ │ │ │ ├── _card-list.scss │ │ │ │ ├── _circle-progress-number.scss │ │ │ │ ├── _credit-card.scss │ │ │ │ ├── _index.scss │ │ │ │ ├── _profile-widget.scss │ │ │ │ └── _progress-widget.scss │ │ ├── helper │ │ │ ├── _fonts.scss │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _reboot.scss │ │ │ ├── _utilities.scss │ │ │ ├── mixins │ │ │ │ ├── _avatar.scss │ │ │ │ ├── _background_varient.scss │ │ │ │ ├── _circle-progress-varient.scss │ │ │ │ ├── _custom-floating-input.scss │ │ │ │ ├── _hover-effect.scss │ │ │ │ ├── _hover-focus.scss │ │ │ │ ├── _noui-slider-varients.scss │ │ │ │ ├── _ribbon-varient.scss │ │ │ │ ├── _sidebar-nav-item-varient.scss │ │ │ │ ├── _sidebar-varients.scss │ │ │ │ └── _top-navbar.scss │ │ │ └── utilities │ │ │ │ ├── _animation.scss │ │ │ │ ├── _avatar.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _fancy-border.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _mode-img.scss │ │ │ │ ├── _size.scss │ │ │ │ └── _z-index.scss │ │ ├── layout-style │ │ │ ├── _boxed.scss │ │ │ ├── _dual-compact.scss │ │ │ └── _index.scss │ │ ├── plugins │ │ │ ├── _animate.scss │ │ │ ├── _apexchart.scss │ │ │ ├── _circle-progress.scss │ │ │ ├── _countdown.scss │ │ │ ├── _fslightbox.scss │ │ │ ├── _full-calendar.scss │ │ │ ├── _plugins.scss │ │ │ ├── _prism.scss │ │ │ └── _vanila-datepicker.scss │ │ └── variables │ │ │ ├── _alert.scss │ │ │ ├── _avatar.scss │ │ │ ├── _buttons.scss │ │ │ ├── _carousel.scss │ │ │ ├── _circle-progress.scss │ │ │ ├── _custom-floating.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _footer.scss │ │ │ ├── _index.scss │ │ │ ├── _navbar-vertical.scss │ │ │ ├── _noui-slider.scss │ │ │ ├── _reboot.scss │ │ │ ├── _table.scss │ │ │ └── _vanila-datepicer.scss │ ├── handyman.scss │ └── swiper.min.css ├── images │ ├── .DS_Store │ ├── 01.png │ ├── 07.png │ ├── dark-loader.gif │ ├── default.png │ ├── error │ │ ├── 404-dark.png │ │ ├── 404.png │ │ ├── 500-dark.png │ │ ├── 500.png │ │ ├── Datum_404.png │ │ ├── Datum_500.png │ │ └── maintenance.png │ ├── favicon.ico │ ├── favicon.png │ ├── file.png │ ├── flags │ │ ├── ar.png │ │ ├── en.png │ │ ├── es.png │ │ ├── fr.png │ │ ├── it.png │ │ ├── nl.png │ │ ├── pl.png │ │ └── pt.png │ ├── frontend │ │ ├── about-1.png │ │ ├── about-2.png │ │ ├── about-bg.png │ │ ├── apple-white.png │ │ ├── apple.png │ │ ├── breadcrumb-bg.png │ │ ├── certi.png │ │ ├── data.png │ │ ├── data_not_found1.png │ │ ├── googleplay.png │ │ ├── gpay-white.png │ │ ├── mb-serv-1.png │ │ ├── mb-serv-full.png │ │ └── not_found.gif │ ├── icon │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── expand-window.json │ │ ├── open-letter.json │ │ └── pdf.png │ ├── language.png │ ├── loader.gif │ ├── logo.png │ ├── logo.svg │ ├── small │ │ ├── 04.svg │ │ ├── 05.svg │ │ ├── 07.png │ │ ├── 08.png │ │ ├── 09.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── data.json │ │ ├── data1.json │ │ ├── data2.json │ │ ├── flag-01.png │ │ ├── flag-02.png │ │ ├── flag-03.png │ │ ├── flag-04.png │ │ ├── flag-05.png │ │ ├── flag-06.png │ │ ├── img-1.jpg │ │ ├── jpg.svg │ │ ├── match-code.json │ │ ├── xml.svg │ │ └── zip.svg │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ ├── sort_desc_disabled.png │ └── user │ │ └── user.png ├── index.php ├── js │ ├── animated.js │ ├── apexcharts.js │ ├── apexcharts.min.js │ ├── app.js │ ├── backend-bundle.min.js │ ├── backend-bundle.min.js.LICENSE.txt │ ├── bstreeview.js │ ├── chart-custom.js │ ├── charts.js │ ├── charts │ │ ├── 01.js │ │ ├── 02.js │ │ └── progressbar.js │ ├── core.js │ ├── countdown.js │ ├── country2.js │ ├── croppy.js │ ├── customizer.js │ ├── dragula.min.js │ ├── flex-tree.min.js │ ├── frontend.min.js │ ├── frontend.min.js.LICENSE.txt │ ├── highcharts-3d.js │ ├── highcharts-more.js │ ├── highcharts.js │ ├── imagesloaded.pkgd.min.js │ ├── intro.js │ ├── jquery.appear.js │ ├── jquery.barrating.min.js │ ├── kelly.js │ ├── mapbox-gl.js │ ├── mapbox.js │ ├── maps.js │ ├── masonry.pkgd.min.js │ ├── material.js │ ├── morris.js │ ├── morris.min.js │ ├── popper.min.js │ ├── provide.js │ ├── quill.js │ ├── raphael-min.js │ ├── rating.min.js │ ├── slider.js │ ├── sweetalert.js │ ├── table-treeview.js │ ├── tilt.jquery.min.js │ ├── tree.js │ ├── usaLow.js │ ├── vector-map-custom.js │ └── worldLow.js ├── mix-manifest.json ├── phpinfo.php ├── robots.txt ├── scss │ ├── _custom_variable.scss │ ├── _variable.scss │ ├── backend.scss │ ├── backend │ │ ├── layouts │ │ │ ├── _dark.scss │ │ │ ├── _dashboard-1.scss │ │ │ ├── _dashboard-2.scss │ │ │ ├── _dashboard-3.scss │ │ │ └── _dashboards.scss │ │ └── pages │ │ │ ├── _authentication.scss │ │ │ ├── _avatars.scss │ │ │ ├── _chart.scss │ │ │ ├── _contact.scss │ │ │ ├── _error.scss │ │ │ ├── _faq.scss │ │ │ ├── _icon.scss │ │ │ ├── _invoice.scss │ │ │ ├── _loding.scss │ │ │ ├── _map.scss │ │ │ ├── _pages.scss │ │ │ ├── _pricing.scss │ │ │ ├── _profile.scss │ │ │ ├── _subscribers.scss │ │ │ ├── _table-treeview.scss │ │ │ ├── _timeline.scss │ │ │ ├── apps │ │ │ ├── _chat.scss │ │ │ ├── _email.scss │ │ │ └── _todo.scss │ │ │ └── page-content │ │ │ ├── _common-css.scss │ │ │ ├── _form-data.scss │ │ │ └── _page-content.scss │ ├── bootstrap │ │ ├── _alert.scss │ │ ├── _badge.scss │ │ ├── _breadcrumb.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _carousel.scss │ │ ├── _close.scss │ │ ├── _code.scss │ │ ├── _custom-forms.scss │ │ ├── _dropdown.scss │ │ ├── _forms.scss │ │ ├── _functions.scss │ │ ├── _grid.scss │ │ ├── _images.scss │ │ ├── _input-group.scss │ │ ├── _jumbotron.scss │ │ ├── _list-group.scss │ │ ├── _media.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _popover.scss │ │ ├── _print.scss │ │ ├── _progress.scss │ │ ├── _reboot.scss │ │ ├── _root.scss │ │ ├── _spinners.scss │ │ ├── _tables.scss │ │ ├── _toasts.scss │ │ ├── _tooltip.scss │ │ ├── _transitions.scss │ │ ├── _type.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.scss │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.scss │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.scss │ │ ├── mixins │ │ │ ├── _alert.scss │ │ │ ├── _background-variant.scss │ │ │ ├── _badge.scss │ │ │ ├── _border-radius.scss │ │ │ ├── _box-shadow.scss │ │ │ ├── _breakpoints.scss │ │ │ ├── _buttons.scss │ │ │ ├── _caret.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _deprecate.scss │ │ │ ├── _float.scss │ │ │ ├── _forms.scss │ │ │ ├── _gradients.scss │ │ │ ├── _grid-framework.scss │ │ │ ├── _grid.scss │ │ │ ├── _hover.scss │ │ │ ├── _image.scss │ │ │ ├── _list-group.scss │ │ │ ├── _lists.scss │ │ │ ├── _nav-divider.scss │ │ │ ├── _pagination.scss │ │ │ ├── _reset-text.scss │ │ │ ├── _resize.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _size.scss │ │ │ ├── _table-row.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _text-hide.scss │ │ │ ├── _text-truncate.scss │ │ │ ├── _transition.scss │ │ │ └── _visibility.scss │ │ ├── utilities │ │ │ ├── _align.scss │ │ │ ├── _background.scss │ │ │ ├── _borders.scss │ │ │ ├── _clearfix.scss │ │ │ ├── _display.scss │ │ │ ├── _embed.scss │ │ │ ├── _flex.scss │ │ │ ├── _float.scss │ │ │ ├── _interactions.scss │ │ │ ├── _overflow.scss │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _stretched-link.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ │ └── vendor │ │ │ └── _rfs.scss │ ├── components │ │ ├── _alert.scss │ │ ├── _auth-page.scss │ │ ├── _badge.scss │ │ ├── _box-shadow.scss │ │ ├── _button-group.scss │ │ ├── _buttons.scss │ │ ├── _calender.scss │ │ ├── _card.scss │ │ ├── _chart-tooltip.scss │ │ ├── _charts.scss │ │ ├── _checkbox.scss │ │ ├── _components.scss │ │ ├── _countdown.scss │ │ ├── _custom-tab.scss │ │ ├── _custom.scss │ │ ├── _dropdown.scss │ │ ├── _footer.scss │ │ ├── _grid.scss │ │ ├── _icon-box.scss │ │ ├── _input-label.scss │ │ ├── _list-style-1.scss │ │ ├── _list-style-2.scss │ │ ├── _list-style-3.scss │ │ ├── _media.scss │ │ ├── _menu-horizontal.scss │ │ ├── _navbar.scss │ │ ├── _pagination.scss │ │ ├── _progressbar.scss │ │ ├── _ratting.scss │ │ ├── _right-chat-panel.scss │ │ ├── _right-sidebar.scss │ │ ├── _ripple.scss │ │ ├── _svg-transition.scss │ │ ├── _switch.scss │ │ ├── _tab-pane.scss │ │ ├── _table-list-style.scss │ │ ├── _table.scss │ │ ├── _tabs.scss │ │ ├── _top-navbar.scss │ │ ├── _treeview.scss │ │ ├── _yourDoc.scss │ │ └── sidebar │ │ │ ├── _sidebar-dark.scss │ │ │ ├── _sidebar-default.scss │ │ │ └── _sidebar-light.scss │ ├── helper │ │ ├── _custom-animation.scss │ │ ├── _fonts.scss │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _root.scss │ │ ├── _utilities.scss │ │ ├── animation │ │ │ ├── _base.scss │ │ │ └── _fade.scss │ │ ├── mixins │ │ │ ├── _animation-mixin.scss │ │ │ ├── _avatar.scss │ │ │ ├── _background-varient.scss │ │ │ ├── _boxshadow-mixin.scss │ │ │ ├── _chart-varient.scss │ │ │ ├── _circle-progress-varient.scss │ │ │ ├── _gradient-mixin.scss │ │ │ ├── _opacity-mixin.scss │ │ │ ├── _radius-mixins.scss │ │ │ ├── _text-emphasis.scss │ │ │ ├── _transform-mixin.scss │ │ │ └── _transition-mixin.scss │ │ └── utilities │ │ │ ├── _avatar.scss │ │ │ ├── _background.scss │ │ │ ├── _border-color.scss │ │ │ ├── _font.scss │ │ │ ├── _image.scss │ │ │ ├── _opecity.scss │ │ │ ├── _overflow.scss │ │ │ └── _width.scss │ ├── intro.css │ ├── intro.scss │ ├── intro_componants │ │ ├── _footer.scss │ │ ├── _navbar.scss │ │ ├── _sections.scss │ │ └── _slider.scss │ └── plugins │ │ ├── _animate.scss │ │ ├── _chart.scss │ │ ├── _choices.scss │ │ ├── _flatpicker.scss │ │ ├── _plugins.scss │ │ ├── _select2.scss │ │ ├── _sweet-alert.scss │ │ ├── _vanila-datepicker.scss │ │ └── _wow-animate.scss ├── uploads │ └── 6 │ │ └── icons8-mechanic-96.png ├── vendor │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ ├── all.min.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.min.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.min.css │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ ├── all.min.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.min.js │ │ │ ├── solid.min.js │ │ │ └── v4-shims.min.js │ │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dailymotion.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── deezer.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge-legacy.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-pay.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram-square.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mixer.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── rust.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopify.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── tiktok.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── unsplash.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bacteria.svg │ │ │ │ ├── bacterium.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box-tissue.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── disease.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── faucet.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-medical.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding-water.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-sparkles.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands-wash.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake-alt-slash.svg │ │ │ │ ├── handshake-slash.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── head-side-cough-slash.svg │ │ │ │ ├── head-side-cough.svg │ │ │ │ ├── head-side-mask.svg │ │ │ │ ├── head-side-virus.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital-user.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── house-user.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-house.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── lungs-virus.svg │ │ │ │ ├── lungs.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-arrows.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane-slash.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── pump-medical.svg │ │ │ │ ├── pump-soap.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── shield-virus.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sink.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── soap.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-20.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── store-alt-slash.svg │ │ │ │ ├── store-alt.svg │ │ │ │ ├── store-slash.svg │ │ │ │ ├── store.svg │ │ │ │ ├── stream.svg │ │ │ │ ├── street-view.svg │ │ │ │ ├── strikethrough.svg │ │ │ │ ├── stroopwafel.svg │ │ │ │ ├── subscript.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── suitcase-rolling.svg │ │ │ │ ├── suitcase.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── superscript.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── swatchbook.svg │ │ │ │ ├── swimmer.svg │ │ │ │ ├── swimming-pool.svg │ │ │ │ ├── synagogue.svg │ │ │ │ ├── sync-alt.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── syringe.svg │ │ │ │ ├── table-tennis.svg │ │ │ │ ├── table.svg │ │ │ │ ├── tablet-alt.svg │ │ │ │ ├── tablet.svg │ │ │ │ ├── tablets.svg │ │ │ │ ├── tachometer-alt.svg │ │ │ │ ├── tag.svg │ │ │ │ ├── tags.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper-slash.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users-slash.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── virus-slash.svg │ │ │ │ ├── virus.svg │ │ │ │ ├── viruses.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── @icon │ │ └── dripicons │ │ │ ├── dripicons.css │ │ │ ├── dripicons.eot │ │ │ ├── dripicons.svg │ │ │ ├── dripicons.ttf │ │ │ ├── dripicons.woff │ │ │ ├── icons │ │ │ ├── alarm.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── anchor.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-thin-down.svg │ │ │ ├── arrow-thin-left.svg │ │ │ ├── arrow-thin-right.svg │ │ │ ├── arrow-thin-up.svg │ │ │ ├── arrow-up.svg │ │ │ ├── article.svg │ │ │ ├── backspace.svg │ │ │ ├── basket.svg │ │ │ ├── basketball.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-low.svg │ │ │ ├── battery-medium.svg │ │ │ ├── bell.svg │ │ │ ├── blog.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bold.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks.svg │ │ │ ├── box.svg │ │ │ ├── briefcase.svg │ │ │ ├── brightness-low.svg │ │ │ ├── brightness-max.svg │ │ │ ├── brightness-medium.svg │ │ │ ├── broadcast.svg │ │ │ ├── browser-upload.svg │ │ │ ├── browser.svg │ │ │ ├── brush.svg │ │ │ ├── calendar.svg │ │ │ ├── camcorder.svg │ │ │ ├── camera.svg │ │ │ ├── card.svg │ │ │ ├── cart.svg │ │ │ ├── checklist.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clockwise.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── code.svg │ │ │ ├── contract-2.svg │ │ │ ├── contract.svg │ │ │ ├── conversation.svg │ │ │ ├── copy.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshair.svg │ │ │ ├── cutlery.svg │ │ │ ├── device-desktop.svg │ │ │ ├── device-mobile.svg │ │ │ ├── device-tablet.svg │ │ │ ├── direction.svg │ │ │ ├── disc.svg │ │ │ ├── document-delete.svg │ │ │ ├── document-edit.svg │ │ │ ├── document-new.svg │ │ │ ├── document-remove.svg │ │ │ ├── document.svg │ │ │ ├── dot.svg │ │ │ ├── dots-2.svg │ │ │ ├── dots-3.svg │ │ │ ├── download.svg │ │ │ ├── duplicate.svg │ │ │ ├── enter.svg │ │ │ ├── exit.svg │ │ │ ├── expand-2.svg │ │ │ ├── expand.svg │ │ │ ├── experiment.svg │ │ │ ├── export.svg │ │ │ ├── feed.svg │ │ │ ├── flag.svg │ │ │ ├── flashlight.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── forward.svg │ │ │ ├── gaming.svg │ │ │ ├── gear.svg │ │ │ ├── graduation.svg │ │ │ ├── graph-bar.svg │ │ │ ├── graph-line.svg │ │ │ ├── graph-pie.svg │ │ │ ├── headset.svg │ │ │ ├── heart.svg │ │ │ ├── help.svg │ │ │ ├── home.svg │ │ │ ├── hourglass.svg │ │ │ ├── inbox.svg │ │ │ ├── information.svg │ │ │ ├── italic.svg │ │ │ ├── jewel.svg │ │ │ ├── lifting.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link-broken.svg │ │ │ ├── link.svg │ │ │ ├── list.svg │ │ │ ├── loading.svg │ │ │ ├── location.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── media-loop.svg │ │ │ ├── media-next.svg │ │ │ ├── media-pause.svg │ │ │ ├── media-play.svg │ │ │ ├── media-previous.svg │ │ │ ├── media-record.svg │ │ │ ├── media-shuffle.svg │ │ │ ├── media-stop.svg │ │ │ ├── medical.svg │ │ │ ├── menu.svg │ │ │ ├── message.svg │ │ │ ├── meter.svg │ │ │ ├── microphone.svg │ │ │ ├── minus.svg │ │ │ ├── monitor.svg │ │ │ ├── move.svg │ │ │ ├── music.svg │ │ │ ├── network-1.svg │ │ │ ├── network-2.svg │ │ │ ├── network-3.svg │ │ │ ├── network-4.svg │ │ │ ├── network-5.svg │ │ │ ├── pamphlet.svg │ │ │ ├── paperclip.svg │ │ │ ├── pencil.svg │ │ │ ├── phone.svg │ │ │ ├── photo-group.svg │ │ │ ├── photo.svg │ │ │ ├── pill.svg │ │ │ ├── pin.svg │ │ │ ├── plus.svg │ │ │ ├── power.svg │ │ │ ├── preview.svg │ │ │ ├── print.svg │ │ │ ├── pulse.svg │ │ │ ├── question.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── return.svg │ │ │ ├── retweet.svg │ │ │ ├── rocket.svg │ │ │ ├── scale.svg │ │ │ ├── search.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── skip.svg │ │ │ ├── stack.svg │ │ │ ├── star.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store.svg │ │ │ ├── suitcase.svg │ │ │ ├── swap.svg │ │ │ ├── tag-delete.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── ticket.svg │ │ │ ├── time-reverse.svg │ │ │ ├── to-do.svg │ │ │ ├── toggles.svg │ │ │ ├── trash.svg │ │ │ ├── trophy.svg │ │ │ ├── upload.svg │ │ │ ├── user-group.svg │ │ │ ├── user-id.svg │ │ │ ├── user.svg │ │ │ ├── vibrate.svg │ │ │ ├── view-apps.svg │ │ │ ├── view-list-large.svg │ │ │ ├── view-list.svg │ │ │ ├── view-thumb.svg │ │ │ ├── volume-full.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-off.svg │ │ │ ├── wallet.svg │ │ │ ├── warning.svg │ │ │ ├── web.svg │ │ │ ├── weight.svg │ │ │ ├── wifi.svg │ │ │ ├── wrong.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ │ └── manifest.json │ ├── confirmJs │ │ ├── confirm.min.js │ │ └── jquery-confirm.css │ ├── datatables │ │ ├── buttons.server-side.js │ │ ├── css │ │ │ ├── buttons.bootstrap4.min.css │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.checkboxes.css │ │ │ └── select.bootstrap4.min.css │ │ └── js │ │ │ ├── buttons.bootstrap4.min.js │ │ │ ├── buttons.jqueryui.min.js │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── dataTables.buttons.min.js │ │ │ ├── dataTables.checkboxes.min.js │ │ │ ├── dataTables.select.min.js │ │ │ └── jquery.dataTables.min.js │ ├── datepicker │ │ ├── bootstrap-datepicker.css │ │ └── bootstrap-datepicker.js │ ├── emoji-picker-element │ │ ├── LICENSE │ │ ├── README.md │ │ ├── database.d.ts │ │ ├── database.js │ │ ├── database.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── picker.d.ts │ │ ├── picker.js │ │ ├── picker.js.map │ │ ├── shared.d.ts │ │ ├── svelte.js │ │ ├── svelte.js.map │ │ ├── trimEmojiData.cjs │ │ ├── trimEmojiData.cjs.map │ │ ├── trimEmojiData.d.ts │ │ ├── trimEmojiData.js │ │ └── trimEmojiData.js.map │ ├── fullcalendar │ │ ├── bootstrap │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── core │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── locales-all.js │ │ │ ├── locales-all.min.js │ │ │ ├── locales │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── ko.js │ │ │ │ ├── lb.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── daygrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── google-calendar │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── interaction │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── list │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── luxon │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment-timezone │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── moment │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ ├── rrule │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.js │ │ │ └── package.json │ │ └── timegrid │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── main.css │ │ │ ├── main.d.ts │ │ │ ├── main.esm.js │ │ │ ├── main.js │ │ │ ├── main.min.css │ │ │ ├── main.min.js │ │ │ └── package.json │ ├── ionicons │ │ └── dist │ │ │ ├── cheatsheet.html │ │ │ ├── cjs │ │ │ ├── css-shim-564371aa.js │ │ │ ├── dom-6b1463fe.js │ │ │ ├── index-d64a26b7.js │ │ │ ├── index.cjs.js │ │ │ ├── ion-icon.cjs.entry.js │ │ │ ├── ionicons.cjs.js │ │ │ ├── loader.cjs.js │ │ │ ├── patch-60245faa.js │ │ │ ├── shadow-css-30b84385.js │ │ │ └── utils-bb18553b.js │ │ │ ├── collection │ │ │ ├── collection-manifest.json │ │ │ ├── components │ │ │ │ └── icon │ │ │ │ │ ├── icon.css │ │ │ │ │ ├── icon.js │ │ │ │ │ ├── request.js │ │ │ │ │ ├── svg │ │ │ │ │ ├── add-circle-outline.svg │ │ │ │ │ ├── add-circle-sharp.svg │ │ │ │ │ ├── add-circle.svg │ │ │ │ │ ├── add-outline.svg │ │ │ │ │ ├── add-sharp.svg │ │ │ │ │ ├── add.svg │ │ │ │ │ ├── airplane-outline.svg │ │ │ │ │ ├── airplane-sharp.svg │ │ │ │ │ ├── airplane.svg │ │ │ │ │ ├── alarm-outline.svg │ │ │ │ │ ├── alarm-sharp.svg │ │ │ │ │ ├── alarm.svg │ │ │ │ │ ├── albums-outline.svg │ │ │ │ │ ├── albums-sharp.svg │ │ │ │ │ ├── albums.svg │ │ │ │ │ ├── alert-circle-outline.svg │ │ │ │ │ ├── alert-circle-sharp.svg │ │ │ │ │ ├── alert-circle.svg │ │ │ │ │ ├── alert-outline.svg │ │ │ │ │ ├── alert-sharp.svg │ │ │ │ │ ├── alert.svg │ │ │ │ │ ├── american-football-outline.svg │ │ │ │ │ ├── american-football-sharp.svg │ │ │ │ │ ├── american-football.svg │ │ │ │ │ ├── analytics-outline.svg │ │ │ │ │ ├── analytics-sharp.svg │ │ │ │ │ ├── analytics.svg │ │ │ │ │ ├── aperture-outline.svg │ │ │ │ │ ├── aperture-sharp.svg │ │ │ │ │ ├── aperture.svg │ │ │ │ │ ├── apps-outline.svg │ │ │ │ │ ├── apps-sharp.svg │ │ │ │ │ ├── apps.svg │ │ │ │ │ ├── archive-outline.svg │ │ │ │ │ ├── archive-sharp.svg │ │ │ │ │ ├── archive.svg │ │ │ │ │ ├── arrow-back-circle-outline.svg │ │ │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ │ │ ├── arrow-back-circle.svg │ │ │ │ │ ├── arrow-back-outline.svg │ │ │ │ │ ├── arrow-back-sharp.svg │ │ │ │ │ ├── arrow-back.svg │ │ │ │ │ ├── arrow-down-circle-outline.svg │ │ │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ │ ├── arrow-down-outline.svg │ │ │ │ │ ├── arrow-down-sharp.svg │ │ │ │ │ ├── arrow-down.svg │ │ │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ │ │ ├── arrow-forward-circle.svg │ │ │ │ │ ├── arrow-forward-outline.svg │ │ │ │ │ ├── arrow-forward-sharp.svg │ │ │ │ │ ├── arrow-forward.svg │ │ │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ │ │ ├── arrow-redo-circle.svg │ │ │ │ │ ├── arrow-redo-outline.svg │ │ │ │ │ ├── arrow-redo-sharp.svg │ │ │ │ │ ├── arrow-redo.svg │ │ │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ │ │ ├── arrow-undo-circle.svg │ │ │ │ │ ├── arrow-undo-outline.svg │ │ │ │ │ ├── arrow-undo-sharp.svg │ │ │ │ │ ├── arrow-undo.svg │ │ │ │ │ ├── arrow-up-circle-outline.svg │ │ │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ │ ├── arrow-up-outline.svg │ │ │ │ │ ├── arrow-up-sharp.svg │ │ │ │ │ ├── arrow-up.svg │ │ │ │ │ ├── at-circle-outline.svg │ │ │ │ │ ├── at-circle-sharp.svg │ │ │ │ │ ├── at-circle.svg │ │ │ │ │ ├── at-outline.svg │ │ │ │ │ ├── at-sharp.svg │ │ │ │ │ ├── at.svg │ │ │ │ │ ├── attach-outline.svg │ │ │ │ │ ├── attach-sharp.svg │ │ │ │ │ ├── attach.svg │ │ │ │ │ ├── backspace-outline.svg │ │ │ │ │ ├── backspace-sharp.svg │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── bandage-outline.svg │ │ │ │ │ ├── bandage-sharp.svg │ │ │ │ │ ├── bandage.svg │ │ │ │ │ ├── bar-chart-outline.svg │ │ │ │ │ ├── bar-chart-sharp.svg │ │ │ │ │ ├── bar-chart.svg │ │ │ │ │ ├── barbell-outline.svg │ │ │ │ │ ├── barbell-sharp.svg │ │ │ │ │ ├── barbell.svg │ │ │ │ │ ├── barcode-outline.svg │ │ │ │ │ ├── barcode-sharp.svg │ │ │ │ │ ├── barcode.svg │ │ │ │ │ ├── baseball-outline.svg │ │ │ │ │ ├── baseball-sharp.svg │ │ │ │ │ ├── baseball.svg │ │ │ │ │ ├── basket-outline.svg │ │ │ │ │ ├── basket-sharp.svg │ │ │ │ │ ├── basket.svg │ │ │ │ │ ├── basketball-outline.svg │ │ │ │ │ ├── basketball-sharp.svg │ │ │ │ │ ├── basketball.svg │ │ │ │ │ ├── battery-charging-outline.svg │ │ │ │ │ ├── battery-charging-sharp.svg │ │ │ │ │ ├── battery-charging.svg │ │ │ │ │ ├── battery-dead-outline.svg │ │ │ │ │ ├── battery-dead-sharp.svg │ │ │ │ │ ├── battery-dead.svg │ │ │ │ │ ├── battery-full-outline.svg │ │ │ │ │ ├── battery-full-sharp.svg │ │ │ │ │ ├── battery-full.svg │ │ │ │ │ ├── battery-half-outline.svg │ │ │ │ │ ├── battery-half-sharp.svg │ │ │ │ │ ├── battery-half.svg │ │ │ │ │ ├── beaker-outline.svg │ │ │ │ │ ├── beaker-sharp.svg │ │ │ │ │ ├── beaker.svg │ │ │ │ │ ├── bed-outline.svg │ │ │ │ │ ├── bed-sharp.svg │ │ │ │ │ ├── bed.svg │ │ │ │ │ ├── beer-outline.svg │ │ │ │ │ ├── beer-sharp.svg │ │ │ │ │ ├── beer.svg │ │ │ │ │ ├── bicycle-outline.svg │ │ │ │ │ ├── bicycle-sharp.svg │ │ │ │ │ ├── bicycle.svg │ │ │ │ │ ├── bluetooth-outline.svg │ │ │ │ │ ├── bluetooth-sharp.svg │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ ├── boat-outline.svg │ │ │ │ │ ├── boat-sharp.svg │ │ │ │ │ ├── boat.svg │ │ │ │ │ ├── body-outline.svg │ │ │ │ │ ├── body-sharp.svg │ │ │ │ │ ├── body.svg │ │ │ │ │ ├── bonfire-outline.svg │ │ │ │ │ ├── bonfire-sharp.svg │ │ │ │ │ ├── bonfire.svg │ │ │ │ │ ├── book-outline.svg │ │ │ │ │ ├── book-sharp.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark-outline.svg │ │ │ │ │ ├── bookmark-sharp.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bookmarks-outline.svg │ │ │ │ │ ├── bookmarks-sharp.svg │ │ │ │ │ ├── bookmarks.svg │ │ │ │ │ ├── briefcase-outline.svg │ │ │ │ │ ├── briefcase-sharp.svg │ │ │ │ │ ├── briefcase.svg │ │ │ │ │ ├── browsers-outline.svg │ │ │ │ │ ├── browsers-sharp.svg │ │ │ │ │ ├── browsers.svg │ │ │ │ │ ├── brush-outline.svg │ │ │ │ │ ├── brush-sharp.svg │ │ │ │ │ ├── brush.svg │ │ │ │ │ ├── bug-outline.svg │ │ │ │ │ ├── bug-sharp.svg │ │ │ │ │ ├── bug.svg │ │ │ │ │ ├── build-outline.svg │ │ │ │ │ ├── build-sharp.svg │ │ │ │ │ ├── build.svg │ │ │ │ │ ├── bulb-outline.svg │ │ │ │ │ ├── bulb-sharp.svg │ │ │ │ │ ├── bulb.svg │ │ │ │ │ ├── bus-outline.svg │ │ │ │ │ ├── bus-sharp.svg │ │ │ │ │ ├── bus.svg │ │ │ │ │ ├── business-outline.svg │ │ │ │ │ ├── business-sharp.svg │ │ │ │ │ ├── business.svg │ │ │ │ │ ├── cafe-outline.svg │ │ │ │ │ ├── cafe-sharp.svg │ │ │ │ │ ├── cafe.svg │ │ │ │ │ ├── calculator-outline.svg │ │ │ │ │ ├── calculator-sharp.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-outline.svg │ │ │ │ │ ├── calendar-sharp.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── call-outline.svg │ │ │ │ │ ├── call-sharp.svg │ │ │ │ │ ├── call.svg │ │ │ │ │ ├── camera-outline.svg │ │ │ │ │ ├── camera-reverse-outline.svg │ │ │ │ │ ├── camera-reverse-sharp.svg │ │ │ │ │ ├── camera-reverse.svg │ │ │ │ │ ├── camera-sharp.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── car-outline.svg │ │ │ │ │ ├── car-sharp.svg │ │ │ │ │ ├── car-sport-outline.svg │ │ │ │ │ ├── car-sport-sharp.svg │ │ │ │ │ ├── car-sport.svg │ │ │ │ │ ├── car.svg │ │ │ │ │ ├── card-outline.svg │ │ │ │ │ ├── card-sharp.svg │ │ │ │ │ ├── card.svg │ │ │ │ │ ├── caret-back-circle-outline.svg │ │ │ │ │ ├── caret-back-circle-sharp.svg │ │ │ │ │ ├── caret-back-circle.svg │ │ │ │ │ ├── caret-back-outline.svg │ │ │ │ │ ├── caret-back-sharp.svg │ │ │ │ │ ├── caret-back.svg │ │ │ │ │ ├── caret-down-circle-outline.svg │ │ │ │ │ ├── caret-down-circle-sharp.svg │ │ │ │ │ ├── caret-down-circle.svg │ │ │ │ │ ├── caret-down-outline.svg │ │ │ │ │ ├── caret-down-sharp.svg │ │ │ │ │ ├── caret-down.svg │ │ │ │ │ ├── caret-forward-circle-outline.svg │ │ │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ │ │ ├── caret-forward-circle.svg │ │ │ │ │ ├── caret-forward-outline.svg │ │ │ │ │ ├── caret-forward-sharp.svg │ │ │ │ │ ├── caret-forward.svg │ │ │ │ │ ├── caret-up-circle-outline.svg │ │ │ │ │ ├── caret-up-circle-sharp.svg │ │ │ │ │ ├── caret-up-circle.svg │ │ │ │ │ ├── caret-up-outline.svg │ │ │ │ │ ├── caret-up-sharp.svg │ │ │ │ │ ├── caret-up.svg │ │ │ │ │ ├── cart-outline.svg │ │ │ │ │ ├── cart-sharp.svg │ │ │ │ │ ├── cart.svg │ │ │ │ │ ├── cash-outline.svg │ │ │ │ │ ├── cash-sharp.svg │ │ │ │ │ ├── cash.svg │ │ │ │ │ ├── cellular-outline.svg │ │ │ │ │ ├── cellular-sharp.svg │ │ │ │ │ ├── cellular.svg │ │ │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ │ │ ├── chatbox-ellipses.svg │ │ │ │ │ ├── chatbox-outline.svg │ │ │ │ │ ├── chatbox-sharp.svg │ │ │ │ │ ├── chatbox.svg │ │ │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ │ │ ├── chatbubble-ellipses.svg │ │ │ │ │ ├── chatbubble-outline.svg │ │ │ │ │ ├── chatbubble-sharp.svg │ │ │ │ │ ├── chatbubble.svg │ │ │ │ │ ├── chatbubbles-outline.svg │ │ │ │ │ ├── chatbubbles-sharp.svg │ │ │ │ │ ├── chatbubbles.svg │ │ │ │ │ ├── checkbox-outline.svg │ │ │ │ │ ├── checkbox-sharp.svg │ │ │ │ │ ├── checkbox.svg │ │ │ │ │ ├── checkmark-circle-outline.svg │ │ │ │ │ ├── checkmark-circle-sharp.svg │ │ │ │ │ ├── checkmark-circle.svg │ │ │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ │ │ ├── checkmark-done-circle.svg │ │ │ │ │ ├── checkmark-done-outline.svg │ │ │ │ │ ├── checkmark-done-sharp.svg │ │ │ │ │ ├── checkmark-done.svg │ │ │ │ │ ├── checkmark-outline.svg │ │ │ │ │ ├── checkmark-sharp.svg │ │ │ │ │ ├── checkmark.svg │ │ │ │ │ ├── chevron-back-circle-outline.svg │ │ │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ │ │ ├── chevron-back-circle.svg │ │ │ │ │ ├── chevron-back-outline.svg │ │ │ │ │ ├── chevron-back-sharp.svg │ │ │ │ │ ├── chevron-back.svg │ │ │ │ │ ├── chevron-down-circle-outline.svg │ │ │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ │ │ ├── chevron-down-circle.svg │ │ │ │ │ ├── chevron-down-outline.svg │ │ │ │ │ ├── chevron-down-sharp.svg │ │ │ │ │ ├── chevron-down.svg │ │ │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ │ │ ├── chevron-forward-circle.svg │ │ │ │ │ ├── chevron-forward-outline.svg │ │ │ │ │ ├── chevron-forward-sharp.svg │ │ │ │ │ ├── chevron-forward.svg │ │ │ │ │ ├── chevron-up-circle-outline.svg │ │ │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ │ │ ├── chevron-up-circle.svg │ │ │ │ │ ├── chevron-up-outline.svg │ │ │ │ │ ├── chevron-up-sharp.svg │ │ │ │ │ ├── chevron-up.svg │ │ │ │ │ ├── clipboard-outline.svg │ │ │ │ │ ├── clipboard-sharp.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── close-circle-outline.svg │ │ │ │ │ ├── close-circle-sharp.svg │ │ │ │ │ ├── close-circle.svg │ │ │ │ │ ├── close-outline.svg │ │ │ │ │ ├── close-sharp.svg │ │ │ │ │ ├── close.svg │ │ │ │ │ ├── cloud-circle-outline.svg │ │ │ │ │ ├── cloud-circle-sharp.svg │ │ │ │ │ ├── cloud-circle.svg │ │ │ │ │ ├── cloud-done-outline.svg │ │ │ │ │ ├── cloud-done-sharp.svg │ │ │ │ │ ├── cloud-done.svg │ │ │ │ │ ├── cloud-download-outline.svg │ │ │ │ │ ├── cloud-download-sharp.svg │ │ │ │ │ ├── cloud-download.svg │ │ │ │ │ ├── cloud-offline-outline.svg │ │ │ │ │ ├── cloud-offline-sharp.svg │ │ │ │ │ ├── cloud-offline.svg │ │ │ │ │ ├── cloud-outline.svg │ │ │ │ │ ├── cloud-sharp.svg │ │ │ │ │ ├── cloud-upload-outline.svg │ │ │ │ │ ├── cloud-upload-sharp.svg │ │ │ │ │ ├── cloud-upload.svg │ │ │ │ │ ├── cloud.svg │ │ │ │ │ ├── cloudy-night-outline.svg │ │ │ │ │ ├── cloudy-night-sharp.svg │ │ │ │ │ ├── cloudy-night.svg │ │ │ │ │ ├── cloudy-outline.svg │ │ │ │ │ ├── cloudy-sharp.svg │ │ │ │ │ ├── cloudy.svg │ │ │ │ │ ├── code-download-outline.svg │ │ │ │ │ ├── code-download-sharp.svg │ │ │ │ │ ├── code-download.svg │ │ │ │ │ ├── code-outline.svg │ │ │ │ │ ├── code-sharp.svg │ │ │ │ │ ├── code-slash-outline.svg │ │ │ │ │ ├── code-slash-sharp.svg │ │ │ │ │ ├── code-slash.svg │ │ │ │ │ ├── code-working-outline.svg │ │ │ │ │ ├── code-working-sharp.svg │ │ │ │ │ ├── code-working.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── cog-outline.svg │ │ │ │ │ ├── cog-sharp.svg │ │ │ │ │ ├── cog.svg │ │ │ │ │ ├── color-fill-outline.svg │ │ │ │ │ ├── color-fill-sharp.svg │ │ │ │ │ ├── color-fill.svg │ │ │ │ │ ├── color-filter-outline.svg │ │ │ │ │ ├── color-filter-sharp.svg │ │ │ │ │ ├── color-filter.svg │ │ │ │ │ ├── color-palette-outline.svg │ │ │ │ │ ├── color-palette-sharp.svg │ │ │ │ │ ├── color-palette.svg │ │ │ │ │ ├── color-wand-outline.svg │ │ │ │ │ ├── color-wand-sharp.svg │ │ │ │ │ ├── color-wand.svg │ │ │ │ │ ├── compass-outline.svg │ │ │ │ │ ├── compass-sharp.svg │ │ │ │ │ ├── compass.svg │ │ │ │ │ ├── construct-outline.svg │ │ │ │ │ ├── construct-sharp.svg │ │ │ │ │ ├── construct.svg │ │ │ │ │ ├── contract-outline.svg │ │ │ │ │ ├── contract-sharp.svg │ │ │ │ │ ├── contract.svg │ │ │ │ │ ├── contrast-outline.svg │ │ │ │ │ ├── contrast-sharp.svg │ │ │ │ │ ├── contrast.svg │ │ │ │ │ ├── copy-outline.svg │ │ │ │ │ ├── copy-sharp.svg │ │ │ │ │ ├── copy.svg │ │ │ │ │ ├── create-outline.svg │ │ │ │ │ ├── create-sharp.svg │ │ │ │ │ ├── create.svg │ │ │ │ │ ├── crop-outline.svg │ │ │ │ │ ├── crop-sharp.svg │ │ │ │ │ ├── crop.svg │ │ │ │ │ ├── cube-outline.svg │ │ │ │ │ ├── cube-sharp.svg │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cut-outline.svg │ │ │ │ │ ├── cut-sharp.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── desktop-outline.svg │ │ │ │ │ ├── desktop-sharp.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── disc-outline.svg │ │ │ │ │ ├── disc-sharp.svg │ │ │ │ │ ├── disc.svg │ │ │ │ │ ├── document-attach-outline.svg │ │ │ │ │ ├── document-attach-sharp.svg │ │ │ │ │ ├── document-attach.svg │ │ │ │ │ ├── document-outline.svg │ │ │ │ │ ├── document-sharp.svg │ │ │ │ │ ├── document-text-outline.svg │ │ │ │ │ ├── document-text-sharp.svg │ │ │ │ │ ├── document-text.svg │ │ │ │ │ ├── document.svg │ │ │ │ │ ├── documents-outline.svg │ │ │ │ │ ├── documents-sharp.svg │ │ │ │ │ ├── documents.svg │ │ │ │ │ ├── download-outline.svg │ │ │ │ │ ├── download-sharp.svg │ │ │ │ │ ├── download.svg │ │ │ │ │ ├── duplicate-outline.svg │ │ │ │ │ ├── duplicate-sharp.svg │ │ │ │ │ ├── duplicate.svg │ │ │ │ │ ├── ear-outline.svg │ │ │ │ │ ├── ear-sharp.svg │ │ │ │ │ ├── ear.svg │ │ │ │ │ ├── earth-outline.svg │ │ │ │ │ ├── earth-sharp.svg │ │ │ │ │ ├── earth.svg │ │ │ │ │ ├── easel-outline.svg │ │ │ │ │ ├── easel-sharp.svg │ │ │ │ │ ├── easel.svg │ │ │ │ │ ├── egg-outline.svg │ │ │ │ │ ├── egg-sharp.svg │ │ │ │ │ ├── egg.svg │ │ │ │ │ ├── ellipse-outline.svg │ │ │ │ │ ├── ellipse-sharp.svg │ │ │ │ │ ├── ellipse.svg │ │ │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ │ ├── enter-outline.svg │ │ │ │ │ ├── enter-sharp.svg │ │ │ │ │ ├── enter.svg │ │ │ │ │ ├── exit-outline.svg │ │ │ │ │ ├── exit-sharp.svg │ │ │ │ │ ├── exit.svg │ │ │ │ │ ├── expand-outline.svg │ │ │ │ │ ├── expand-sharp.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── eye-off-outline.svg │ │ │ │ │ ├── eye-off-sharp.svg │ │ │ │ │ ├── eye-off.svg │ │ │ │ │ ├── eye-outline.svg │ │ │ │ │ ├── eye-sharp.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── eyedrop-outline.svg │ │ │ │ │ ├── eyedrop-sharp.svg │ │ │ │ │ ├── eyedrop.svg │ │ │ │ │ ├── fast-food-outline.svg │ │ │ │ │ ├── fast-food-sharp.svg │ │ │ │ │ ├── fast-food.svg │ │ │ │ │ ├── female-outline.svg │ │ │ │ │ ├── female-sharp.svg │ │ │ │ │ ├── female.svg │ │ │ │ │ ├── file-tray-full-outline.svg │ │ │ │ │ ├── file-tray-full-sharp.svg │ │ │ │ │ ├── file-tray-full.svg │ │ │ │ │ ├── file-tray-outline.svg │ │ │ │ │ ├── file-tray-sharp.svg │ │ │ │ │ ├── file-tray-stacked-outline.svg │ │ │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ │ │ ├── file-tray-stacked.svg │ │ │ │ │ ├── file-tray.svg │ │ │ │ │ ├── film-outline.svg │ │ │ │ │ ├── film-sharp.svg │ │ │ │ │ ├── film.svg │ │ │ │ │ ├── filter-outline.svg │ │ │ │ │ ├── filter-sharp.svg │ │ │ │ │ ├── filter.svg │ │ │ │ │ ├── finger-print-outline.svg │ │ │ │ │ ├── finger-print-sharp.svg │ │ │ │ │ ├── finger-print.svg │ │ │ │ │ ├── fitness-outline.svg │ │ │ │ │ ├── fitness-sharp.svg │ │ │ │ │ ├── fitness.svg │ │ │ │ │ ├── flag-outline.svg │ │ │ │ │ ├── flag-sharp.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flame-outline.svg │ │ │ │ │ ├── flame-sharp.svg │ │ │ │ │ ├── flame.svg │ │ │ │ │ ├── flash-off-outline.svg │ │ │ │ │ ├── flash-off-sharp.svg │ │ │ │ │ ├── flash-off.svg │ │ │ │ │ ├── flash-outline.svg │ │ │ │ │ ├── flash-sharp.svg │ │ │ │ │ ├── flash.svg │ │ │ │ │ ├── flashlight-outline.svg │ │ │ │ │ ├── flashlight-sharp.svg │ │ │ │ │ ├── flashlight.svg │ │ │ │ │ ├── flask-outline.svg │ │ │ │ │ ├── flask-sharp.svg │ │ │ │ │ ├── flask.svg │ │ │ │ │ ├── flower-outline.svg │ │ │ │ │ ├── flower-sharp.svg │ │ │ │ │ ├── flower.svg │ │ │ │ │ ├── folder-open-outline.svg │ │ │ │ │ ├── folder-open-sharp.svg │ │ │ │ │ ├── folder-open.svg │ │ │ │ │ ├── folder-outline.svg │ │ │ │ │ ├── folder-sharp.svg │ │ │ │ │ ├── folder.svg │ │ │ │ │ ├── football-outline.svg │ │ │ │ │ ├── football-sharp.svg │ │ │ │ │ ├── football.svg │ │ │ │ │ ├── funnel-outline.svg │ │ │ │ │ ├── funnel-sharp.svg │ │ │ │ │ ├── funnel.svg │ │ │ │ │ ├── game-controller-outline.svg │ │ │ │ │ ├── game-controller-sharp.svg │ │ │ │ │ ├── game-controller.svg │ │ │ │ │ ├── gift-outline.svg │ │ │ │ │ ├── gift-sharp.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── git-branch-outline.svg │ │ │ │ │ ├── git-branch-sharp.svg │ │ │ │ │ ├── git-branch.svg │ │ │ │ │ ├── git-commit-outline.svg │ │ │ │ │ ├── git-commit-sharp.svg │ │ │ │ │ ├── git-commit.svg │ │ │ │ │ ├── git-compare-outline.svg │ │ │ │ │ ├── git-compare-sharp.svg │ │ │ │ │ ├── git-compare.svg │ │ │ │ │ ├── git-merge-outline.svg │ │ │ │ │ ├── git-merge-sharp.svg │ │ │ │ │ ├── git-merge.svg │ │ │ │ │ ├── git-network-outline.svg │ │ │ │ │ ├── git-network-sharp.svg │ │ │ │ │ ├── git-network.svg │ │ │ │ │ ├── git-pull-request-outline.svg │ │ │ │ │ ├── git-pull-request-sharp.svg │ │ │ │ │ ├── git-pull-request.svg │ │ │ │ │ ├── glasses-outline.svg │ │ │ │ │ ├── glasses-sharp.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-outline.svg │ │ │ │ │ ├── globe-sharp.svg │ │ │ │ │ ├── globe.svg │ │ │ │ │ ├── golf-outline.svg │ │ │ │ │ ├── golf-sharp.svg │ │ │ │ │ ├── golf.svg │ │ │ │ │ ├── grid-outline.svg │ │ │ │ │ ├── grid-sharp.svg │ │ │ │ │ ├── grid.svg │ │ │ │ │ ├── hammer-outline.svg │ │ │ │ │ ├── hammer-sharp.svg │ │ │ │ │ ├── hammer.svg │ │ │ │ │ ├── hand-left-outline.svg │ │ │ │ │ ├── hand-left-sharp.svg │ │ │ │ │ ├── hand-left.svg │ │ │ │ │ ├── hand-right-outline.svg │ │ │ │ │ ├── hand-right-sharp.svg │ │ │ │ │ ├── hand-right.svg │ │ │ │ │ ├── happy-outline.svg │ │ │ │ │ ├── happy-sharp.svg │ │ │ │ │ ├── happy.svg │ │ │ │ │ ├── hardware-chip-outline.svg │ │ │ │ │ ├── hardware-chip-sharp.svg │ │ │ │ │ ├── hardware-chip.svg │ │ │ │ │ ├── headset-outline.svg │ │ │ │ │ ├── headset-sharp.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart-circle-outline.svg │ │ │ │ │ ├── heart-circle-sharp.svg │ │ │ │ │ ├── heart-circle.svg │ │ │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ │ │ ├── heart-dislike-circle.svg │ │ │ │ │ ├── heart-dislike-outline.svg │ │ │ │ │ ├── heart-dislike-sharp.svg │ │ │ │ │ ├── heart-dislike.svg │ │ │ │ │ ├── heart-half-outline.svg │ │ │ │ │ ├── heart-half-sharp.svg │ │ │ │ │ ├── heart-half.svg │ │ │ │ │ ├── heart-outline.svg │ │ │ │ │ ├── heart-sharp.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── help-buoy-outline.svg │ │ │ │ │ ├── help-buoy-sharp.svg │ │ │ │ │ ├── help-buoy.svg │ │ │ │ │ ├── help-circle-outline.svg │ │ │ │ │ ├── help-circle-sharp.svg │ │ │ │ │ ├── help-circle.svg │ │ │ │ │ ├── help-outline.svg │ │ │ │ │ ├── help-sharp.svg │ │ │ │ │ ├── help.svg │ │ │ │ │ ├── home-outline.svg │ │ │ │ │ ├── home-sharp.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hourglass-outline.svg │ │ │ │ │ ├── hourglass-sharp.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── ice-cream-outline.svg │ │ │ │ │ ├── ice-cream-sharp.svg │ │ │ │ │ ├── ice-cream.svg │ │ │ │ │ ├── image-outline.svg │ │ │ │ │ ├── image-sharp.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images-outline.svg │ │ │ │ │ ├── images-sharp.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── infinite-outline.svg │ │ │ │ │ ├── infinite-sharp.svg │ │ │ │ │ ├── infinite.svg │ │ │ │ │ ├── information-circle-outline.svg │ │ │ │ │ ├── information-circle-sharp.svg │ │ │ │ │ ├── information-circle.svg │ │ │ │ │ ├── information-outline.svg │ │ │ │ │ ├── information-sharp.svg │ │ │ │ │ ├── information.svg │ │ │ │ │ ├── journal-outline.svg │ │ │ │ │ ├── journal-sharp.svg │ │ │ │ │ ├── journal.svg │ │ │ │ │ ├── key-outline.svg │ │ │ │ │ ├── key-sharp.svg │ │ │ │ │ ├── key.svg │ │ │ │ │ ├── keypad-outline.svg │ │ │ │ │ ├── keypad-sharp.svg │ │ │ │ │ ├── keypad.svg │ │ │ │ │ ├── language-outline.svg │ │ │ │ │ ├── language-sharp.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-outline.svg │ │ │ │ │ ├── laptop-sharp.svg │ │ │ │ │ ├── laptop.svg │ │ │ │ │ ├── layers-outline.svg │ │ │ │ │ ├── layers-sharp.svg │ │ │ │ │ ├── layers.svg │ │ │ │ │ ├── leaf-outline.svg │ │ │ │ │ ├── leaf-sharp.svg │ │ │ │ │ ├── leaf.svg │ │ │ │ │ ├── library-outline.svg │ │ │ │ │ ├── library-sharp.svg │ │ │ │ │ ├── library.svg │ │ │ │ │ ├── link-outline.svg │ │ │ │ │ ├── link-sharp.svg │ │ │ │ │ ├── link.svg │ │ │ │ │ ├── list-circle-outline.svg │ │ │ │ │ ├── list-circle-sharp.svg │ │ │ │ │ ├── list-circle.svg │ │ │ │ │ ├── list-outline.svg │ │ │ │ │ ├── list-sharp.svg │ │ │ │ │ ├── list.svg │ │ │ │ │ ├── locate-outline.svg │ │ │ │ │ ├── locate-sharp.svg │ │ │ │ │ ├── locate.svg │ │ │ │ │ ├── location-outline.svg │ │ │ │ │ ├── location-sharp.svg │ │ │ │ │ ├── location.svg │ │ │ │ │ ├── lock-closed-outline.svg │ │ │ │ │ ├── lock-closed-sharp.svg │ │ │ │ │ ├── lock-closed.svg │ │ │ │ │ ├── lock-open-outline.svg │ │ │ │ │ ├── lock-open-sharp.svg │ │ │ │ │ ├── lock-open.svg │ │ │ │ │ ├── log-in-outline.svg │ │ │ │ │ ├── log-in-sharp.svg │ │ │ │ │ ├── log-in.svg │ │ │ │ │ ├── log-out-outline.svg │ │ │ │ │ ├── log-out-sharp.svg │ │ │ │ │ ├── log-out.svg │ │ │ │ │ ├── logo-amazon.svg │ │ │ │ │ ├── logo-amplify.svg │ │ │ │ │ ├── logo-android.svg │ │ │ │ │ ├── logo-angular.svg │ │ │ │ │ ├── logo-apple-appstore.svg │ │ │ │ │ ├── logo-apple.svg │ │ │ │ │ ├── logo-behance.svg │ │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ │ ├── logo-buffer.svg │ │ │ │ │ ├── logo-capacitor.svg │ │ │ │ │ ├── logo-chrome.svg │ │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ │ ├── logo-codepen.svg │ │ │ │ │ ├── logo-css3.svg │ │ │ │ │ ├── logo-designernews.svg │ │ │ │ │ ├── logo-docker.svg │ │ │ │ │ ├── logo-dribbble.svg │ │ │ │ │ ├── logo-dropbox.svg │ │ │ │ │ ├── logo-edge.svg │ │ │ │ │ ├── logo-electron.svg │ │ │ │ │ ├── logo-euro.svg │ │ │ │ │ ├── logo-facebook.svg │ │ │ │ │ ├── logo-firebase.svg │ │ │ │ │ ├── logo-firefox.svg │ │ │ │ │ ├── logo-flickr.svg │ │ │ │ │ ├── logo-foursquare.svg │ │ │ │ │ ├── logo-github.svg │ │ │ │ │ ├── logo-gitlab.svg │ │ │ │ │ ├── logo-google-playstore.svg │ │ │ │ │ ├── logo-google.svg │ │ │ │ │ ├── logo-hackernews.svg │ │ │ │ │ ├── logo-html5.svg │ │ │ │ │ ├── logo-instagram.svg │ │ │ │ │ ├── logo-ionic.svg │ │ │ │ │ ├── logo-ionitron.svg │ │ │ │ │ ├── logo-javascript.svg │ │ │ │ │ ├── logo-laravel.svg │ │ │ │ │ ├── logo-linkedin.svg │ │ │ │ │ ├── logo-markdown.svg │ │ │ │ │ ├── logo-medium.svg │ │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ │ ├── logo-nodejs.svg │ │ │ │ │ ├── logo-npm.svg │ │ │ │ │ ├── logo-octocat.svg │ │ │ │ │ ├── logo-paypal.svg │ │ │ │ │ ├── logo-pinterest.svg │ │ │ │ │ ├── logo-playstation.svg │ │ │ │ │ ├── logo-pwa.svg │ │ │ │ │ ├── logo-python.svg │ │ │ │ │ ├── logo-react.svg │ │ │ │ │ ├── logo-reddit.svg │ │ │ │ │ ├── logo-rss.svg │ │ │ │ │ ├── logo-sass.svg │ │ │ │ │ ├── logo-skype.svg │ │ │ │ │ ├── logo-slack.svg │ │ │ │ │ ├── logo-snapchat.svg │ │ │ │ │ ├── logo-soundcloud.svg │ │ │ │ │ ├── logo-stackoverflow.svg │ │ │ │ │ ├── logo-steam.svg │ │ │ │ │ ├── logo-stencil.svg │ │ │ │ │ ├── logo-tiktok.svg │ │ │ │ │ ├── logo-tumblr.svg │ │ │ │ │ ├── logo-tux.svg │ │ │ │ │ ├── logo-twitch.svg │ │ │ │ │ ├── logo-twitter.svg │ │ │ │ │ ├── logo-usd.svg │ │ │ │ │ ├── logo-venmo.svg │ │ │ │ │ ├── logo-vimeo.svg │ │ │ │ │ ├── logo-vk.svg │ │ │ │ │ ├── logo-vue.svg │ │ │ │ │ ├── logo-web-component.svg │ │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ │ ├── logo-windows.svg │ │ │ │ │ ├── logo-wordpress.svg │ │ │ │ │ ├── logo-xbox.svg │ │ │ │ │ ├── logo-xing.svg │ │ │ │ │ ├── logo-yahoo.svg │ │ │ │ │ ├── logo-yen.svg │ │ │ │ │ ├── logo-youtube.svg │ │ │ │ │ ├── magnet-outline.svg │ │ │ │ │ ├── magnet-sharp.svg │ │ │ │ │ ├── magnet.svg │ │ │ │ │ ├── mail-open-outline.svg │ │ │ │ │ ├── mail-open-sharp.svg │ │ │ │ │ ├── mail-open.svg │ │ │ │ │ ├── mail-outline.svg │ │ │ │ │ ├── mail-sharp.svg │ │ │ │ │ ├── mail-unread-outline.svg │ │ │ │ │ ├── mail-unread-sharp.svg │ │ │ │ │ ├── mail-unread.svg │ │ │ │ │ ├── mail.svg │ │ │ │ │ ├── male-female-outline.svg │ │ │ │ │ ├── male-female-sharp.svg │ │ │ │ │ ├── male-female.svg │ │ │ │ │ ├── male-outline.svg │ │ │ │ │ ├── male-sharp.svg │ │ │ │ │ ├── male.svg │ │ │ │ │ ├── man-outline.svg │ │ │ │ │ ├── man-sharp.svg │ │ │ │ │ ├── man.svg │ │ │ │ │ ├── map-outline.svg │ │ │ │ │ ├── map-sharp.svg │ │ │ │ │ ├── map.svg │ │ │ │ │ ├── medal-outline.svg │ │ │ │ │ ├── medal-sharp.svg │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medical-outline.svg │ │ │ │ │ ├── medical-sharp.svg │ │ │ │ │ ├── medical.svg │ │ │ │ │ ├── medkit-outline.svg │ │ │ │ │ ├── medkit-sharp.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── megaphone-outline.svg │ │ │ │ │ ├── megaphone-sharp.svg │ │ │ │ │ ├── megaphone.svg │ │ │ │ │ ├── menu-outline.svg │ │ │ │ │ ├── menu-sharp.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── mic-circle-outline.svg │ │ │ │ │ ├── mic-circle-sharp.svg │ │ │ │ │ ├── mic-circle.svg │ │ │ │ │ ├── mic-off-circle-outline.svg │ │ │ │ │ ├── mic-off-circle-sharp.svg │ │ │ │ │ ├── mic-off-circle.svg │ │ │ │ │ ├── mic-off-outline.svg │ │ │ │ │ ├── mic-off-sharp.svg │ │ │ │ │ ├── mic-off.svg │ │ │ │ │ ├── mic-outline.svg │ │ │ │ │ ├── mic-sharp.svg │ │ │ │ │ ├── mic.svg │ │ │ │ │ ├── moon-outline.svg │ │ │ │ │ ├── moon-sharp.svg │ │ │ │ │ ├── moon.svg │ │ │ │ │ ├── move-outline.svg │ │ │ │ │ ├── move-sharp.svg │ │ │ │ │ ├── move.svg │ │ │ │ │ ├── musical-note-outline.svg │ │ │ │ │ ├── musical-note-sharp.svg │ │ │ │ │ ├── musical-note.svg │ │ │ │ │ ├── musical-notes-outline.svg │ │ │ │ │ ├── musical-notes-sharp.svg │ │ │ │ │ ├── musical-notes.svg │ │ │ │ │ ├── navigate-circle-outline.svg │ │ │ │ │ ├── navigate-circle-sharp.svg │ │ │ │ │ ├── navigate-circle.svg │ │ │ │ │ ├── navigate-outline.svg │ │ │ │ │ ├── navigate-sharp.svg │ │ │ │ │ ├── navigate.svg │ │ │ │ │ ├── newspaper-outline.svg │ │ │ │ │ ├── newspaper-sharp.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── notifications-circle-outline.svg │ │ │ │ │ ├── notifications-circle-sharp.svg │ │ │ │ │ ├── notifications-circle.svg │ │ │ │ │ ├── notifications-off-circle-outline.svg │ │ │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ │ │ ├── notifications-off-circle.svg │ │ │ │ │ ├── notifications-off-outline.svg │ │ │ │ │ ├── notifications-off-sharp.svg │ │ │ │ │ ├── notifications-off.svg │ │ │ │ │ ├── notifications-outline.svg │ │ │ │ │ ├── notifications-sharp.svg │ │ │ │ │ ├── notifications.svg │ │ │ │ │ ├── nuclear-outline.svg │ │ │ │ │ ├── nuclear-sharp.svg │ │ │ │ │ ├── nuclear.svg │ │ │ │ │ ├── nutrition-outline.svg │ │ │ │ │ ├── nutrition-sharp.svg │ │ │ │ │ ├── nutrition.svg │ │ │ │ │ ├── open-outline.svg │ │ │ │ │ ├── open-sharp.svg │ │ │ │ │ ├── open.svg │ │ │ │ │ ├── options-outline.svg │ │ │ │ │ ├── options-sharp.svg │ │ │ │ │ ├── options.svg │ │ │ │ │ ├── paper-plane-outline.svg │ │ │ │ │ ├── paper-plane-sharp.svg │ │ │ │ │ ├── paper-plane.svg │ │ │ │ │ ├── partly-sunny-outline.svg │ │ │ │ │ ├── partly-sunny-sharp.svg │ │ │ │ │ ├── partly-sunny.svg │ │ │ │ │ ├── pause-circle-outline.svg │ │ │ │ │ ├── pause-circle-sharp.svg │ │ │ │ │ ├── pause-circle.svg │ │ │ │ │ ├── pause-outline.svg │ │ │ │ │ ├── pause-sharp.svg │ │ │ │ │ ├── pause.svg │ │ │ │ │ ├── paw-outline.svg │ │ │ │ │ ├── paw-sharp.svg │ │ │ │ │ ├── paw.svg │ │ │ │ │ ├── pencil-outline.svg │ │ │ │ │ ├── pencil-sharp.svg │ │ │ │ │ ├── pencil.svg │ │ │ │ │ ├── people-circle-outline.svg │ │ │ │ │ ├── people-circle-sharp.svg │ │ │ │ │ ├── people-circle.svg │ │ │ │ │ ├── people-outline.svg │ │ │ │ │ ├── people-sharp.svg │ │ │ │ │ ├── people.svg │ │ │ │ │ ├── person-add-outline.svg │ │ │ │ │ ├── person-add-sharp.svg │ │ │ │ │ ├── person-add.svg │ │ │ │ │ ├── person-circle-outline.svg │ │ │ │ │ ├── person-circle-sharp.svg │ │ │ │ │ ├── person-circle.svg │ │ │ │ │ ├── person-outline.svg │ │ │ │ │ ├── person-remove-outline.svg │ │ │ │ │ ├── person-remove-sharp.svg │ │ │ │ │ ├── person-remove.svg │ │ │ │ │ ├── person-sharp.svg │ │ │ │ │ ├── person.svg │ │ │ │ │ ├── phone-landscape-outline.svg │ │ │ │ │ ├── phone-landscape-sharp.svg │ │ │ │ │ ├── phone-landscape.svg │ │ │ │ │ ├── phone-portrait-outline.svg │ │ │ │ │ ├── phone-portrait-sharp.svg │ │ │ │ │ ├── phone-portrait.svg │ │ │ │ │ ├── pie-chart-outline.svg │ │ │ │ │ ├── pie-chart-sharp.svg │ │ │ │ │ ├── pie-chart.svg │ │ │ │ │ ├── pin-outline.svg │ │ │ │ │ ├── pin-sharp.svg │ │ │ │ │ ├── pin.svg │ │ │ │ │ ├── pint-outline.svg │ │ │ │ │ ├── pint-sharp.svg │ │ │ │ │ ├── pint.svg │ │ │ │ │ ├── pizza-outline.svg │ │ │ │ │ ├── pizza-sharp.svg │ │ │ │ │ ├── pizza.svg │ │ │ │ │ ├── planet-outline.svg │ │ │ │ │ ├── planet-sharp.svg │ │ │ │ │ ├── planet.svg │ │ │ │ │ ├── play-back-circle-outline.svg │ │ │ │ │ ├── play-back-circle-sharp.svg │ │ │ │ │ ├── play-back-circle.svg │ │ │ │ │ ├── play-back-outline.svg │ │ │ │ │ ├── play-back-sharp.svg │ │ │ │ │ ├── play-back.svg │ │ │ │ │ ├── play-circle-outline.svg │ │ │ │ │ ├── play-circle-sharp.svg │ │ │ │ │ ├── play-circle.svg │ │ │ │ │ ├── play-forward-circle-outline.svg │ │ │ │ │ ├── play-forward-circle-sharp.svg │ │ │ │ │ ├── play-forward-circle.svg │ │ │ │ │ ├── play-forward-outline.svg │ │ │ │ │ ├── play-forward-sharp.svg │ │ │ │ │ ├── play-forward.svg │ │ │ │ │ ├── play-outline.svg │ │ │ │ │ ├── play-sharp.svg │ │ │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ │ │ ├── play-skip-back-circle.svg │ │ │ │ │ ├── play-skip-back-outline.svg │ │ │ │ │ ├── play-skip-back-sharp.svg │ │ │ │ │ ├── play-skip-back.svg │ │ │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ │ │ ├── play-skip-forward-circle.svg │ │ │ │ │ ├── play-skip-forward-outline.svg │ │ │ │ │ ├── play-skip-forward-sharp.svg │ │ │ │ │ ├── play-skip-forward.svg │ │ │ │ │ ├── play.svg │ │ │ │ │ ├── podium-outline.svg │ │ │ │ │ ├── podium-sharp.svg │ │ │ │ │ ├── podium.svg │ │ │ │ │ ├── power-outline.svg │ │ │ │ │ ├── power-sharp.svg │ │ │ │ │ ├── power.svg │ │ │ │ │ ├── pricetag-outline.svg │ │ │ │ │ ├── pricetag-sharp.svg │ │ │ │ │ ├── pricetag.svg │ │ │ │ │ ├── pricetags-outline.svg │ │ │ │ │ ├── pricetags-sharp.svg │ │ │ │ │ ├── pricetags.svg │ │ │ │ │ ├── print-outline.svg │ │ │ │ │ ├── print-sharp.svg │ │ │ │ │ ├── print.svg │ │ │ │ │ ├── pulse-outline.svg │ │ │ │ │ ├── pulse-sharp.svg │ │ │ │ │ ├── pulse.svg │ │ │ │ │ ├── push-outline.svg │ │ │ │ │ ├── push-sharp.svg │ │ │ │ │ ├── push.svg │ │ │ │ │ ├── qr-code-outline.svg │ │ │ │ │ ├── qr-code-sharp.svg │ │ │ │ │ ├── qr-code.svg │ │ │ │ │ ├── radio-button-off-outline.svg │ │ │ │ │ ├── radio-button-off-sharp.svg │ │ │ │ │ ├── radio-button-off.svg │ │ │ │ │ ├── radio-button-on-outline.svg │ │ │ │ │ ├── radio-button-on-sharp.svg │ │ │ │ │ ├── radio-button-on.svg │ │ │ │ │ ├── radio-outline.svg │ │ │ │ │ ├── radio-sharp.svg │ │ │ │ │ ├── radio.svg │ │ │ │ │ ├── rainy-outline.svg │ │ │ │ │ ├── rainy-sharp.svg │ │ │ │ │ ├── rainy.svg │ │ │ │ │ ├── reader-outline.svg │ │ │ │ │ ├── reader-sharp.svg │ │ │ │ │ ├── reader.svg │ │ │ │ │ ├── receipt-outline.svg │ │ │ │ │ ├── receipt-sharp.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recording-outline.svg │ │ │ │ │ ├── recording-sharp.svg │ │ │ │ │ ├── recording.svg │ │ │ │ │ ├── refresh-circle-outline.svg │ │ │ │ │ ├── refresh-circle-sharp.svg │ │ │ │ │ ├── refresh-circle.svg │ │ │ │ │ ├── refresh-outline.svg │ │ │ │ │ ├── refresh-sharp.svg │ │ │ │ │ ├── refresh.svg │ │ │ │ │ ├── reload-circle-outline.svg │ │ │ │ │ ├── reload-circle-sharp.svg │ │ │ │ │ ├── reload-circle.svg │ │ │ │ │ ├── reload-outline.svg │ │ │ │ │ ├── reload-sharp.svg │ │ │ │ │ ├── reload.svg │ │ │ │ │ ├── remove-circle-outline.svg │ │ │ │ │ ├── remove-circle-sharp.svg │ │ │ │ │ ├── remove-circle.svg │ │ │ │ │ ├── remove-outline.svg │ │ │ │ │ ├── remove-sharp.svg │ │ │ │ │ ├── remove.svg │ │ │ │ │ ├── reorder-four-outline.svg │ │ │ │ │ ├── reorder-four-sharp.svg │ │ │ │ │ ├── reorder-four.svg │ │ │ │ │ ├── reorder-three-outline.svg │ │ │ │ │ ├── reorder-three-sharp.svg │ │ │ │ │ ├── reorder-three.svg │ │ │ │ │ ├── reorder-two-outline.svg │ │ │ │ │ ├── reorder-two-sharp.svg │ │ │ │ │ ├── reorder-two.svg │ │ │ │ │ ├── repeat-outline.svg │ │ │ │ │ ├── repeat-sharp.svg │ │ │ │ │ ├── repeat.svg │ │ │ │ │ ├── resize-outline.svg │ │ │ │ │ ├── resize-sharp.svg │ │ │ │ │ ├── resize.svg │ │ │ │ │ ├── restaurant-outline.svg │ │ │ │ │ ├── restaurant-sharp.svg │ │ │ │ │ ├── restaurant.svg │ │ │ │ │ ├── return-down-back-outline.svg │ │ │ │ │ ├── return-down-back-sharp.svg │ │ │ │ │ ├── return-down-back.svg │ │ │ │ │ ├── return-down-forward-outline.svg │ │ │ │ │ ├── return-down-forward-sharp.svg │ │ │ │ │ ├── return-down-forward.svg │ │ │ │ │ ├── return-up-back-outline.svg │ │ │ │ │ ├── return-up-back-sharp.svg │ │ │ │ │ ├── return-up-back.svg │ │ │ │ │ ├── return-up-forward-outline.svg │ │ │ │ │ ├── return-up-forward-sharp.svg │ │ │ │ │ ├── return-up-forward.svg │ │ │ │ │ ├── ribbon-outline.svg │ │ │ │ │ ├── ribbon-sharp.svg │ │ │ │ │ ├── ribbon.svg │ │ │ │ │ ├── rocket-outline.svg │ │ │ │ │ ├── rocket-sharp.svg │ │ │ │ │ ├── rocket.svg │ │ │ │ │ ├── rose-outline.svg │ │ │ │ │ ├── rose-sharp.svg │ │ │ │ │ ├── rose.svg │ │ │ │ │ ├── sad-outline.svg │ │ │ │ │ ├── sad-sharp.svg │ │ │ │ │ ├── sad.svg │ │ │ │ │ ├── save-outline.svg │ │ │ │ │ ├── save-sharp.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── scan-circle-outline.svg │ │ │ │ │ ├── scan-circle-sharp.svg │ │ │ │ │ ├── scan-circle.svg │ │ │ │ │ ├── scan-outline.svg │ │ │ │ │ ├── scan-sharp.svg │ │ │ │ │ ├── scan.svg │ │ │ │ │ ├── school-outline.svg │ │ │ │ │ ├── school-sharp.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── search-circle-outline.svg │ │ │ │ │ ├── search-circle-sharp.svg │ │ │ │ │ ├── search-circle.svg │ │ │ │ │ ├── search-outline.svg │ │ │ │ │ ├── search-sharp.svg │ │ │ │ │ ├── search.svg │ │ │ │ │ ├── send-outline.svg │ │ │ │ │ ├── send-sharp.svg │ │ │ │ │ ├── send.svg │ │ │ │ │ ├── server-outline.svg │ │ │ │ │ ├── server-sharp.svg │ │ │ │ │ ├── server.svg │ │ │ │ │ ├── settings-outline.svg │ │ │ │ │ ├── settings-sharp.svg │ │ │ │ │ ├── settings.svg │ │ │ │ │ ├── shapes-outline.svg │ │ │ │ │ ├── shapes-sharp.svg │ │ │ │ │ ├── shapes.svg │ │ │ │ │ ├── share-outline.svg │ │ │ │ │ ├── share-sharp.svg │ │ │ │ │ ├── share-social-outline.svg │ │ │ │ │ ├── share-social-sharp.svg │ │ │ │ │ ├── share-social.svg │ │ │ │ │ ├── share.svg │ │ │ │ │ ├── shield-checkmark-outline.svg │ │ │ │ │ ├── shield-checkmark-sharp.svg │ │ │ │ │ ├── shield-checkmark.svg │ │ │ │ │ ├── shield-outline.svg │ │ │ │ │ ├── shield-sharp.svg │ │ │ │ │ ├── shield.svg │ │ │ │ │ ├── shirt-outline.svg │ │ │ │ │ ├── shirt-sharp.svg │ │ │ │ │ ├── shirt.svg │ │ │ │ │ ├── shuffle-outline.svg │ │ │ │ │ ├── shuffle-sharp.svg │ │ │ │ │ ├── shuffle.svg │ │ │ │ │ ├── skull-outline.svg │ │ │ │ │ ├── skull-sharp.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── snow-outline.svg │ │ │ │ │ ├── snow-sharp.svg │ │ │ │ │ ├── snow.svg │ │ │ │ │ ├── speedometer-outline.svg │ │ │ │ │ ├── speedometer-sharp.svg │ │ │ │ │ ├── speedometer.svg │ │ │ │ │ ├── square-outline.svg │ │ │ │ │ ├── square-sharp.svg │ │ │ │ │ ├── square.svg │ │ │ │ │ ├── star-half-outline.svg │ │ │ │ │ ├── star-half-sharp.svg │ │ │ │ │ ├── star-half.svg │ │ │ │ │ ├── star-outline.svg │ │ │ │ │ ├── star-sharp.svg │ │ │ │ │ ├── star.svg │ │ │ │ │ ├── stats-chart-outline.svg │ │ │ │ │ ├── stats-chart-sharp.svg │ │ │ │ │ ├── stats-chart.svg │ │ │ │ │ ├── stop-circle-outline.svg │ │ │ │ │ ├── stop-circle-sharp.svg │ │ │ │ │ ├── stop-circle.svg │ │ │ │ │ ├── stop-outline.svg │ │ │ │ │ ├── stop-sharp.svg │ │ │ │ │ ├── stop.svg │ │ │ │ │ ├── stopwatch-outline.svg │ │ │ │ │ ├── stopwatch-sharp.svg │ │ │ │ │ ├── stopwatch.svg │ │ │ │ │ ├── subway-outline.svg │ │ │ │ │ ├── subway-sharp.svg │ │ │ │ │ ├── subway.svg │ │ │ │ │ ├── sunny-outline.svg │ │ │ │ │ ├── sunny-sharp.svg │ │ │ │ │ ├── sunny.svg │ │ │ │ │ ├── swap-horizontal-outline.svg │ │ │ │ │ ├── swap-horizontal-sharp.svg │ │ │ │ │ ├── swap-horizontal.svg │ │ │ │ │ ├── swap-vertical-outline.svg │ │ │ │ │ ├── swap-vertical-sharp.svg │ │ │ │ │ ├── swap-vertical.svg │ │ │ │ │ ├── sync-circle-outline.svg │ │ │ │ │ ├── sync-circle-sharp.svg │ │ │ │ │ ├── sync-circle.svg │ │ │ │ │ ├── sync-outline.svg │ │ │ │ │ ├── sync-sharp.svg │ │ │ │ │ ├── sync.svg │ │ │ │ │ ├── tablet-landscape-outline.svg │ │ │ │ │ ├── tablet-landscape-sharp.svg │ │ │ │ │ ├── tablet-landscape.svg │ │ │ │ │ ├── tablet-portrait-outline.svg │ │ │ │ │ ├── tablet-portrait-sharp.svg │ │ │ │ │ ├── tablet-portrait.svg │ │ │ │ │ ├── tennisball-outline.svg │ │ │ │ │ ├── tennisball-sharp.svg │ │ │ │ │ ├── tennisball.svg │ │ │ │ │ ├── terminal-outline.svg │ │ │ │ │ ├── terminal-sharp.svg │ │ │ │ │ ├── terminal.svg │ │ │ │ │ ├── text-outline.svg │ │ │ │ │ ├── text-sharp.svg │ │ │ │ │ ├── text.svg │ │ │ │ │ ├── thermometer-outline.svg │ │ │ │ │ ├── thermometer-sharp.svg │ │ │ │ │ ├── thermometer.svg │ │ │ │ │ ├── thumbs-down-outline.svg │ │ │ │ │ ├── thumbs-down-sharp.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up-outline.svg │ │ │ │ │ ├── thumbs-up-sharp.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thunderstorm-outline.svg │ │ │ │ │ ├── thunderstorm-sharp.svg │ │ │ │ │ ├── thunderstorm.svg │ │ │ │ │ ├── time-outline.svg │ │ │ │ │ ├── time-sharp.svg │ │ │ │ │ ├── time.svg │ │ │ │ │ ├── timer-outline.svg │ │ │ │ │ ├── timer-sharp.svg │ │ │ │ │ ├── timer.svg │ │ │ │ │ ├── today-outline.svg │ │ │ │ │ ├── today-sharp.svg │ │ │ │ │ ├── today.svg │ │ │ │ │ ├── toggle-outline.svg │ │ │ │ │ ├── toggle-sharp.svg │ │ │ │ │ ├── toggle.svg │ │ │ │ │ ├── trail-sign-outline.svg │ │ │ │ │ ├── trail-sign-sharp.svg │ │ │ │ │ ├── trail-sign.svg │ │ │ │ │ ├── train-outline.svg │ │ │ │ │ ├── train-sharp.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-outline.svg │ │ │ │ │ ├── transgender-sharp.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-bin-outline.svg │ │ │ │ │ ├── trash-bin-sharp.svg │ │ │ │ │ ├── trash-bin.svg │ │ │ │ │ ├── trash-outline.svg │ │ │ │ │ ├── trash-sharp.svg │ │ │ │ │ ├── trash.svg │ │ │ │ │ ├── trending-down-outline.svg │ │ │ │ │ ├── trending-down-sharp.svg │ │ │ │ │ ├── trending-down.svg │ │ │ │ │ ├── trending-up-outline.svg │ │ │ │ │ ├── trending-up-sharp.svg │ │ │ │ │ ├── trending-up.svg │ │ │ │ │ ├── triangle-outline.svg │ │ │ │ │ ├── triangle-sharp.svg │ │ │ │ │ ├── triangle.svg │ │ │ │ │ ├── trophy-outline.svg │ │ │ │ │ ├── trophy-sharp.svg │ │ │ │ │ ├── trophy.svg │ │ │ │ │ ├── tv-outline.svg │ │ │ │ │ ├── tv-sharp.svg │ │ │ │ │ ├── tv.svg │ │ │ │ │ ├── umbrella-outline.svg │ │ │ │ │ ├── umbrella-sharp.svg │ │ │ │ │ ├── umbrella.svg │ │ │ │ │ ├── videocam-outline.svg │ │ │ │ │ ├── videocam-sharp.svg │ │ │ │ │ ├── videocam.svg │ │ │ │ │ ├── volume-high-outline.svg │ │ │ │ │ ├── volume-high-sharp.svg │ │ │ │ │ ├── volume-high.svg │ │ │ │ │ ├── volume-low-outline.svg │ │ │ │ │ ├── volume-low-sharp.svg │ │ │ │ │ ├── volume-low.svg │ │ │ │ │ ├── volume-medium-outline.svg │ │ │ │ │ ├── volume-medium-sharp.svg │ │ │ │ │ ├── volume-medium.svg │ │ │ │ │ ├── volume-mute-outline.svg │ │ │ │ │ ├── volume-mute-sharp.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off-outline.svg │ │ │ │ │ ├── volume-off-sharp.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── walk-outline.svg │ │ │ │ │ ├── walk-sharp.svg │ │ │ │ │ ├── walk.svg │ │ │ │ │ ├── wallet-outline.svg │ │ │ │ │ ├── wallet-sharp.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warning-outline.svg │ │ │ │ │ ├── warning-sharp.svg │ │ │ │ │ ├── warning.svg │ │ │ │ │ ├── watch-outline.svg │ │ │ │ │ ├── watch-sharp.svg │ │ │ │ │ ├── watch.svg │ │ │ │ │ ├── water-outline.svg │ │ │ │ │ ├── water-sharp.svg │ │ │ │ │ ├── water.svg │ │ │ │ │ ├── wifi-outline.svg │ │ │ │ │ ├── wifi-sharp.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── wine-outline.svg │ │ │ │ │ ├── wine-sharp.svg │ │ │ │ │ ├── wine.svg │ │ │ │ │ ├── woman-outline.svg │ │ │ │ │ ├── woman-sharp.svg │ │ │ │ │ └── woman.svg │ │ │ │ │ ├── utils.js │ │ │ │ │ └── validate.js │ │ │ └── index.js │ │ │ ├── esm-es5 │ │ │ ├── css-shim-3b0ed064.js │ │ │ ├── dom-3fa9e65e.js │ │ │ ├── index-e0fb4cab.js │ │ │ ├── index.mjs │ │ │ ├── ion-icon.entry.js │ │ │ ├── ionicons.mjs │ │ │ ├── loader.mjs │ │ │ ├── patch-8a5c4a53.js │ │ │ ├── shadow-css-a27537cf.js │ │ │ └── utils-6f78da88.js │ │ │ ├── esm │ │ │ ├── css-shim-3b0ed064.js │ │ │ ├── dom-3fa9e65e.js │ │ │ ├── index-e0fb4cab.js │ │ │ ├── index.mjs │ │ │ ├── ion-icon.entry.js │ │ │ ├── ionicons.mjs │ │ │ ├── loader.mjs │ │ │ ├── patch-8a5c4a53.js │ │ │ ├── polyfills │ │ │ │ ├── core-js.js │ │ │ │ ├── css-shim.js │ │ │ │ ├── dom.js │ │ │ │ ├── es5-html-element.js │ │ │ │ ├── index.js │ │ │ │ ├── promise.js │ │ │ │ └── system.js │ │ │ ├── shadow-css-a27537cf.js │ │ │ └── utils-6f78da88.js │ │ │ ├── index.js │ │ │ ├── index.mjs │ │ │ ├── ionicons.js │ │ │ ├── ionicons.json │ │ │ ├── ionicons.symbols.svg │ │ │ ├── ionicons │ │ │ ├── index.esm.js │ │ │ ├── ionicons.esm.js │ │ │ ├── ionicons.js │ │ │ ├── p-1bbd5478.system.js │ │ │ ├── p-27972752.js │ │ │ ├── p-3833d40d.js │ │ │ ├── p-4372c4bc.js │ │ │ ├── p-6f4eae92.js │ │ │ ├── p-6fac4dda.system.js │ │ │ ├── p-73a136a1.system.js │ │ │ ├── p-7815a89a.entry.js │ │ │ ├── p-93944642.system.js │ │ │ ├── p-9ca7810c.system.js │ │ │ ├── p-a144ac62.system.js │ │ │ ├── p-a32ddb35.js │ │ │ ├── p-bea43937.js │ │ │ ├── p-c4eb75a2.system.js │ │ │ ├── p-e4297691.system.js │ │ │ ├── p-e81624d4.system.entry.js │ │ │ └── svg │ │ │ │ ├── add-circle-outline.svg │ │ │ │ ├── add-circle-sharp.svg │ │ │ │ ├── add-circle.svg │ │ │ │ ├── add-outline.svg │ │ │ │ ├── add-sharp.svg │ │ │ │ ├── add.svg │ │ │ │ ├── airplane-outline.svg │ │ │ │ ├── airplane-sharp.svg │ │ │ │ ├── airplane.svg │ │ │ │ ├── alarm-outline.svg │ │ │ │ ├── alarm-sharp.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── albums-outline.svg │ │ │ │ ├── albums-sharp.svg │ │ │ │ ├── albums.svg │ │ │ │ ├── alert-circle-outline.svg │ │ │ │ ├── alert-circle-sharp.svg │ │ │ │ ├── alert-circle.svg │ │ │ │ ├── alert-outline.svg │ │ │ │ ├── alert-sharp.svg │ │ │ │ ├── alert.svg │ │ │ │ ├── american-football-outline.svg │ │ │ │ ├── american-football-sharp.svg │ │ │ │ ├── american-football.svg │ │ │ │ ├── analytics-outline.svg │ │ │ │ ├── analytics-sharp.svg │ │ │ │ ├── analytics.svg │ │ │ │ ├── aperture-outline.svg │ │ │ │ ├── aperture-sharp.svg │ │ │ │ ├── aperture.svg │ │ │ │ ├── apps-outline.svg │ │ │ │ ├── apps-sharp.svg │ │ │ │ ├── apps.svg │ │ │ │ ├── archive-outline.svg │ │ │ │ ├── archive-sharp.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── arrow-back-circle-outline.svg │ │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ │ ├── arrow-back-circle.svg │ │ │ │ ├── arrow-back-outline.svg │ │ │ │ ├── arrow-back-sharp.svg │ │ │ │ ├── arrow-back.svg │ │ │ │ ├── arrow-down-circle-outline.svg │ │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ │ ├── arrow-down-circle.svg │ │ │ │ ├── arrow-down-outline.svg │ │ │ │ ├── arrow-down-sharp.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ │ ├── arrow-forward-circle.svg │ │ │ │ ├── arrow-forward-outline.svg │ │ │ │ ├── arrow-forward-sharp.svg │ │ │ │ ├── arrow-forward.svg │ │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ │ ├── arrow-redo-circle.svg │ │ │ │ ├── arrow-redo-outline.svg │ │ │ │ ├── arrow-redo-sharp.svg │ │ │ │ ├── arrow-redo.svg │ │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ │ ├── arrow-undo-circle.svg │ │ │ │ ├── arrow-undo-outline.svg │ │ │ │ ├── arrow-undo-sharp.svg │ │ │ │ ├── arrow-undo.svg │ │ │ │ ├── arrow-up-circle-outline.svg │ │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ │ ├── arrow-up-circle.svg │ │ │ │ ├── arrow-up-outline.svg │ │ │ │ ├── arrow-up-sharp.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── at-circle-outline.svg │ │ │ │ ├── at-circle-sharp.svg │ │ │ │ ├── at-circle.svg │ │ │ │ ├── at-outline.svg │ │ │ │ ├── at-sharp.svg │ │ │ │ ├── at.svg │ │ │ │ ├── attach-outline.svg │ │ │ │ ├── attach-sharp.svg │ │ │ │ ├── attach.svg │ │ │ │ ├── backspace-outline.svg │ │ │ │ ├── backspace-sharp.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── bandage-outline.svg │ │ │ │ ├── bandage-sharp.svg │ │ │ │ ├── bandage.svg │ │ │ │ ├── bar-chart-outline.svg │ │ │ │ ├── bar-chart-sharp.svg │ │ │ │ ├── bar-chart.svg │ │ │ │ ├── barbell-outline.svg │ │ │ │ ├── barbell-sharp.svg │ │ │ │ ├── barbell.svg │ │ │ │ ├── barcode-outline.svg │ │ │ │ ├── barcode-sharp.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── baseball-outline.svg │ │ │ │ ├── baseball-sharp.svg │ │ │ │ ├── baseball.svg │ │ │ │ ├── basket-outline.svg │ │ │ │ ├── basket-sharp.svg │ │ │ │ ├── basket.svg │ │ │ │ ├── basketball-outline.svg │ │ │ │ ├── basketball-sharp.svg │ │ │ │ ├── basketball.svg │ │ │ │ ├── battery-charging-outline.svg │ │ │ │ ├── battery-charging-sharp.svg │ │ │ │ ├── battery-charging.svg │ │ │ │ ├── battery-dead-outline.svg │ │ │ │ ├── battery-dead-sharp.svg │ │ │ │ ├── battery-dead.svg │ │ │ │ ├── battery-full-outline.svg │ │ │ │ ├── battery-full-sharp.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half-outline.svg │ │ │ │ ├── battery-half-sharp.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── beaker-outline.svg │ │ │ │ ├── beaker-sharp.svg │ │ │ │ ├── beaker.svg │ │ │ │ ├── bed-outline.svg │ │ │ │ ├── bed-sharp.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer-outline.svg │ │ │ │ ├── beer-sharp.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bicycle-outline.svg │ │ │ │ ├── bicycle-sharp.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── bluetooth-outline.svg │ │ │ │ ├── bluetooth-sharp.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── boat-outline.svg │ │ │ │ ├── boat-sharp.svg │ │ │ │ ├── boat.svg │ │ │ │ ├── body-outline.svg │ │ │ │ ├── body-sharp.svg │ │ │ │ ├── body.svg │ │ │ │ ├── bonfire-outline.svg │ │ │ │ ├── bonfire-sharp.svg │ │ │ │ ├── bonfire.svg │ │ │ │ ├── book-outline.svg │ │ │ │ ├── book-sharp.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark-outline.svg │ │ │ │ ├── bookmark-sharp.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bookmarks-outline.svg │ │ │ │ ├── bookmarks-sharp.svg │ │ │ │ ├── bookmarks.svg │ │ │ │ ├── briefcase-outline.svg │ │ │ │ ├── briefcase-sharp.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── browsers-outline.svg │ │ │ │ ├── browsers-sharp.svg │ │ │ │ ├── browsers.svg │ │ │ │ ├── brush-outline.svg │ │ │ │ ├── brush-sharp.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug-outline.svg │ │ │ │ ├── bug-sharp.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── build-outline.svg │ │ │ │ ├── build-sharp.svg │ │ │ │ ├── build.svg │ │ │ │ ├── bulb-outline.svg │ │ │ │ ├── bulb-sharp.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── bus-outline.svg │ │ │ │ ├── bus-sharp.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-outline.svg │ │ │ │ ├── business-sharp.svg │ │ │ │ ├── business.svg │ │ │ │ ├── cafe-outline.svg │ │ │ │ ├── cafe-sharp.svg │ │ │ │ ├── cafe.svg │ │ │ │ ├── calculator-outline.svg │ │ │ │ ├── calculator-sharp.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-outline.svg │ │ │ │ ├── calendar-sharp.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── call-outline.svg │ │ │ │ ├── call-sharp.svg │ │ │ │ ├── call.svg │ │ │ │ ├── camera-outline.svg │ │ │ │ ├── camera-reverse-outline.svg │ │ │ │ ├── camera-reverse-sharp.svg │ │ │ │ ├── camera-reverse.svg │ │ │ │ ├── camera-sharp.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── car-outline.svg │ │ │ │ ├── car-sharp.svg │ │ │ │ ├── car-sport-outline.svg │ │ │ │ ├── car-sport-sharp.svg │ │ │ │ ├── car-sport.svg │ │ │ │ ├── car.svg │ │ │ │ ├── card-outline.svg │ │ │ │ ├── card-sharp.svg │ │ │ │ ├── card.svg │ │ │ │ ├── caret-back-circle-outline.svg │ │ │ │ ├── caret-back-circle-sharp.svg │ │ │ │ ├── caret-back-circle.svg │ │ │ │ ├── caret-back-outline.svg │ │ │ │ ├── caret-back-sharp.svg │ │ │ │ ├── caret-back.svg │ │ │ │ ├── caret-down-circle-outline.svg │ │ │ │ ├── caret-down-circle-sharp.svg │ │ │ │ ├── caret-down-circle.svg │ │ │ │ ├── caret-down-outline.svg │ │ │ │ ├── caret-down-sharp.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-forward-circle-outline.svg │ │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ │ ├── caret-forward-circle.svg │ │ │ │ ├── caret-forward-outline.svg │ │ │ │ ├── caret-forward-sharp.svg │ │ │ │ ├── caret-forward.svg │ │ │ │ ├── caret-up-circle-outline.svg │ │ │ │ ├── caret-up-circle-sharp.svg │ │ │ │ ├── caret-up-circle.svg │ │ │ │ ├── caret-up-outline.svg │ │ │ │ ├── caret-up-sharp.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── cart-outline.svg │ │ │ │ ├── cart-sharp.svg │ │ │ │ ├── cart.svg │ │ │ │ ├── cash-outline.svg │ │ │ │ ├── cash-sharp.svg │ │ │ │ ├── cash.svg │ │ │ │ ├── cellular-outline.svg │ │ │ │ ├── cellular-sharp.svg │ │ │ │ ├── cellular.svg │ │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ │ ├── chatbox-ellipses.svg │ │ │ │ ├── chatbox-outline.svg │ │ │ │ ├── chatbox-sharp.svg │ │ │ │ ├── chatbox.svg │ │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ │ ├── chatbubble-ellipses.svg │ │ │ │ ├── chatbubble-outline.svg │ │ │ │ ├── chatbubble-sharp.svg │ │ │ │ ├── chatbubble.svg │ │ │ │ ├── chatbubbles-outline.svg │ │ │ │ ├── chatbubbles-sharp.svg │ │ │ │ ├── chatbubbles.svg │ │ │ │ ├── checkbox-outline.svg │ │ │ │ ├── checkbox-sharp.svg │ │ │ │ ├── checkbox.svg │ │ │ │ ├── checkmark-circle-outline.svg │ │ │ │ ├── checkmark-circle-sharp.svg │ │ │ │ ├── checkmark-circle.svg │ │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ │ ├── checkmark-done-circle.svg │ │ │ │ ├── checkmark-done-outline.svg │ │ │ │ ├── checkmark-done-sharp.svg │ │ │ │ ├── checkmark-done.svg │ │ │ │ ├── checkmark-outline.svg │ │ │ │ ├── checkmark-sharp.svg │ │ │ │ ├── checkmark.svg │ │ │ │ ├── chevron-back-circle-outline.svg │ │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ │ ├── chevron-back-circle.svg │ │ │ │ ├── chevron-back-outline.svg │ │ │ │ ├── chevron-back-sharp.svg │ │ │ │ ├── chevron-back.svg │ │ │ │ ├── chevron-down-circle-outline.svg │ │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ │ ├── chevron-down-circle.svg │ │ │ │ ├── chevron-down-outline.svg │ │ │ │ ├── chevron-down-sharp.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ │ ├── chevron-forward-circle.svg │ │ │ │ ├── chevron-forward-outline.svg │ │ │ │ ├── chevron-forward-sharp.svg │ │ │ │ ├── chevron-forward.svg │ │ │ │ ├── chevron-up-circle-outline.svg │ │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ │ ├── chevron-up-circle.svg │ │ │ │ ├── chevron-up-outline.svg │ │ │ │ ├── chevron-up-sharp.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── clipboard-outline.svg │ │ │ │ ├── clipboard-sharp.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── close-circle-outline.svg │ │ │ │ ├── close-circle-sharp.svg │ │ │ │ ├── close-circle.svg │ │ │ │ ├── close-outline.svg │ │ │ │ ├── close-sharp.svg │ │ │ │ ├── close.svg │ │ │ │ ├── cloud-circle-outline.svg │ │ │ │ ├── cloud-circle-sharp.svg │ │ │ │ ├── cloud-circle.svg │ │ │ │ ├── cloud-done-outline.svg │ │ │ │ ├── cloud-done-sharp.svg │ │ │ │ ├── cloud-done.svg │ │ │ │ ├── cloud-download-outline.svg │ │ │ │ ├── cloud-download-sharp.svg │ │ │ │ ├── cloud-download.svg │ │ │ │ ├── cloud-offline-outline.svg │ │ │ │ ├── cloud-offline-sharp.svg │ │ │ │ ├── cloud-offline.svg │ │ │ │ ├── cloud-outline.svg │ │ │ │ ├── cloud-sharp.svg │ │ │ │ ├── cloud-upload-outline.svg │ │ │ │ ├── cloud-upload-sharp.svg │ │ │ │ ├── cloud-upload.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cloudy-night-outline.svg │ │ │ │ ├── cloudy-night-sharp.svg │ │ │ │ ├── cloudy-night.svg │ │ │ │ ├── cloudy-outline.svg │ │ │ │ ├── cloudy-sharp.svg │ │ │ │ ├── cloudy.svg │ │ │ │ ├── code-download-outline.svg │ │ │ │ ├── code-download-sharp.svg │ │ │ │ ├── code-download.svg │ │ │ │ ├── code-outline.svg │ │ │ │ ├── code-sharp.svg │ │ │ │ ├── code-slash-outline.svg │ │ │ │ ├── code-slash-sharp.svg │ │ │ │ ├── code-slash.svg │ │ │ │ ├── code-working-outline.svg │ │ │ │ ├── code-working-sharp.svg │ │ │ │ ├── code-working.svg │ │ │ │ ├── code.svg │ │ │ │ ├── cog-outline.svg │ │ │ │ ├── cog-sharp.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── color-fill-outline.svg │ │ │ │ ├── color-fill-sharp.svg │ │ │ │ ├── color-fill.svg │ │ │ │ ├── color-filter-outline.svg │ │ │ │ ├── color-filter-sharp.svg │ │ │ │ ├── color-filter.svg │ │ │ │ ├── color-palette-outline.svg │ │ │ │ ├── color-palette-sharp.svg │ │ │ │ ├── color-palette.svg │ │ │ │ ├── color-wand-outline.svg │ │ │ │ ├── color-wand-sharp.svg │ │ │ │ ├── color-wand.svg │ │ │ │ ├── compass-outline.svg │ │ │ │ ├── compass-sharp.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── construct-outline.svg │ │ │ │ ├── construct-sharp.svg │ │ │ │ ├── construct.svg │ │ │ │ ├── contract-outline.svg │ │ │ │ ├── contract-sharp.svg │ │ │ │ ├── contract.svg │ │ │ │ ├── contrast-outline.svg │ │ │ │ ├── contrast-sharp.svg │ │ │ │ ├── contrast.svg │ │ │ │ ├── copy-outline.svg │ │ │ │ ├── copy-sharp.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── create-outline.svg │ │ │ │ ├── create-sharp.svg │ │ │ │ ├── create.svg │ │ │ │ ├── crop-outline.svg │ │ │ │ ├── crop-sharp.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cube-outline.svg │ │ │ │ ├── cube-sharp.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cut-outline.svg │ │ │ │ ├── cut-sharp.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── desktop-outline.svg │ │ │ │ ├── desktop-sharp.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── disc-outline.svg │ │ │ │ ├── disc-sharp.svg │ │ │ │ ├── disc.svg │ │ │ │ ├── document-attach-outline.svg │ │ │ │ ├── document-attach-sharp.svg │ │ │ │ ├── document-attach.svg │ │ │ │ ├── document-outline.svg │ │ │ │ ├── document-sharp.svg │ │ │ │ ├── document-text-outline.svg │ │ │ │ ├── document-text-sharp.svg │ │ │ │ ├── document-text.svg │ │ │ │ ├── document.svg │ │ │ │ ├── documents-outline.svg │ │ │ │ ├── documents-sharp.svg │ │ │ │ ├── documents.svg │ │ │ │ ├── download-outline.svg │ │ │ │ ├── download-sharp.svg │ │ │ │ ├── download.svg │ │ │ │ ├── duplicate-outline.svg │ │ │ │ ├── duplicate-sharp.svg │ │ │ │ ├── duplicate.svg │ │ │ │ ├── ear-outline.svg │ │ │ │ ├── ear-sharp.svg │ │ │ │ ├── ear.svg │ │ │ │ ├── earth-outline.svg │ │ │ │ ├── earth-sharp.svg │ │ │ │ ├── earth.svg │ │ │ │ ├── easel-outline.svg │ │ │ │ ├── easel-sharp.svg │ │ │ │ ├── easel.svg │ │ │ │ ├── egg-outline.svg │ │ │ │ ├── egg-sharp.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── ellipse-outline.svg │ │ │ │ ├── ellipse-sharp.svg │ │ │ │ ├── ellipse.svg │ │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ │ ├── ellipsis-horizontal.svg │ │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ │ ├── ellipsis-vertical.svg │ │ │ │ ├── enter-outline.svg │ │ │ │ ├── enter-sharp.svg │ │ │ │ ├── enter.svg │ │ │ │ ├── exit-outline.svg │ │ │ │ ├── exit-sharp.svg │ │ │ │ ├── exit.svg │ │ │ │ ├── expand-outline.svg │ │ │ │ ├── expand-sharp.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── eye-off-outline.svg │ │ │ │ ├── eye-off-sharp.svg │ │ │ │ ├── eye-off.svg │ │ │ │ ├── eye-outline.svg │ │ │ │ ├── eye-sharp.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── eyedrop-outline.svg │ │ │ │ ├── eyedrop-sharp.svg │ │ │ │ ├── eyedrop.svg │ │ │ │ ├── fast-food-outline.svg │ │ │ │ ├── fast-food-sharp.svg │ │ │ │ ├── fast-food.svg │ │ │ │ ├── female-outline.svg │ │ │ │ ├── female-sharp.svg │ │ │ │ ├── female.svg │ │ │ │ ├── file-tray-full-outline.svg │ │ │ │ ├── file-tray-full-sharp.svg │ │ │ │ ├── file-tray-full.svg │ │ │ │ ├── file-tray-outline.svg │ │ │ │ ├── file-tray-sharp.svg │ │ │ │ ├── file-tray-stacked-outline.svg │ │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ │ ├── file-tray-stacked.svg │ │ │ │ ├── file-tray.svg │ │ │ │ ├── film-outline.svg │ │ │ │ ├── film-sharp.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter-outline.svg │ │ │ │ ├── filter-sharp.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── finger-print-outline.svg │ │ │ │ ├── finger-print-sharp.svg │ │ │ │ ├── finger-print.svg │ │ │ │ ├── fitness-outline.svg │ │ │ │ ├── fitness-sharp.svg │ │ │ │ ├── fitness.svg │ │ │ │ ├── flag-outline.svg │ │ │ │ ├── flag-sharp.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flame-outline.svg │ │ │ │ ├── flame-sharp.svg │ │ │ │ ├── flame.svg │ │ │ │ ├── flash-off-outline.svg │ │ │ │ ├── flash-off-sharp.svg │ │ │ │ ├── flash-off.svg │ │ │ │ ├── flash-outline.svg │ │ │ │ ├── flash-sharp.svg │ │ │ │ ├── flash.svg │ │ │ │ ├── flashlight-outline.svg │ │ │ │ ├── flashlight-sharp.svg │ │ │ │ ├── flashlight.svg │ │ │ │ ├── flask-outline.svg │ │ │ │ ├── flask-sharp.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flower-outline.svg │ │ │ │ ├── flower-sharp.svg │ │ │ │ ├── flower.svg │ │ │ │ ├── folder-open-outline.svg │ │ │ │ ├── folder-open-sharp.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-outline.svg │ │ │ │ ├── folder-sharp.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── football-outline.svg │ │ │ │ ├── football-sharp.svg │ │ │ │ ├── football.svg │ │ │ │ ├── funnel-outline.svg │ │ │ │ ├── funnel-sharp.svg │ │ │ │ ├── funnel.svg │ │ │ │ ├── game-controller-outline.svg │ │ │ │ ├── game-controller-sharp.svg │ │ │ │ ├── game-controller.svg │ │ │ │ ├── gift-outline.svg │ │ │ │ ├── gift-sharp.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── git-branch-outline.svg │ │ │ │ ├── git-branch-sharp.svg │ │ │ │ ├── git-branch.svg │ │ │ │ ├── git-commit-outline.svg │ │ │ │ ├── git-commit-sharp.svg │ │ │ │ ├── git-commit.svg │ │ │ │ ├── git-compare-outline.svg │ │ │ │ ├── git-compare-sharp.svg │ │ │ │ ├── git-compare.svg │ │ │ │ ├── git-merge-outline.svg │ │ │ │ ├── git-merge-sharp.svg │ │ │ │ ├── git-merge.svg │ │ │ │ ├── git-network-outline.svg │ │ │ │ ├── git-network-sharp.svg │ │ │ │ ├── git-network.svg │ │ │ │ ├── git-pull-request-outline.svg │ │ │ │ ├── git-pull-request-sharp.svg │ │ │ │ ├── git-pull-request.svg │ │ │ │ ├── glasses-outline.svg │ │ │ │ ├── glasses-sharp.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-outline.svg │ │ │ │ ├── globe-sharp.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-outline.svg │ │ │ │ ├── golf-sharp.svg │ │ │ │ ├── golf.svg │ │ │ │ ├── grid-outline.svg │ │ │ │ ├── grid-sharp.svg │ │ │ │ ├── grid.svg │ │ │ │ ├── hammer-outline.svg │ │ │ │ ├── hammer-sharp.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hand-left-outline.svg │ │ │ │ ├── hand-left-sharp.svg │ │ │ │ ├── hand-left.svg │ │ │ │ ├── hand-right-outline.svg │ │ │ │ ├── hand-right-sharp.svg │ │ │ │ ├── hand-right.svg │ │ │ │ ├── happy-outline.svg │ │ │ │ ├── happy-sharp.svg │ │ │ │ ├── happy.svg │ │ │ │ ├── hardware-chip-outline.svg │ │ │ │ ├── hardware-chip-sharp.svg │ │ │ │ ├── hardware-chip.svg │ │ │ │ ├── headset-outline.svg │ │ │ │ ├── headset-sharp.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-circle-outline.svg │ │ │ │ ├── heart-circle-sharp.svg │ │ │ │ ├── heart-circle.svg │ │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ │ ├── heart-dislike-circle.svg │ │ │ │ ├── heart-dislike-outline.svg │ │ │ │ ├── heart-dislike-sharp.svg │ │ │ │ ├── heart-dislike.svg │ │ │ │ ├── heart-half-outline.svg │ │ │ │ ├── heart-half-sharp.svg │ │ │ │ ├── heart-half.svg │ │ │ │ ├── heart-outline.svg │ │ │ │ ├── heart-sharp.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── help-buoy-outline.svg │ │ │ │ ├── help-buoy-sharp.svg │ │ │ │ ├── help-buoy.svg │ │ │ │ ├── help-circle-outline.svg │ │ │ │ ├── help-circle-sharp.svg │ │ │ │ ├── help-circle.svg │ │ │ │ ├── help-outline.svg │ │ │ │ ├── help-sharp.svg │ │ │ │ ├── help.svg │ │ │ │ ├── home-outline.svg │ │ │ │ ├── home-sharp.svg │ │ │ │ ├── home.svg │ │ │ │ ├── hourglass-outline.svg │ │ │ │ ├── hourglass-sharp.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── ice-cream-outline.svg │ │ │ │ ├── ice-cream-sharp.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── image-outline.svg │ │ │ │ ├── image-sharp.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images-outline.svg │ │ │ │ ├── images-sharp.svg │ │ │ │ ├── images.svg │ │ │ │ ├── infinite-outline.svg │ │ │ │ ├── infinite-sharp.svg │ │ │ │ ├── infinite.svg │ │ │ │ ├── information-circle-outline.svg │ │ │ │ ├── information-circle-sharp.svg │ │ │ │ ├── information-circle.svg │ │ │ │ ├── information-outline.svg │ │ │ │ ├── information-sharp.svg │ │ │ │ ├── information.svg │ │ │ │ ├── journal-outline.svg │ │ │ │ ├── journal-sharp.svg │ │ │ │ ├── journal.svg │ │ │ │ ├── key-outline.svg │ │ │ │ ├── key-sharp.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keypad-outline.svg │ │ │ │ ├── keypad-sharp.svg │ │ │ │ ├── keypad.svg │ │ │ │ ├── language-outline.svg │ │ │ │ ├── language-sharp.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-outline.svg │ │ │ │ ├── laptop-sharp.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── layers-outline.svg │ │ │ │ ├── layers-sharp.svg │ │ │ │ ├── layers.svg │ │ │ │ ├── leaf-outline.svg │ │ │ │ ├── leaf-sharp.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── library-outline.svg │ │ │ │ ├── library-sharp.svg │ │ │ │ ├── library.svg │ │ │ │ ├── link-outline.svg │ │ │ │ ├── link-sharp.svg │ │ │ │ ├── link.svg │ │ │ │ ├── list-circle-outline.svg │ │ │ │ ├── list-circle-sharp.svg │ │ │ │ ├── list-circle.svg │ │ │ │ ├── list-outline.svg │ │ │ │ ├── list-sharp.svg │ │ │ │ ├── list.svg │ │ │ │ ├── locate-outline.svg │ │ │ │ ├── locate-sharp.svg │ │ │ │ ├── locate.svg │ │ │ │ ├── location-outline.svg │ │ │ │ ├── location-sharp.svg │ │ │ │ ├── location.svg │ │ │ │ ├── lock-closed-outline.svg │ │ │ │ ├── lock-closed-sharp.svg │ │ │ │ ├── lock-closed.svg │ │ │ │ ├── lock-open-outline.svg │ │ │ │ ├── lock-open-sharp.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── log-in-outline.svg │ │ │ │ ├── log-in-sharp.svg │ │ │ │ ├── log-in.svg │ │ │ │ ├── log-out-outline.svg │ │ │ │ ├── log-out-sharp.svg │ │ │ │ ├── log-out.svg │ │ │ │ ├── logo-amazon.svg │ │ │ │ ├── logo-amplify.svg │ │ │ │ ├── logo-android.svg │ │ │ │ ├── logo-angular.svg │ │ │ │ ├── logo-apple-appstore.svg │ │ │ │ ├── logo-apple.svg │ │ │ │ ├── logo-behance.svg │ │ │ │ ├── logo-bitbucket.svg │ │ │ │ ├── logo-bitcoin.svg │ │ │ │ ├── logo-buffer.svg │ │ │ │ ├── logo-capacitor.svg │ │ │ │ ├── logo-chrome.svg │ │ │ │ ├── logo-closed-captioning.svg │ │ │ │ ├── logo-codepen.svg │ │ │ │ ├── logo-css3.svg │ │ │ │ ├── logo-designernews.svg │ │ │ │ ├── logo-docker.svg │ │ │ │ ├── logo-dribbble.svg │ │ │ │ ├── logo-dropbox.svg │ │ │ │ ├── logo-edge.svg │ │ │ │ ├── logo-electron.svg │ │ │ │ ├── logo-euro.svg │ │ │ │ ├── logo-facebook.svg │ │ │ │ ├── logo-firebase.svg │ │ │ │ ├── logo-firefox.svg │ │ │ │ ├── logo-flickr.svg │ │ │ │ ├── logo-foursquare.svg │ │ │ │ ├── logo-github.svg │ │ │ │ ├── logo-gitlab.svg │ │ │ │ ├── logo-google-playstore.svg │ │ │ │ ├── logo-google.svg │ │ │ │ ├── logo-hackernews.svg │ │ │ │ ├── logo-html5.svg │ │ │ │ ├── logo-instagram.svg │ │ │ │ ├── logo-ionic.svg │ │ │ │ ├── logo-ionitron.svg │ │ │ │ ├── logo-javascript.svg │ │ │ │ ├── logo-laravel.svg │ │ │ │ ├── logo-linkedin.svg │ │ │ │ ├── logo-markdown.svg │ │ │ │ ├── logo-medium.svg │ │ │ │ ├── logo-no-smoking.svg │ │ │ │ ├── logo-nodejs.svg │ │ │ │ ├── logo-npm.svg │ │ │ │ ├── logo-octocat.svg │ │ │ │ ├── logo-paypal.svg │ │ │ │ ├── logo-pinterest.svg │ │ │ │ ├── logo-playstation.svg │ │ │ │ ├── logo-pwa.svg │ │ │ │ ├── logo-python.svg │ │ │ │ ├── logo-react.svg │ │ │ │ ├── logo-reddit.svg │ │ │ │ ├── logo-rss.svg │ │ │ │ ├── logo-sass.svg │ │ │ │ ├── logo-skype.svg │ │ │ │ ├── logo-slack.svg │ │ │ │ ├── logo-snapchat.svg │ │ │ │ ├── logo-soundcloud.svg │ │ │ │ ├── logo-stackoverflow.svg │ │ │ │ ├── logo-steam.svg │ │ │ │ ├── logo-stencil.svg │ │ │ │ ├── logo-tiktok.svg │ │ │ │ ├── logo-tumblr.svg │ │ │ │ ├── logo-tux.svg │ │ │ │ ├── logo-twitch.svg │ │ │ │ ├── logo-twitter.svg │ │ │ │ ├── logo-usd.svg │ │ │ │ ├── logo-venmo.svg │ │ │ │ ├── logo-vimeo.svg │ │ │ │ ├── logo-vk.svg │ │ │ │ ├── logo-vue.svg │ │ │ │ ├── logo-web-component.svg │ │ │ │ ├── logo-whatsapp.svg │ │ │ │ ├── logo-windows.svg │ │ │ │ ├── logo-wordpress.svg │ │ │ │ ├── logo-xbox.svg │ │ │ │ ├── logo-xing.svg │ │ │ │ ├── logo-yahoo.svg │ │ │ │ ├── logo-yen.svg │ │ │ │ ├── logo-youtube.svg │ │ │ │ ├── magnet-outline.svg │ │ │ │ ├── magnet-sharp.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-open-outline.svg │ │ │ │ ├── mail-open-sharp.svg │ │ │ │ ├── mail-open.svg │ │ │ │ ├── mail-outline.svg │ │ │ │ ├── mail-sharp.svg │ │ │ │ ├── mail-unread-outline.svg │ │ │ │ ├── mail-unread-sharp.svg │ │ │ │ ├── mail-unread.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── male-female-outline.svg │ │ │ │ ├── male-female-sharp.svg │ │ │ │ ├── male-female.svg │ │ │ │ ├── male-outline.svg │ │ │ │ ├── male-sharp.svg │ │ │ │ ├── male.svg │ │ │ │ ├── man-outline.svg │ │ │ │ ├── man-sharp.svg │ │ │ │ ├── man.svg │ │ │ │ ├── map-outline.svg │ │ │ │ ├── map-sharp.svg │ │ │ │ ├── map.svg │ │ │ │ ├── medal-outline.svg │ │ │ │ ├── medal-sharp.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medical-outline.svg │ │ │ │ ├── medical-sharp.svg │ │ │ │ ├── medical.svg │ │ │ │ ├── medkit-outline.svg │ │ │ │ ├── medkit-sharp.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── megaphone-outline.svg │ │ │ │ ├── megaphone-sharp.svg │ │ │ │ ├── megaphone.svg │ │ │ │ ├── menu-outline.svg │ │ │ │ ├── menu-sharp.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── mic-circle-outline.svg │ │ │ │ ├── mic-circle-sharp.svg │ │ │ │ ├── mic-circle.svg │ │ │ │ ├── mic-off-circle-outline.svg │ │ │ │ ├── mic-off-circle-sharp.svg │ │ │ │ ├── mic-off-circle.svg │ │ │ │ ├── mic-off-outline.svg │ │ │ │ ├── mic-off-sharp.svg │ │ │ │ ├── mic-off.svg │ │ │ │ ├── mic-outline.svg │ │ │ │ ├── mic-sharp.svg │ │ │ │ ├── mic.svg │ │ │ │ ├── moon-outline.svg │ │ │ │ ├── moon-sharp.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── move-outline.svg │ │ │ │ ├── move-sharp.svg │ │ │ │ ├── move.svg │ │ │ │ ├── musical-note-outline.svg │ │ │ │ ├── musical-note-sharp.svg │ │ │ │ ├── musical-note.svg │ │ │ │ ├── musical-notes-outline.svg │ │ │ │ ├── musical-notes-sharp.svg │ │ │ │ ├── musical-notes.svg │ │ │ │ ├── navigate-circle-outline.svg │ │ │ │ ├── navigate-circle-sharp.svg │ │ │ │ ├── navigate-circle.svg │ │ │ │ ├── navigate-outline.svg │ │ │ │ ├── navigate-sharp.svg │ │ │ │ ├── navigate.svg │ │ │ │ ├── newspaper-outline.svg │ │ │ │ ├── newspaper-sharp.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── notifications-circle-outline.svg │ │ │ │ ├── notifications-circle-sharp.svg │ │ │ │ ├── notifications-circle.svg │ │ │ │ ├── notifications-off-circle-outline.svg │ │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ │ ├── notifications-off-circle.svg │ │ │ │ ├── notifications-off-outline.svg │ │ │ │ ├── notifications-off-sharp.svg │ │ │ │ ├── notifications-off.svg │ │ │ │ ├── notifications-outline.svg │ │ │ │ ├── notifications-sharp.svg │ │ │ │ ├── notifications.svg │ │ │ │ ├── nuclear-outline.svg │ │ │ │ ├── nuclear-sharp.svg │ │ │ │ ├── nuclear.svg │ │ │ │ ├── nutrition-outline.svg │ │ │ │ ├── nutrition-sharp.svg │ │ │ │ ├── nutrition.svg │ │ │ │ ├── open-outline.svg │ │ │ │ ├── open-sharp.svg │ │ │ │ ├── open.svg │ │ │ │ ├── options-outline.svg │ │ │ │ ├── options-sharp.svg │ │ │ │ ├── options.svg │ │ │ │ ├── paper-plane-outline.svg │ │ │ │ ├── paper-plane-sharp.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── partly-sunny-outline.svg │ │ │ │ ├── partly-sunny-sharp.svg │ │ │ │ ├── partly-sunny.svg │ │ │ │ ├── pause-circle-outline.svg │ │ │ │ ├── pause-circle-sharp.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause-outline.svg │ │ │ │ ├── pause-sharp.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw-outline.svg │ │ │ │ ├── paw-sharp.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── pencil-outline.svg │ │ │ │ ├── pencil-sharp.svg │ │ │ │ ├── pencil.svg │ │ │ │ ├── people-circle-outline.svg │ │ │ │ ├── people-circle-sharp.svg │ │ │ │ ├── people-circle.svg │ │ │ │ ├── people-outline.svg │ │ │ │ ├── people-sharp.svg │ │ │ │ ├── people.svg │ │ │ │ ├── person-add-outline.svg │ │ │ │ ├── person-add-sharp.svg │ │ │ │ ├── person-add.svg │ │ │ │ ├── person-circle-outline.svg │ │ │ │ ├── person-circle-sharp.svg │ │ │ │ ├── person-circle.svg │ │ │ │ ├── person-outline.svg │ │ │ │ ├── person-remove-outline.svg │ │ │ │ ├── person-remove-sharp.svg │ │ │ │ ├── person-remove.svg │ │ │ │ ├── person-sharp.svg │ │ │ │ ├── person.svg │ │ │ │ ├── phone-landscape-outline.svg │ │ │ │ ├── phone-landscape-sharp.svg │ │ │ │ ├── phone-landscape.svg │ │ │ │ ├── phone-portrait-outline.svg │ │ │ │ ├── phone-portrait-sharp.svg │ │ │ │ ├── phone-portrait.svg │ │ │ │ ├── pie-chart-outline.svg │ │ │ │ ├── pie-chart-sharp.svg │ │ │ │ ├── pie-chart.svg │ │ │ │ ├── pin-outline.svg │ │ │ │ ├── pin-sharp.svg │ │ │ │ ├── pin.svg │ │ │ │ ├── pint-outline.svg │ │ │ │ ├── pint-sharp.svg │ │ │ │ ├── pint.svg │ │ │ │ ├── pizza-outline.svg │ │ │ │ ├── pizza-sharp.svg │ │ │ │ ├── pizza.svg │ │ │ │ ├── planet-outline.svg │ │ │ │ ├── planet-sharp.svg │ │ │ │ ├── planet.svg │ │ │ │ ├── play-back-circle-outline.svg │ │ │ │ ├── play-back-circle-sharp.svg │ │ │ │ ├── play-back-circle.svg │ │ │ │ ├── play-back-outline.svg │ │ │ │ ├── play-back-sharp.svg │ │ │ │ ├── play-back.svg │ │ │ │ ├── play-circle-outline.svg │ │ │ │ ├── play-circle-sharp.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play-forward-circle-outline.svg │ │ │ │ ├── play-forward-circle-sharp.svg │ │ │ │ ├── play-forward-circle.svg │ │ │ │ ├── play-forward-outline.svg │ │ │ │ ├── play-forward-sharp.svg │ │ │ │ ├── play-forward.svg │ │ │ │ ├── play-outline.svg │ │ │ │ ├── play-sharp.svg │ │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ │ ├── play-skip-back-circle.svg │ │ │ │ ├── play-skip-back-outline.svg │ │ │ │ ├── play-skip-back-sharp.svg │ │ │ │ ├── play-skip-back.svg │ │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ │ ├── play-skip-forward-circle.svg │ │ │ │ ├── play-skip-forward-outline.svg │ │ │ │ ├── play-skip-forward-sharp.svg │ │ │ │ ├── play-skip-forward.svg │ │ │ │ ├── play.svg │ │ │ │ ├── podium-outline.svg │ │ │ │ ├── podium-sharp.svg │ │ │ │ ├── podium.svg │ │ │ │ ├── power-outline.svg │ │ │ │ ├── power-sharp.svg │ │ │ │ ├── power.svg │ │ │ │ ├── pricetag-outline.svg │ │ │ │ ├── pricetag-sharp.svg │ │ │ │ ├── pricetag.svg │ │ │ │ ├── pricetags-outline.svg │ │ │ │ ├── pricetags-sharp.svg │ │ │ │ ├── pricetags.svg │ │ │ │ ├── print-outline.svg │ │ │ │ ├── print-sharp.svg │ │ │ │ ├── print.svg │ │ │ │ ├── pulse-outline.svg │ │ │ │ ├── pulse-sharp.svg │ │ │ │ ├── pulse.svg │ │ │ │ ├── push-outline.svg │ │ │ │ ├── push-sharp.svg │ │ │ │ ├── push.svg │ │ │ │ ├── qr-code-outline.svg │ │ │ │ ├── qr-code-sharp.svg │ │ │ │ ├── qr-code.svg │ │ │ │ ├── radio-button-off-outline.svg │ │ │ │ ├── radio-button-off-sharp.svg │ │ │ │ ├── radio-button-off.svg │ │ │ │ ├── radio-button-on-outline.svg │ │ │ │ ├── radio-button-on-sharp.svg │ │ │ │ ├── radio-button-on.svg │ │ │ │ ├── radio-outline.svg │ │ │ │ ├── radio-sharp.svg │ │ │ │ ├── radio.svg │ │ │ │ ├── rainy-outline.svg │ │ │ │ ├── rainy-sharp.svg │ │ │ │ ├── rainy.svg │ │ │ │ ├── reader-outline.svg │ │ │ │ ├── reader-sharp.svg │ │ │ │ ├── reader.svg │ │ │ │ ├── receipt-outline.svg │ │ │ │ ├── receipt-sharp.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recording-outline.svg │ │ │ │ ├── recording-sharp.svg │ │ │ │ ├── recording.svg │ │ │ │ ├── refresh-circle-outline.svg │ │ │ │ ├── refresh-circle-sharp.svg │ │ │ │ ├── refresh-circle.svg │ │ │ │ ├── refresh-outline.svg │ │ │ │ ├── refresh-sharp.svg │ │ │ │ ├── refresh.svg │ │ │ │ ├── reload-circle-outline.svg │ │ │ │ ├── reload-circle-sharp.svg │ │ │ │ ├── reload-circle.svg │ │ │ │ ├── reload-outline.svg │ │ │ │ ├── reload-sharp.svg │ │ │ │ ├── reload.svg │ │ │ │ ├── remove-circle-outline.svg │ │ │ │ ├── remove-circle-sharp.svg │ │ │ │ ├── remove-circle.svg │ │ │ │ ├── remove-outline.svg │ │ │ │ ├── remove-sharp.svg │ │ │ │ ├── remove.svg │ │ │ │ ├── reorder-four-outline.svg │ │ │ │ ├── reorder-four-sharp.svg │ │ │ │ ├── reorder-four.svg │ │ │ │ ├── reorder-three-outline.svg │ │ │ │ ├── reorder-three-sharp.svg │ │ │ │ ├── reorder-three.svg │ │ │ │ ├── reorder-two-outline.svg │ │ │ │ ├── reorder-two-sharp.svg │ │ │ │ ├── reorder-two.svg │ │ │ │ ├── repeat-outline.svg │ │ │ │ ├── repeat-sharp.svg │ │ │ │ ├── repeat.svg │ │ │ │ ├── resize-outline.svg │ │ │ │ ├── resize-sharp.svg │ │ │ │ ├── resize.svg │ │ │ │ ├── restaurant-outline.svg │ │ │ │ ├── restaurant-sharp.svg │ │ │ │ ├── restaurant.svg │ │ │ │ ├── return-down-back-outline.svg │ │ │ │ ├── return-down-back-sharp.svg │ │ │ │ ├── return-down-back.svg │ │ │ │ ├── return-down-forward-outline.svg │ │ │ │ ├── return-down-forward-sharp.svg │ │ │ │ ├── return-down-forward.svg │ │ │ │ ├── return-up-back-outline.svg │ │ │ │ ├── return-up-back-sharp.svg │ │ │ │ ├── return-up-back.svg │ │ │ │ ├── return-up-forward-outline.svg │ │ │ │ ├── return-up-forward-sharp.svg │ │ │ │ ├── return-up-forward.svg │ │ │ │ ├── ribbon-outline.svg │ │ │ │ ├── ribbon-sharp.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── rocket-outline.svg │ │ │ │ ├── rocket-sharp.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── rose-outline.svg │ │ │ │ ├── rose-sharp.svg │ │ │ │ ├── rose.svg │ │ │ │ ├── sad-outline.svg │ │ │ │ ├── sad-sharp.svg │ │ │ │ ├── sad.svg │ │ │ │ ├── save-outline.svg │ │ │ │ ├── save-sharp.svg │ │ │ │ ├── save.svg │ │ │ │ ├── scan-circle-outline.svg │ │ │ │ ├── scan-circle-sharp.svg │ │ │ │ ├── scan-circle.svg │ │ │ │ ├── scan-outline.svg │ │ │ │ ├── scan-sharp.svg │ │ │ │ ├── scan.svg │ │ │ │ ├── school-outline.svg │ │ │ │ ├── school-sharp.svg │ │ │ │ ├── school.svg │ │ │ │ ├── search-circle-outline.svg │ │ │ │ ├── search-circle-sharp.svg │ │ │ │ ├── search-circle.svg │ │ │ │ ├── search-outline.svg │ │ │ │ ├── search-sharp.svg │ │ │ │ ├── search.svg │ │ │ │ ├── send-outline.svg │ │ │ │ ├── send-sharp.svg │ │ │ │ ├── send.svg │ │ │ │ ├── server-outline.svg │ │ │ │ ├── server-sharp.svg │ │ │ │ ├── server.svg │ │ │ │ ├── settings-outline.svg │ │ │ │ ├── settings-sharp.svg │ │ │ │ ├── settings.svg │ │ │ │ ├── shapes-outline.svg │ │ │ │ ├── shapes-sharp.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-outline.svg │ │ │ │ ├── share-sharp.svg │ │ │ │ ├── share-social-outline.svg │ │ │ │ ├── share-social-sharp.svg │ │ │ │ ├── share-social.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shield-checkmark-outline.svg │ │ │ │ ├── shield-checkmark-sharp.svg │ │ │ │ ├── shield-checkmark.svg │ │ │ │ ├── shield-outline.svg │ │ │ │ ├── shield-sharp.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── shirt-outline.svg │ │ │ │ ├── shirt-sharp.svg │ │ │ │ ├── shirt.svg │ │ │ │ ├── shuffle-outline.svg │ │ │ │ ├── shuffle-sharp.svg │ │ │ │ ├── shuffle.svg │ │ │ │ ├── skull-outline.svg │ │ │ │ ├── skull-sharp.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── snow-outline.svg │ │ │ │ ├── snow-sharp.svg │ │ │ │ ├── snow.svg │ │ │ │ ├── speedometer-outline.svg │ │ │ │ ├── speedometer-sharp.svg │ │ │ │ ├── speedometer.svg │ │ │ │ ├── square-outline.svg │ │ │ │ ├── square-sharp.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half-outline.svg │ │ │ │ ├── star-half-sharp.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-outline.svg │ │ │ │ ├── star-sharp.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stats-chart-outline.svg │ │ │ │ ├── stats-chart-sharp.svg │ │ │ │ ├── stats-chart.svg │ │ │ │ ├── stop-circle-outline.svg │ │ │ │ ├── stop-circle-sharp.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop-outline.svg │ │ │ │ ├── stop-sharp.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch-outline.svg │ │ │ │ ├── stopwatch-sharp.svg │ │ │ │ ├── stopwatch.svg │ │ │ │ ├── subway-outline.svg │ │ │ │ ├── subway-sharp.svg │ │ │ │ ├── subway.svg │ │ │ │ ├── sunny-outline.svg │ │ │ │ ├── sunny-sharp.svg │ │ │ │ ├── sunny.svg │ │ │ │ ├── swap-horizontal-outline.svg │ │ │ │ ├── swap-horizontal-sharp.svg │ │ │ │ ├── swap-horizontal.svg │ │ │ │ ├── swap-vertical-outline.svg │ │ │ │ ├── swap-vertical-sharp.svg │ │ │ │ ├── swap-vertical.svg │ │ │ │ ├── sync-circle-outline.svg │ │ │ │ ├── sync-circle-sharp.svg │ │ │ │ ├── sync-circle.svg │ │ │ │ ├── sync-outline.svg │ │ │ │ ├── sync-sharp.svg │ │ │ │ ├── sync.svg │ │ │ │ ├── tablet-landscape-outline.svg │ │ │ │ ├── tablet-landscape-sharp.svg │ │ │ │ ├── tablet-landscape.svg │ │ │ │ ├── tablet-portrait-outline.svg │ │ │ │ ├── tablet-portrait-sharp.svg │ │ │ │ ├── tablet-portrait.svg │ │ │ │ ├── tennisball-outline.svg │ │ │ │ ├── tennisball-sharp.svg │ │ │ │ ├── tennisball.svg │ │ │ │ ├── terminal-outline.svg │ │ │ │ ├── terminal-sharp.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-outline.svg │ │ │ │ ├── text-sharp.svg │ │ │ │ ├── text.svg │ │ │ │ ├── thermometer-outline.svg │ │ │ │ ├── thermometer-sharp.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down-outline.svg │ │ │ │ ├── thumbs-down-sharp.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up-outline.svg │ │ │ │ ├── thumbs-up-sharp.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thunderstorm-outline.svg │ │ │ │ ├── thunderstorm-sharp.svg │ │ │ │ ├── thunderstorm.svg │ │ │ │ ├── time-outline.svg │ │ │ │ ├── time-sharp.svg │ │ │ │ ├── time.svg │ │ │ │ ├── timer-outline.svg │ │ │ │ ├── timer-sharp.svg │ │ │ │ ├── timer.svg │ │ │ │ ├── today-outline.svg │ │ │ │ ├── today-sharp.svg │ │ │ │ ├── today.svg │ │ │ │ ├── toggle-outline.svg │ │ │ │ ├── toggle-sharp.svg │ │ │ │ ├── toggle.svg │ │ │ │ ├── trail-sign-outline.svg │ │ │ │ ├── trail-sign-sharp.svg │ │ │ │ ├── trail-sign.svg │ │ │ │ ├── train-outline.svg │ │ │ │ ├── train-sharp.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender-outline.svg │ │ │ │ ├── transgender-sharp.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-bin-outline.svg │ │ │ │ ├── trash-bin-sharp.svg │ │ │ │ ├── trash-bin.svg │ │ │ │ ├── trash-outline.svg │ │ │ │ ├── trash-sharp.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── trending-down-outline.svg │ │ │ │ ├── trending-down-sharp.svg │ │ │ │ ├── trending-down.svg │ │ │ │ ├── trending-up-outline.svg │ │ │ │ ├── trending-up-sharp.svg │ │ │ │ ├── trending-up.svg │ │ │ │ ├── triangle-outline.svg │ │ │ │ ├── triangle-sharp.svg │ │ │ │ ├── triangle.svg │ │ │ │ ├── trophy-outline.svg │ │ │ │ ├── trophy-sharp.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── tv-outline.svg │ │ │ │ ├── tv-sharp.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-outline.svg │ │ │ │ ├── umbrella-sharp.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── videocam-outline.svg │ │ │ │ ├── videocam-sharp.svg │ │ │ │ ├── videocam.svg │ │ │ │ ├── volume-high-outline.svg │ │ │ │ ├── volume-high-sharp.svg │ │ │ │ ├── volume-high.svg │ │ │ │ ├── volume-low-outline.svg │ │ │ │ ├── volume-low-sharp.svg │ │ │ │ ├── volume-low.svg │ │ │ │ ├── volume-medium-outline.svg │ │ │ │ ├── volume-medium-sharp.svg │ │ │ │ ├── volume-medium.svg │ │ │ │ ├── volume-mute-outline.svg │ │ │ │ ├── volume-mute-sharp.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off-outline.svg │ │ │ │ ├── volume-off-sharp.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── walk-outline.svg │ │ │ │ ├── walk-sharp.svg │ │ │ │ ├── walk.svg │ │ │ │ ├── wallet-outline.svg │ │ │ │ ├── wallet-sharp.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warning-outline.svg │ │ │ │ ├── warning-sharp.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── watch-outline.svg │ │ │ │ ├── watch-sharp.svg │ │ │ │ ├── watch.svg │ │ │ │ ├── water-outline.svg │ │ │ │ ├── water-sharp.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wifi-outline.svg │ │ │ │ ├── wifi-sharp.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wine-outline.svg │ │ │ │ ├── wine-sharp.svg │ │ │ │ ├── wine.svg │ │ │ │ ├── woman-outline.svg │ │ │ │ ├── woman-sharp.svg │ │ │ │ └── woman.svg │ │ │ ├── loader │ │ │ ├── cdn.js │ │ │ ├── index.cjs.js │ │ │ ├── index.es2017.mjs │ │ │ ├── index.mjs │ │ │ └── node-main.js │ │ │ └── svg │ │ │ ├── add-circle-outline.svg │ │ │ ├── add-circle-sharp.svg │ │ │ ├── add-circle.svg │ │ │ ├── add-outline.svg │ │ │ ├── add-sharp.svg │ │ │ ├── add.svg │ │ │ ├── airplane-outline.svg │ │ │ ├── airplane-sharp.svg │ │ │ ├── airplane.svg │ │ │ ├── alarm-outline.svg │ │ │ ├── alarm-sharp.svg │ │ │ ├── alarm.svg │ │ │ ├── albums-outline.svg │ │ │ ├── albums-sharp.svg │ │ │ ├── albums.svg │ │ │ ├── alert-circle-outline.svg │ │ │ ├── alert-circle-sharp.svg │ │ │ ├── alert-circle.svg │ │ │ ├── alert-outline.svg │ │ │ ├── alert-sharp.svg │ │ │ ├── alert.svg │ │ │ ├── american-football-outline.svg │ │ │ ├── american-football-sharp.svg │ │ │ ├── american-football.svg │ │ │ ├── analytics-outline.svg │ │ │ ├── analytics-sharp.svg │ │ │ ├── analytics.svg │ │ │ ├── aperture-outline.svg │ │ │ ├── aperture-sharp.svg │ │ │ ├── aperture.svg │ │ │ ├── apps-outline.svg │ │ │ ├── apps-sharp.svg │ │ │ ├── apps.svg │ │ │ ├── archive-outline.svg │ │ │ ├── archive-sharp.svg │ │ │ ├── archive.svg │ │ │ ├── arrow-back-circle-outline.svg │ │ │ ├── arrow-back-circle-sharp.svg │ │ │ ├── arrow-back-circle.svg │ │ │ ├── arrow-back-outline.svg │ │ │ ├── arrow-back-sharp.svg │ │ │ ├── arrow-back.svg │ │ │ ├── arrow-down-circle-outline.svg │ │ │ ├── arrow-down-circle-sharp.svg │ │ │ ├── arrow-down-circle.svg │ │ │ ├── arrow-down-outline.svg │ │ │ ├── arrow-down-sharp.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-forward-circle-outline.svg │ │ │ ├── arrow-forward-circle-sharp.svg │ │ │ ├── arrow-forward-circle.svg │ │ │ ├── arrow-forward-outline.svg │ │ │ ├── arrow-forward-sharp.svg │ │ │ ├── arrow-forward.svg │ │ │ ├── arrow-redo-circle-outline.svg │ │ │ ├── arrow-redo-circle-sharp.svg │ │ │ ├── arrow-redo-circle.svg │ │ │ ├── arrow-redo-outline.svg │ │ │ ├── arrow-redo-sharp.svg │ │ │ ├── arrow-redo.svg │ │ │ ├── arrow-undo-circle-outline.svg │ │ │ ├── arrow-undo-circle-sharp.svg │ │ │ ├── arrow-undo-circle.svg │ │ │ ├── arrow-undo-outline.svg │ │ │ ├── arrow-undo-sharp.svg │ │ │ ├── arrow-undo.svg │ │ │ ├── arrow-up-circle-outline.svg │ │ │ ├── arrow-up-circle-sharp.svg │ │ │ ├── arrow-up-circle.svg │ │ │ ├── arrow-up-outline.svg │ │ │ ├── arrow-up-sharp.svg │ │ │ ├── arrow-up.svg │ │ │ ├── at-circle-outline.svg │ │ │ ├── at-circle-sharp.svg │ │ │ ├── at-circle.svg │ │ │ ├── at-outline.svg │ │ │ ├── at-sharp.svg │ │ │ ├── at.svg │ │ │ ├── attach-outline.svg │ │ │ ├── attach-sharp.svg │ │ │ ├── attach.svg │ │ │ ├── backspace-outline.svg │ │ │ ├── backspace-sharp.svg │ │ │ ├── backspace.svg │ │ │ ├── bandage-outline.svg │ │ │ ├── bandage-sharp.svg │ │ │ ├── bandage.svg │ │ │ ├── bar-chart-outline.svg │ │ │ ├── bar-chart-sharp.svg │ │ │ ├── bar-chart.svg │ │ │ ├── barbell-outline.svg │ │ │ ├── barbell-sharp.svg │ │ │ ├── barbell.svg │ │ │ ├── barcode-outline.svg │ │ │ ├── barcode-sharp.svg │ │ │ ├── barcode.svg │ │ │ ├── baseball-outline.svg │ │ │ ├── baseball-sharp.svg │ │ │ ├── baseball.svg │ │ │ ├── basket-outline.svg │ │ │ ├── basket-sharp.svg │ │ │ ├── basket.svg │ │ │ ├── basketball-outline.svg │ │ │ ├── basketball-sharp.svg │ │ │ ├── basketball.svg │ │ │ ├── battery-charging-outline.svg │ │ │ ├── battery-charging-sharp.svg │ │ │ ├── battery-charging.svg │ │ │ ├── battery-dead-outline.svg │ │ │ ├── battery-dead-sharp.svg │ │ │ ├── battery-dead.svg │ │ │ ├── battery-full-outline.svg │ │ │ ├── battery-full-sharp.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half-outline.svg │ │ │ ├── battery-half-sharp.svg │ │ │ ├── battery-half.svg │ │ │ ├── beaker-outline.svg │ │ │ ├── beaker-sharp.svg │ │ │ ├── beaker.svg │ │ │ ├── bed-outline.svg │ │ │ ├── bed-sharp.svg │ │ │ ├── bed.svg │ │ │ ├── beer-outline.svg │ │ │ ├── beer-sharp.svg │ │ │ ├── beer.svg │ │ │ ├── bicycle-outline.svg │ │ │ ├── bicycle-sharp.svg │ │ │ ├── bicycle.svg │ │ │ ├── bluetooth-outline.svg │ │ │ ├── bluetooth-sharp.svg │ │ │ ├── bluetooth.svg │ │ │ ├── boat-outline.svg │ │ │ ├── boat-sharp.svg │ │ │ ├── boat.svg │ │ │ ├── body-outline.svg │ │ │ ├── body-sharp.svg │ │ │ ├── body.svg │ │ │ ├── bonfire-outline.svg │ │ │ ├── bonfire-sharp.svg │ │ │ ├── bonfire.svg │ │ │ ├── book-outline.svg │ │ │ ├── book-sharp.svg │ │ │ ├── book.svg │ │ │ ├── bookmark-outline.svg │ │ │ ├── bookmark-sharp.svg │ │ │ ├── bookmark.svg │ │ │ ├── bookmarks-outline.svg │ │ │ ├── bookmarks-sharp.svg │ │ │ ├── bookmarks.svg │ │ │ ├── briefcase-outline.svg │ │ │ ├── briefcase-sharp.svg │ │ │ ├── briefcase.svg │ │ │ ├── browsers-outline.svg │ │ │ ├── browsers-sharp.svg │ │ │ ├── browsers.svg │ │ │ ├── brush-outline.svg │ │ │ ├── brush-sharp.svg │ │ │ ├── brush.svg │ │ │ ├── bug-outline.svg │ │ │ ├── bug-sharp.svg │ │ │ ├── bug.svg │ │ │ ├── build-outline.svg │ │ │ ├── build-sharp.svg │ │ │ ├── build.svg │ │ │ ├── bulb-outline.svg │ │ │ ├── bulb-sharp.svg │ │ │ ├── bulb.svg │ │ │ ├── bus-outline.svg │ │ │ ├── bus-sharp.svg │ │ │ ├── bus.svg │ │ │ ├── business-outline.svg │ │ │ ├── business-sharp.svg │ │ │ ├── business.svg │ │ │ ├── cafe-outline.svg │ │ │ ├── cafe-sharp.svg │ │ │ ├── cafe.svg │ │ │ ├── calculator-outline.svg │ │ │ ├── calculator-sharp.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-outline.svg │ │ │ ├── calendar-sharp.svg │ │ │ ├── calendar.svg │ │ │ ├── call-outline.svg │ │ │ ├── call-sharp.svg │ │ │ ├── call.svg │ │ │ ├── camera-outline.svg │ │ │ ├── camera-reverse-outline.svg │ │ │ ├── camera-reverse-sharp.svg │ │ │ ├── camera-reverse.svg │ │ │ ├── camera-sharp.svg │ │ │ ├── camera.svg │ │ │ ├── car-outline.svg │ │ │ ├── car-sharp.svg │ │ │ ├── car-sport-outline.svg │ │ │ ├── car-sport-sharp.svg │ │ │ ├── car-sport.svg │ │ │ ├── car.svg │ │ │ ├── card-outline.svg │ │ │ ├── card-sharp.svg │ │ │ ├── card.svg │ │ │ ├── caret-back-circle-outline.svg │ │ │ ├── caret-back-circle-sharp.svg │ │ │ ├── caret-back-circle.svg │ │ │ ├── caret-back-outline.svg │ │ │ ├── caret-back-sharp.svg │ │ │ ├── caret-back.svg │ │ │ ├── caret-down-circle-outline.svg │ │ │ ├── caret-down-circle-sharp.svg │ │ │ ├── caret-down-circle.svg │ │ │ ├── caret-down-outline.svg │ │ │ ├── caret-down-sharp.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-forward-circle-outline.svg │ │ │ ├── caret-forward-circle-sharp.svg │ │ │ ├── caret-forward-circle.svg │ │ │ ├── caret-forward-outline.svg │ │ │ ├── caret-forward-sharp.svg │ │ │ ├── caret-forward.svg │ │ │ ├── caret-up-circle-outline.svg │ │ │ ├── caret-up-circle-sharp.svg │ │ │ ├── caret-up-circle.svg │ │ │ ├── caret-up-outline.svg │ │ │ ├── caret-up-sharp.svg │ │ │ ├── caret-up.svg │ │ │ ├── cart-outline.svg │ │ │ ├── cart-sharp.svg │ │ │ ├── cart.svg │ │ │ ├── cash-outline.svg │ │ │ ├── cash-sharp.svg │ │ │ ├── cash.svg │ │ │ ├── cellular-outline.svg │ │ │ ├── cellular-sharp.svg │ │ │ ├── cellular.svg │ │ │ ├── chatbox-ellipses-outline.svg │ │ │ ├── chatbox-ellipses-sharp.svg │ │ │ ├── chatbox-ellipses.svg │ │ │ ├── chatbox-outline.svg │ │ │ ├── chatbox-sharp.svg │ │ │ ├── chatbox.svg │ │ │ ├── chatbubble-ellipses-outline.svg │ │ │ ├── chatbubble-ellipses-sharp.svg │ │ │ ├── chatbubble-ellipses.svg │ │ │ ├── chatbubble-outline.svg │ │ │ ├── chatbubble-sharp.svg │ │ │ ├── chatbubble.svg │ │ │ ├── chatbubbles-outline.svg │ │ │ ├── chatbubbles-sharp.svg │ │ │ ├── chatbubbles.svg │ │ │ ├── checkbox-outline.svg │ │ │ ├── checkbox-sharp.svg │ │ │ ├── checkbox.svg │ │ │ ├── checkmark-circle-outline.svg │ │ │ ├── checkmark-circle-sharp.svg │ │ │ ├── checkmark-circle.svg │ │ │ ├── checkmark-done-circle-outline.svg │ │ │ ├── checkmark-done-circle-sharp.svg │ │ │ ├── checkmark-done-circle.svg │ │ │ ├── checkmark-done-outline.svg │ │ │ ├── checkmark-done-sharp.svg │ │ │ ├── checkmark-done.svg │ │ │ ├── checkmark-outline.svg │ │ │ ├── checkmark-sharp.svg │ │ │ ├── checkmark.svg │ │ │ ├── chevron-back-circle-outline.svg │ │ │ ├── chevron-back-circle-sharp.svg │ │ │ ├── chevron-back-circle.svg │ │ │ ├── chevron-back-outline.svg │ │ │ ├── chevron-back-sharp.svg │ │ │ ├── chevron-back.svg │ │ │ ├── chevron-down-circle-outline.svg │ │ │ ├── chevron-down-circle-sharp.svg │ │ │ ├── chevron-down-circle.svg │ │ │ ├── chevron-down-outline.svg │ │ │ ├── chevron-down-sharp.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-forward-circle-outline.svg │ │ │ ├── chevron-forward-circle-sharp.svg │ │ │ ├── chevron-forward-circle.svg │ │ │ ├── chevron-forward-outline.svg │ │ │ ├── chevron-forward-sharp.svg │ │ │ ├── chevron-forward.svg │ │ │ ├── chevron-up-circle-outline.svg │ │ │ ├── chevron-up-circle-sharp.svg │ │ │ ├── chevron-up-circle.svg │ │ │ ├── chevron-up-outline.svg │ │ │ ├── chevron-up-sharp.svg │ │ │ ├── chevron-up.svg │ │ │ ├── clipboard-outline.svg │ │ │ ├── clipboard-sharp.svg │ │ │ ├── clipboard.svg │ │ │ ├── close-circle-outline.svg │ │ │ ├── close-circle-sharp.svg │ │ │ ├── close-circle.svg │ │ │ ├── close-outline.svg │ │ │ ├── close-sharp.svg │ │ │ ├── close.svg │ │ │ ├── cloud-circle-outline.svg │ │ │ ├── cloud-circle-sharp.svg │ │ │ ├── cloud-circle.svg │ │ │ ├── cloud-done-outline.svg │ │ │ ├── cloud-done-sharp.svg │ │ │ ├── cloud-done.svg │ │ │ ├── cloud-download-outline.svg │ │ │ ├── cloud-download-sharp.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-offline-outline.svg │ │ │ ├── cloud-offline-sharp.svg │ │ │ ├── cloud-offline.svg │ │ │ ├── cloud-outline.svg │ │ │ ├── cloud-sharp.svg │ │ │ ├── cloud-upload-outline.svg │ │ │ ├── cloud-upload-sharp.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── cloudy-night-outline.svg │ │ │ ├── cloudy-night-sharp.svg │ │ │ ├── cloudy-night.svg │ │ │ ├── cloudy-outline.svg │ │ │ ├── cloudy-sharp.svg │ │ │ ├── cloudy.svg │ │ │ ├── code-download-outline.svg │ │ │ ├── code-download-sharp.svg │ │ │ ├── code-download.svg │ │ │ ├── code-outline.svg │ │ │ ├── code-sharp.svg │ │ │ ├── code-slash-outline.svg │ │ │ ├── code-slash-sharp.svg │ │ │ ├── code-slash.svg │ │ │ ├── code-working-outline.svg │ │ │ ├── code-working-sharp.svg │ │ │ ├── code-working.svg │ │ │ ├── code.svg │ │ │ ├── cog-outline.svg │ │ │ ├── cog-sharp.svg │ │ │ ├── cog.svg │ │ │ ├── color-fill-outline.svg │ │ │ ├── color-fill-sharp.svg │ │ │ ├── color-fill.svg │ │ │ ├── color-filter-outline.svg │ │ │ ├── color-filter-sharp.svg │ │ │ ├── color-filter.svg │ │ │ ├── color-palette-outline.svg │ │ │ ├── color-palette-sharp.svg │ │ │ ├── color-palette.svg │ │ │ ├── color-wand-outline.svg │ │ │ ├── color-wand-sharp.svg │ │ │ ├── color-wand.svg │ │ │ ├── compass-outline.svg │ │ │ ├── compass-sharp.svg │ │ │ ├── compass.svg │ │ │ ├── construct-outline.svg │ │ │ ├── construct-sharp.svg │ │ │ ├── construct.svg │ │ │ ├── contract-outline.svg │ │ │ ├── contract-sharp.svg │ │ │ ├── contract.svg │ │ │ ├── contrast-outline.svg │ │ │ ├── contrast-sharp.svg │ │ │ ├── contrast.svg │ │ │ ├── copy-outline.svg │ │ │ ├── copy-sharp.svg │ │ │ ├── copy.svg │ │ │ ├── create-outline.svg │ │ │ ├── create-sharp.svg │ │ │ ├── create.svg │ │ │ ├── crop-outline.svg │ │ │ ├── crop-sharp.svg │ │ │ ├── crop.svg │ │ │ ├── cube-outline.svg │ │ │ ├── cube-sharp.svg │ │ │ ├── cube.svg │ │ │ ├── cut-outline.svg │ │ │ ├── cut-sharp.svg │ │ │ ├── cut.svg │ │ │ ├── desktop-outline.svg │ │ │ ├── desktop-sharp.svg │ │ │ ├── desktop.svg │ │ │ ├── disc-outline.svg │ │ │ ├── disc-sharp.svg │ │ │ ├── disc.svg │ │ │ ├── document-attach-outline.svg │ │ │ ├── document-attach-sharp.svg │ │ │ ├── document-attach.svg │ │ │ ├── document-outline.svg │ │ │ ├── document-sharp.svg │ │ │ ├── document-text-outline.svg │ │ │ ├── document-text-sharp.svg │ │ │ ├── document-text.svg │ │ │ ├── document.svg │ │ │ ├── documents-outline.svg │ │ │ ├── documents-sharp.svg │ │ │ ├── documents.svg │ │ │ ├── download-outline.svg │ │ │ ├── download-sharp.svg │ │ │ ├── download.svg │ │ │ ├── duplicate-outline.svg │ │ │ ├── duplicate-sharp.svg │ │ │ ├── duplicate.svg │ │ │ ├── ear-outline.svg │ │ │ ├── ear-sharp.svg │ │ │ ├── ear.svg │ │ │ ├── earth-outline.svg │ │ │ ├── earth-sharp.svg │ │ │ ├── earth.svg │ │ │ ├── easel-outline.svg │ │ │ ├── easel-sharp.svg │ │ │ ├── easel.svg │ │ │ ├── egg-outline.svg │ │ │ ├── egg-sharp.svg │ │ │ ├── egg.svg │ │ │ ├── ellipse-outline.svg │ │ │ ├── ellipse-sharp.svg │ │ │ ├── ellipse.svg │ │ │ ├── ellipsis-horizontal-circle-outline.svg │ │ │ ├── ellipsis-horizontal-circle-sharp.svg │ │ │ ├── ellipsis-horizontal-circle.svg │ │ │ ├── ellipsis-horizontal-outline.svg │ │ │ ├── ellipsis-horizontal-sharp.svg │ │ │ ├── ellipsis-horizontal.svg │ │ │ ├── ellipsis-vertical-circle-outline.svg │ │ │ ├── ellipsis-vertical-circle-sharp.svg │ │ │ ├── ellipsis-vertical-circle.svg │ │ │ ├── ellipsis-vertical-outline.svg │ │ │ ├── ellipsis-vertical-sharp.svg │ │ │ ├── ellipsis-vertical.svg │ │ │ ├── enter-outline.svg │ │ │ ├── enter-sharp.svg │ │ │ ├── enter.svg │ │ │ ├── exit-outline.svg │ │ │ ├── exit-sharp.svg │ │ │ ├── exit.svg │ │ │ ├── expand-outline.svg │ │ │ ├── expand-sharp.svg │ │ │ ├── expand.svg │ │ │ ├── eye-off-outline.svg │ │ │ ├── eye-off-sharp.svg │ │ │ ├── eye-off.svg │ │ │ ├── eye-outline.svg │ │ │ ├── eye-sharp.svg │ │ │ ├── eye.svg │ │ │ ├── eyedrop-outline.svg │ │ │ ├── eyedrop-sharp.svg │ │ │ ├── eyedrop.svg │ │ │ ├── fast-food-outline.svg │ │ │ ├── fast-food-sharp.svg │ │ │ ├── fast-food.svg │ │ │ ├── female-outline.svg │ │ │ ├── female-sharp.svg │ │ │ ├── female.svg │ │ │ ├── file-tray-full-outline.svg │ │ │ ├── file-tray-full-sharp.svg │ │ │ ├── file-tray-full.svg │ │ │ ├── file-tray-outline.svg │ │ │ ├── file-tray-sharp.svg │ │ │ ├── file-tray-stacked-outline.svg │ │ │ ├── file-tray-stacked-sharp.svg │ │ │ ├── file-tray-stacked.svg │ │ │ ├── file-tray.svg │ │ │ ├── film-outline.svg │ │ │ ├── film-sharp.svg │ │ │ ├── film.svg │ │ │ ├── filter-outline.svg │ │ │ ├── filter-sharp.svg │ │ │ ├── filter.svg │ │ │ ├── finger-print-outline.svg │ │ │ ├── finger-print-sharp.svg │ │ │ ├── finger-print.svg │ │ │ ├── fitness-outline.svg │ │ │ ├── fitness-sharp.svg │ │ │ ├── fitness.svg │ │ │ ├── flag-outline.svg │ │ │ ├── flag-sharp.svg │ │ │ ├── flag.svg │ │ │ ├── flame-outline.svg │ │ │ ├── flame-sharp.svg │ │ │ ├── flame.svg │ │ │ ├── flash-off-outline.svg │ │ │ ├── flash-off-sharp.svg │ │ │ ├── flash-off.svg │ │ │ ├── flash-outline.svg │ │ │ ├── flash-sharp.svg │ │ │ ├── flash.svg │ │ │ ├── flashlight-outline.svg │ │ │ ├── flashlight-sharp.svg │ │ │ ├── flashlight.svg │ │ │ ├── flask-outline.svg │ │ │ ├── flask-sharp.svg │ │ │ ├── flask.svg │ │ │ ├── flower-outline.svg │ │ │ ├── flower-sharp.svg │ │ │ ├── flower.svg │ │ │ ├── folder-open-outline.svg │ │ │ ├── folder-open-sharp.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-outline.svg │ │ │ ├── folder-sharp.svg │ │ │ ├── folder.svg │ │ │ ├── football-outline.svg │ │ │ ├── football-sharp.svg │ │ │ ├── football.svg │ │ │ ├── funnel-outline.svg │ │ │ ├── funnel-sharp.svg │ │ │ ├── funnel.svg │ │ │ ├── game-controller-outline.svg │ │ │ ├── game-controller-sharp.svg │ │ │ ├── game-controller.svg │ │ │ ├── gift-outline.svg │ │ │ ├── gift-sharp.svg │ │ │ ├── gift.svg │ │ │ ├── git-branch-outline.svg │ │ │ ├── git-branch-sharp.svg │ │ │ ├── git-branch.svg │ │ │ ├── git-commit-outline.svg │ │ │ ├── git-commit-sharp.svg │ │ │ ├── git-commit.svg │ │ │ ├── git-compare-outline.svg │ │ │ ├── git-compare-sharp.svg │ │ │ ├── git-compare.svg │ │ │ ├── git-merge-outline.svg │ │ │ ├── git-merge-sharp.svg │ │ │ ├── git-merge.svg │ │ │ ├── git-network-outline.svg │ │ │ ├── git-network-sharp.svg │ │ │ ├── git-network.svg │ │ │ ├── git-pull-request-outline.svg │ │ │ ├── git-pull-request-sharp.svg │ │ │ ├── git-pull-request.svg │ │ │ ├── glasses-outline.svg │ │ │ ├── glasses-sharp.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-outline.svg │ │ │ ├── globe-sharp.svg │ │ │ ├── globe.svg │ │ │ ├── golf-outline.svg │ │ │ ├── golf-sharp.svg │ │ │ ├── golf.svg │ │ │ ├── grid-outline.svg │ │ │ ├── grid-sharp.svg │ │ │ ├── grid.svg │ │ │ ├── hammer-outline.svg │ │ │ ├── hammer-sharp.svg │ │ │ ├── hammer.svg │ │ │ ├── hand-left-outline.svg │ │ │ ├── hand-left-sharp.svg │ │ │ ├── hand-left.svg │ │ │ ├── hand-right-outline.svg │ │ │ ├── hand-right-sharp.svg │ │ │ ├── hand-right.svg │ │ │ ├── happy-outline.svg │ │ │ ├── happy-sharp.svg │ │ │ ├── happy.svg │ │ │ ├── hardware-chip-outline.svg │ │ │ ├── hardware-chip-sharp.svg │ │ │ ├── hardware-chip.svg │ │ │ ├── headset-outline.svg │ │ │ ├── headset-sharp.svg │ │ │ ├── headset.svg │ │ │ ├── heart-circle-outline.svg │ │ │ ├── heart-circle-sharp.svg │ │ │ ├── heart-circle.svg │ │ │ ├── heart-dislike-circle-outline.svg │ │ │ ├── heart-dislike-circle-sharp.svg │ │ │ ├── heart-dislike-circle.svg │ │ │ ├── heart-dislike-outline.svg │ │ │ ├── heart-dislike-sharp.svg │ │ │ ├── heart-dislike.svg │ │ │ ├── heart-half-outline.svg │ │ │ ├── heart-half-sharp.svg │ │ │ ├── heart-half.svg │ │ │ ├── heart-outline.svg │ │ │ ├── heart-sharp.svg │ │ │ ├── heart.svg │ │ │ ├── help-buoy-outline.svg │ │ │ ├── help-buoy-sharp.svg │ │ │ ├── help-buoy.svg │ │ │ ├── help-circle-outline.svg │ │ │ ├── help-circle-sharp.svg │ │ │ ├── help-circle.svg │ │ │ ├── help-outline.svg │ │ │ ├── help-sharp.svg │ │ │ ├── help.svg │ │ │ ├── home-outline.svg │ │ │ ├── home-sharp.svg │ │ │ ├── home.svg │ │ │ ├── hourglass-outline.svg │ │ │ ├── hourglass-sharp.svg │ │ │ ├── hourglass.svg │ │ │ ├── ice-cream-outline.svg │ │ │ ├── ice-cream-sharp.svg │ │ │ ├── ice-cream.svg │ │ │ ├── image-outline.svg │ │ │ ├── image-sharp.svg │ │ │ ├── image.svg │ │ │ ├── images-outline.svg │ │ │ ├── images-sharp.svg │ │ │ ├── images.svg │ │ │ ├── infinite-outline.svg │ │ │ ├── infinite-sharp.svg │ │ │ ├── infinite.svg │ │ │ ├── information-circle-outline.svg │ │ │ ├── information-circle-sharp.svg │ │ │ ├── information-circle.svg │ │ │ ├── information-outline.svg │ │ │ ├── information-sharp.svg │ │ │ ├── information.svg │ │ │ ├── journal-outline.svg │ │ │ ├── journal-sharp.svg │ │ │ ├── journal.svg │ │ │ ├── key-outline.svg │ │ │ ├── key-sharp.svg │ │ │ ├── key.svg │ │ │ ├── keypad-outline.svg │ │ │ ├── keypad-sharp.svg │ │ │ ├── keypad.svg │ │ │ ├── language-outline.svg │ │ │ ├── language-sharp.svg │ │ │ ├── language.svg │ │ │ ├── laptop-outline.svg │ │ │ ├── laptop-sharp.svg │ │ │ ├── laptop.svg │ │ │ ├── layers-outline.svg │ │ │ ├── layers-sharp.svg │ │ │ ├── layers.svg │ │ │ ├── leaf-outline.svg │ │ │ ├── leaf-sharp.svg │ │ │ ├── leaf.svg │ │ │ ├── library-outline.svg │ │ │ ├── library-sharp.svg │ │ │ ├── library.svg │ │ │ ├── link-outline.svg │ │ │ ├── link-sharp.svg │ │ │ ├── link.svg │ │ │ ├── list-circle-outline.svg │ │ │ ├── list-circle-sharp.svg │ │ │ ├── list-circle.svg │ │ │ ├── list-outline.svg │ │ │ ├── list-sharp.svg │ │ │ ├── list.svg │ │ │ ├── locate-outline.svg │ │ │ ├── locate-sharp.svg │ │ │ ├── locate.svg │ │ │ ├── location-outline.svg │ │ │ ├── location-sharp.svg │ │ │ ├── location.svg │ │ │ ├── lock-closed-outline.svg │ │ │ ├── lock-closed-sharp.svg │ │ │ ├── lock-closed.svg │ │ │ ├── lock-open-outline.svg │ │ │ ├── lock-open-sharp.svg │ │ │ ├── lock-open.svg │ │ │ ├── log-in-outline.svg │ │ │ ├── log-in-sharp.svg │ │ │ ├── log-in.svg │ │ │ ├── log-out-outline.svg │ │ │ ├── log-out-sharp.svg │ │ │ ├── log-out.svg │ │ │ ├── logo-amazon.svg │ │ │ ├── logo-amplify.svg │ │ │ ├── logo-android.svg │ │ │ ├── logo-angular.svg │ │ │ ├── logo-apple-appstore.svg │ │ │ ├── logo-apple.svg │ │ │ ├── logo-behance.svg │ │ │ ├── logo-bitbucket.svg │ │ │ ├── logo-bitcoin.svg │ │ │ ├── logo-buffer.svg │ │ │ ├── logo-capacitor.svg │ │ │ ├── logo-chrome.svg │ │ │ ├── logo-closed-captioning.svg │ │ │ ├── logo-codepen.svg │ │ │ ├── logo-css3.svg │ │ │ ├── logo-designernews.svg │ │ │ ├── logo-docker.svg │ │ │ ├── logo-dribbble.svg │ │ │ ├── logo-dropbox.svg │ │ │ ├── logo-edge.svg │ │ │ ├── logo-electron.svg │ │ │ ├── logo-euro.svg │ │ │ ├── logo-facebook.svg │ │ │ ├── logo-firebase.svg │ │ │ ├── logo-firefox.svg │ │ │ ├── logo-flickr.svg │ │ │ ├── logo-foursquare.svg │ │ │ ├── logo-github.svg │ │ │ ├── logo-gitlab.svg │ │ │ ├── logo-google-playstore.svg │ │ │ ├── logo-google.svg │ │ │ ├── logo-hackernews.svg │ │ │ ├── logo-html5.svg │ │ │ ├── logo-instagram.svg │ │ │ ├── logo-ionic.svg │ │ │ ├── logo-ionitron.svg │ │ │ ├── logo-javascript.svg │ │ │ ├── logo-laravel.svg │ │ │ ├── logo-linkedin.svg │ │ │ ├── logo-markdown.svg │ │ │ ├── logo-medium.svg │ │ │ ├── logo-no-smoking.svg │ │ │ ├── logo-nodejs.svg │ │ │ ├── logo-npm.svg │ │ │ ├── logo-octocat.svg │ │ │ ├── logo-paypal.svg │ │ │ ├── logo-pinterest.svg │ │ │ ├── logo-playstation.svg │ │ │ ├── logo-pwa.svg │ │ │ ├── logo-python.svg │ │ │ ├── logo-react.svg │ │ │ ├── logo-reddit.svg │ │ │ ├── logo-rss.svg │ │ │ ├── logo-sass.svg │ │ │ ├── logo-skype.svg │ │ │ ├── logo-slack.svg │ │ │ ├── logo-snapchat.svg │ │ │ ├── logo-soundcloud.svg │ │ │ ├── logo-stackoverflow.svg │ │ │ ├── logo-steam.svg │ │ │ ├── logo-stencil.svg │ │ │ ├── logo-tiktok.svg │ │ │ ├── logo-tumblr.svg │ │ │ ├── logo-tux.svg │ │ │ ├── logo-twitch.svg │ │ │ ├── logo-twitter.svg │ │ │ ├── logo-usd.svg │ │ │ ├── logo-venmo.svg │ │ │ ├── logo-vimeo.svg │ │ │ ├── logo-vk.svg │ │ │ ├── logo-vue.svg │ │ │ ├── logo-web-component.svg │ │ │ ├── logo-whatsapp.svg │ │ │ ├── logo-windows.svg │ │ │ ├── logo-wordpress.svg │ │ │ ├── logo-xbox.svg │ │ │ ├── logo-xing.svg │ │ │ ├── logo-yahoo.svg │ │ │ ├── logo-yen.svg │ │ │ ├── logo-youtube.svg │ │ │ ├── magnet-outline.svg │ │ │ ├── magnet-sharp.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-open-outline.svg │ │ │ ├── mail-open-sharp.svg │ │ │ ├── mail-open.svg │ │ │ ├── mail-outline.svg │ │ │ ├── mail-sharp.svg │ │ │ ├── mail-unread-outline.svg │ │ │ ├── mail-unread-sharp.svg │ │ │ ├── mail-unread.svg │ │ │ ├── mail.svg │ │ │ ├── male-female-outline.svg │ │ │ ├── male-female-sharp.svg │ │ │ ├── male-female.svg │ │ │ ├── male-outline.svg │ │ │ ├── male-sharp.svg │ │ │ ├── male.svg │ │ │ ├── man-outline.svg │ │ │ ├── man-sharp.svg │ │ │ ├── man.svg │ │ │ ├── map-outline.svg │ │ │ ├── map-sharp.svg │ │ │ ├── map.svg │ │ │ ├── medal-outline.svg │ │ │ ├── medal-sharp.svg │ │ │ ├── medal.svg │ │ │ ├── medical-outline.svg │ │ │ ├── medical-sharp.svg │ │ │ ├── medical.svg │ │ │ ├── medkit-outline.svg │ │ │ ├── medkit-sharp.svg │ │ │ ├── medkit.svg │ │ │ ├── megaphone-outline.svg │ │ │ ├── megaphone-sharp.svg │ │ │ ├── megaphone.svg │ │ │ ├── menu-outline.svg │ │ │ ├── menu-sharp.svg │ │ │ ├── menu.svg │ │ │ ├── mic-circle-outline.svg │ │ │ ├── mic-circle-sharp.svg │ │ │ ├── mic-circle.svg │ │ │ ├── mic-off-circle-outline.svg │ │ │ ├── mic-off-circle-sharp.svg │ │ │ ├── mic-off-circle.svg │ │ │ ├── mic-off-outline.svg │ │ │ ├── mic-off-sharp.svg │ │ │ ├── mic-off.svg │ │ │ ├── mic-outline.svg │ │ │ ├── mic-sharp.svg │ │ │ ├── mic.svg │ │ │ ├── moon-outline.svg │ │ │ ├── moon-sharp.svg │ │ │ ├── moon.svg │ │ │ ├── move-outline.svg │ │ │ ├── move-sharp.svg │ │ │ ├── move.svg │ │ │ ├── musical-note-outline.svg │ │ │ ├── musical-note-sharp.svg │ │ │ ├── musical-note.svg │ │ │ ├── musical-notes-outline.svg │ │ │ ├── musical-notes-sharp.svg │ │ │ ├── musical-notes.svg │ │ │ ├── navigate-circle-outline.svg │ │ │ ├── navigate-circle-sharp.svg │ │ │ ├── navigate-circle.svg │ │ │ ├── navigate-outline.svg │ │ │ ├── navigate-sharp.svg │ │ │ ├── navigate.svg │ │ │ ├── newspaper-outline.svg │ │ │ ├── newspaper-sharp.svg │ │ │ ├── newspaper.svg │ │ │ ├── notifications-circle-outline.svg │ │ │ ├── notifications-circle-sharp.svg │ │ │ ├── notifications-circle.svg │ │ │ ├── notifications-off-circle-outline.svg │ │ │ ├── notifications-off-circle-sharp.svg │ │ │ ├── notifications-off-circle.svg │ │ │ ├── notifications-off-outline.svg │ │ │ ├── notifications-off-sharp.svg │ │ │ ├── notifications-off.svg │ │ │ ├── notifications-outline.svg │ │ │ ├── notifications-sharp.svg │ │ │ ├── notifications.svg │ │ │ ├── nuclear-outline.svg │ │ │ ├── nuclear-sharp.svg │ │ │ ├── nuclear.svg │ │ │ ├── nutrition-outline.svg │ │ │ ├── nutrition-sharp.svg │ │ │ ├── nutrition.svg │ │ │ ├── open-outline.svg │ │ │ ├── open-sharp.svg │ │ │ ├── open.svg │ │ │ ├── options-outline.svg │ │ │ ├── options-sharp.svg │ │ │ ├── options.svg │ │ │ ├── paper-plane-outline.svg │ │ │ ├── paper-plane-sharp.svg │ │ │ ├── paper-plane.svg │ │ │ ├── partly-sunny-outline.svg │ │ │ ├── partly-sunny-sharp.svg │ │ │ ├── partly-sunny.svg │ │ │ ├── pause-circle-outline.svg │ │ │ ├── pause-circle-sharp.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause-outline.svg │ │ │ ├── pause-sharp.svg │ │ │ ├── pause.svg │ │ │ ├── paw-outline.svg │ │ │ ├── paw-sharp.svg │ │ │ ├── paw.svg │ │ │ ├── pencil-outline.svg │ │ │ ├── pencil-sharp.svg │ │ │ ├── pencil.svg │ │ │ ├── people-circle-outline.svg │ │ │ ├── people-circle-sharp.svg │ │ │ ├── people-circle.svg │ │ │ ├── people-outline.svg │ │ │ ├── people-sharp.svg │ │ │ ├── people.svg │ │ │ ├── person-add-outline.svg │ │ │ ├── person-add-sharp.svg │ │ │ ├── person-add.svg │ │ │ ├── person-circle-outline.svg │ │ │ ├── person-circle-sharp.svg │ │ │ ├── person-circle.svg │ │ │ ├── person-outline.svg │ │ │ ├── person-remove-outline.svg │ │ │ ├── person-remove-sharp.svg │ │ │ ├── person-remove.svg │ │ │ ├── person-sharp.svg │ │ │ ├── person.svg │ │ │ ├── phone-landscape-outline.svg │ │ │ ├── phone-landscape-sharp.svg │ │ │ ├── phone-landscape.svg │ │ │ ├── phone-portrait-outline.svg │ │ │ ├── phone-portrait-sharp.svg │ │ │ ├── phone-portrait.svg │ │ │ ├── pie-chart-outline.svg │ │ │ ├── pie-chart-sharp.svg │ │ │ ├── pie-chart.svg │ │ │ ├── pin-outline.svg │ │ │ ├── pin-sharp.svg │ │ │ ├── pin.svg │ │ │ ├── pint-outline.svg │ │ │ ├── pint-sharp.svg │ │ │ ├── pint.svg │ │ │ ├── pizza-outline.svg │ │ │ ├── pizza-sharp.svg │ │ │ ├── pizza.svg │ │ │ ├── planet-outline.svg │ │ │ ├── planet-sharp.svg │ │ │ ├── planet.svg │ │ │ ├── play-back-circle-outline.svg │ │ │ ├── play-back-circle-sharp.svg │ │ │ ├── play-back-circle.svg │ │ │ ├── play-back-outline.svg │ │ │ ├── play-back-sharp.svg │ │ │ ├── play-back.svg │ │ │ ├── play-circle-outline.svg │ │ │ ├── play-circle-sharp.svg │ │ │ ├── play-circle.svg │ │ │ ├── play-forward-circle-outline.svg │ │ │ ├── play-forward-circle-sharp.svg │ │ │ ├── play-forward-circle.svg │ │ │ ├── play-forward-outline.svg │ │ │ ├── play-forward-sharp.svg │ │ │ ├── play-forward.svg │ │ │ ├── play-outline.svg │ │ │ ├── play-sharp.svg │ │ │ ├── play-skip-back-circle-outline.svg │ │ │ ├── play-skip-back-circle-sharp.svg │ │ │ ├── play-skip-back-circle.svg │ │ │ ├── play-skip-back-outline.svg │ │ │ ├── play-skip-back-sharp.svg │ │ │ ├── play-skip-back.svg │ │ │ ├── play-skip-forward-circle-outline.svg │ │ │ ├── play-skip-forward-circle-sharp.svg │ │ │ ├── play-skip-forward-circle.svg │ │ │ ├── play-skip-forward-outline.svg │ │ │ ├── play-skip-forward-sharp.svg │ │ │ ├── play-skip-forward.svg │ │ │ ├── play.svg │ │ │ ├── podium-outline.svg │ │ │ ├── podium-sharp.svg │ │ │ ├── podium.svg │ │ │ ├── power-outline.svg │ │ │ ├── power-sharp.svg │ │ │ ├── power.svg │ │ │ ├── pricetag-outline.svg │ │ │ ├── pricetag-sharp.svg │ │ │ ├── pricetag.svg │ │ │ ├── pricetags-outline.svg │ │ │ ├── pricetags-sharp.svg │ │ │ ├── pricetags.svg │ │ │ ├── print-outline.svg │ │ │ ├── print-sharp.svg │ │ │ ├── print.svg │ │ │ ├── pulse-outline.svg │ │ │ ├── pulse-sharp.svg │ │ │ ├── pulse.svg │ │ │ ├── push-outline.svg │ │ │ ├── push-sharp.svg │ │ │ ├── push.svg │ │ │ ├── qr-code-outline.svg │ │ │ ├── qr-code-sharp.svg │ │ │ ├── qr-code.svg │ │ │ ├── radio-button-off-outline.svg │ │ │ ├── radio-button-off-sharp.svg │ │ │ ├── radio-button-off.svg │ │ │ ├── radio-button-on-outline.svg │ │ │ ├── radio-button-on-sharp.svg │ │ │ ├── radio-button-on.svg │ │ │ ├── radio-outline.svg │ │ │ ├── radio-sharp.svg │ │ │ ├── radio.svg │ │ │ ├── rainy-outline.svg │ │ │ ├── rainy-sharp.svg │ │ │ ├── rainy.svg │ │ │ ├── reader-outline.svg │ │ │ ├── reader-sharp.svg │ │ │ ├── reader.svg │ │ │ ├── receipt-outline.svg │ │ │ ├── receipt-sharp.svg │ │ │ ├── receipt.svg │ │ │ ├── recording-outline.svg │ │ │ ├── recording-sharp.svg │ │ │ ├── recording.svg │ │ │ ├── refresh-circle-outline.svg │ │ │ ├── refresh-circle-sharp.svg │ │ │ ├── refresh-circle.svg │ │ │ ├── refresh-outline.svg │ │ │ ├── refresh-sharp.svg │ │ │ ├── refresh.svg │ │ │ ├── reload-circle-outline.svg │ │ │ ├── reload-circle-sharp.svg │ │ │ ├── reload-circle.svg │ │ │ ├── reload-outline.svg │ │ │ ├── reload-sharp.svg │ │ │ ├── reload.svg │ │ │ ├── remove-circle-outline.svg │ │ │ ├── remove-circle-sharp.svg │ │ │ ├── remove-circle.svg │ │ │ ├── remove-outline.svg │ │ │ ├── remove-sharp.svg │ │ │ ├── remove.svg │ │ │ ├── reorder-four-outline.svg │ │ │ ├── reorder-four-sharp.svg │ │ │ ├── reorder-four.svg │ │ │ ├── reorder-three-outline.svg │ │ │ ├── reorder-three-sharp.svg │ │ │ ├── reorder-three.svg │ │ │ ├── reorder-two-outline.svg │ │ │ ├── reorder-two-sharp.svg │ │ │ ├── reorder-two.svg │ │ │ ├── repeat-outline.svg │ │ │ ├── repeat-sharp.svg │ │ │ ├── repeat.svg │ │ │ ├── resize-outline.svg │ │ │ ├── resize-sharp.svg │ │ │ ├── resize.svg │ │ │ ├── restaurant-outline.svg │ │ │ ├── restaurant-sharp.svg │ │ │ ├── restaurant.svg │ │ │ ├── return-down-back-outline.svg │ │ │ ├── return-down-back-sharp.svg │ │ │ ├── return-down-back.svg │ │ │ ├── return-down-forward-outline.svg │ │ │ ├── return-down-forward-sharp.svg │ │ │ ├── return-down-forward.svg │ │ │ ├── return-up-back-outline.svg │ │ │ ├── return-up-back-sharp.svg │ │ │ ├── return-up-back.svg │ │ │ ├── return-up-forward-outline.svg │ │ │ ├── return-up-forward-sharp.svg │ │ │ ├── return-up-forward.svg │ │ │ ├── ribbon-outline.svg │ │ │ ├── ribbon-sharp.svg │ │ │ ├── ribbon.svg │ │ │ ├── rocket-outline.svg │ │ │ ├── rocket-sharp.svg │ │ │ ├── rocket.svg │ │ │ ├── rose-outline.svg │ │ │ ├── rose-sharp.svg │ │ │ ├── rose.svg │ │ │ ├── sad-outline.svg │ │ │ ├── sad-sharp.svg │ │ │ ├── sad.svg │ │ │ ├── save-outline.svg │ │ │ ├── save-sharp.svg │ │ │ ├── save.svg │ │ │ ├── scan-circle-outline.svg │ │ │ ├── scan-circle-sharp.svg │ │ │ ├── scan-circle.svg │ │ │ ├── scan-outline.svg │ │ │ ├── scan-sharp.svg │ │ │ ├── scan.svg │ │ │ ├── school-outline.svg │ │ │ ├── school-sharp.svg │ │ │ ├── school.svg │ │ │ ├── search-circle-outline.svg │ │ │ ├── search-circle-sharp.svg │ │ │ ├── search-circle.svg │ │ │ ├── search-outline.svg │ │ │ ├── search-sharp.svg │ │ │ ├── search.svg │ │ │ ├── send-outline.svg │ │ │ ├── send-sharp.svg │ │ │ ├── send.svg │ │ │ ├── server-outline.svg │ │ │ ├── server-sharp.svg │ │ │ ├── server.svg │ │ │ ├── settings-outline.svg │ │ │ ├── settings-sharp.svg │ │ │ ├── settings.svg │ │ │ ├── shapes-outline.svg │ │ │ ├── shapes-sharp.svg │ │ │ ├── shapes.svg │ │ │ ├── share-outline.svg │ │ │ ├── share-sharp.svg │ │ │ ├── share-social-outline.svg │ │ │ ├── share-social-sharp.svg │ │ │ ├── share-social.svg │ │ │ ├── share.svg │ │ │ ├── shield-checkmark-outline.svg │ │ │ ├── shield-checkmark-sharp.svg │ │ │ ├── shield-checkmark.svg │ │ │ ├── shield-outline.svg │ │ │ ├── shield-sharp.svg │ │ │ ├── shield.svg │ │ │ ├── shirt-outline.svg │ │ │ ├── shirt-sharp.svg │ │ │ ├── shirt.svg │ │ │ ├── shuffle-outline.svg │ │ │ ├── shuffle-sharp.svg │ │ │ ├── shuffle.svg │ │ │ ├── skull-outline.svg │ │ │ ├── skull-sharp.svg │ │ │ ├── skull.svg │ │ │ ├── snow-outline.svg │ │ │ ├── snow-sharp.svg │ │ │ ├── snow.svg │ │ │ ├── speedometer-outline.svg │ │ │ ├── speedometer-sharp.svg │ │ │ ├── speedometer.svg │ │ │ ├── square-outline.svg │ │ │ ├── square-sharp.svg │ │ │ ├── square.svg │ │ │ ├── star-half-outline.svg │ │ │ ├── star-half-sharp.svg │ │ │ ├── star-half.svg │ │ │ ├── star-outline.svg │ │ │ ├── star-sharp.svg │ │ │ ├── star.svg │ │ │ ├── stats-chart-outline.svg │ │ │ ├── stats-chart-sharp.svg │ │ │ ├── stats-chart.svg │ │ │ ├── stop-circle-outline.svg │ │ │ ├── stop-circle-sharp.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop-outline.svg │ │ │ ├── stop-sharp.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-outline.svg │ │ │ ├── stopwatch-sharp.svg │ │ │ ├── stopwatch.svg │ │ │ ├── subway-outline.svg │ │ │ ├── subway-sharp.svg │ │ │ ├── subway.svg │ │ │ ├── sunny-outline.svg │ │ │ ├── sunny-sharp.svg │ │ │ ├── sunny.svg │ │ │ ├── swap-horizontal-outline.svg │ │ │ ├── swap-horizontal-sharp.svg │ │ │ ├── swap-horizontal.svg │ │ │ ├── swap-vertical-outline.svg │ │ │ ├── swap-vertical-sharp.svg │ │ │ ├── swap-vertical.svg │ │ │ ├── sync-circle-outline.svg │ │ │ ├── sync-circle-sharp.svg │ │ │ ├── sync-circle.svg │ │ │ ├── sync-outline.svg │ │ │ ├── sync-sharp.svg │ │ │ ├── sync.svg │ │ │ ├── tablet-landscape-outline.svg │ │ │ ├── tablet-landscape-sharp.svg │ │ │ ├── tablet-landscape.svg │ │ │ ├── tablet-portrait-outline.svg │ │ │ ├── tablet-portrait-sharp.svg │ │ │ ├── tablet-portrait.svg │ │ │ ├── tennisball-outline.svg │ │ │ ├── tennisball-sharp.svg │ │ │ ├── tennisball.svg │ │ │ ├── terminal-outline.svg │ │ │ ├── terminal-sharp.svg │ │ │ ├── terminal.svg │ │ │ ├── text-outline.svg │ │ │ ├── text-sharp.svg │ │ │ ├── text.svg │ │ │ ├── thermometer-outline.svg │ │ │ ├── thermometer-sharp.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down-outline.svg │ │ │ ├── thumbs-down-sharp.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up-outline.svg │ │ │ ├── thumbs-up-sharp.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thunderstorm-outline.svg │ │ │ ├── thunderstorm-sharp.svg │ │ │ ├── thunderstorm.svg │ │ │ ├── time-outline.svg │ │ │ ├── time-sharp.svg │ │ │ ├── time.svg │ │ │ ├── timer-outline.svg │ │ │ ├── timer-sharp.svg │ │ │ ├── timer.svg │ │ │ ├── today-outline.svg │ │ │ ├── today-sharp.svg │ │ │ ├── today.svg │ │ │ ├── toggle-outline.svg │ │ │ ├── toggle-sharp.svg │ │ │ ├── toggle.svg │ │ │ ├── trail-sign-outline.svg │ │ │ ├── trail-sign-sharp.svg │ │ │ ├── trail-sign.svg │ │ │ ├── train-outline.svg │ │ │ ├── train-sharp.svg │ │ │ ├── train.svg │ │ │ ├── transgender-outline.svg │ │ │ ├── transgender-sharp.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-bin-outline.svg │ │ │ ├── trash-bin-sharp.svg │ │ │ ├── trash-bin.svg │ │ │ ├── trash-outline.svg │ │ │ ├── trash-sharp.svg │ │ │ ├── trash.svg │ │ │ ├── trending-down-outline.svg │ │ │ ├── trending-down-sharp.svg │ │ │ ├── trending-down.svg │ │ │ ├── trending-up-outline.svg │ │ │ ├── trending-up-sharp.svg │ │ │ ├── trending-up.svg │ │ │ ├── triangle-outline.svg │ │ │ ├── triangle-sharp.svg │ │ │ ├── triangle.svg │ │ │ ├── trophy-outline.svg │ │ │ ├── trophy-sharp.svg │ │ │ ├── trophy.svg │ │ │ ├── tv-outline.svg │ │ │ ├── tv-sharp.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-outline.svg │ │ │ ├── umbrella-sharp.svg │ │ │ ├── umbrella.svg │ │ │ ├── videocam-outline.svg │ │ │ ├── videocam-sharp.svg │ │ │ ├── videocam.svg │ │ │ ├── volume-high-outline.svg │ │ │ ├── volume-high-sharp.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low-outline.svg │ │ │ ├── volume-low-sharp.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-medium-outline.svg │ │ │ ├── volume-medium-sharp.svg │ │ │ ├── volume-medium.svg │ │ │ ├── volume-mute-outline.svg │ │ │ ├── volume-mute-sharp.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off-outline.svg │ │ │ ├── volume-off-sharp.svg │ │ │ ├── volume-off.svg │ │ │ ├── walk-outline.svg │ │ │ ├── walk-sharp.svg │ │ │ ├── walk.svg │ │ │ ├── wallet-outline.svg │ │ │ ├── wallet-sharp.svg │ │ │ ├── wallet.svg │ │ │ ├── warning-outline.svg │ │ │ ├── warning-sharp.svg │ │ │ ├── warning.svg │ │ │ ├── watch-outline.svg │ │ │ ├── watch-sharp.svg │ │ │ ├── watch.svg │ │ │ ├── water-outline.svg │ │ │ ├── water-sharp.svg │ │ │ ├── water.svg │ │ │ ├── wifi-outline.svg │ │ │ ├── wifi-sharp.svg │ │ │ ├── wifi.svg │ │ │ ├── wine-outline.svg │ │ │ ├── wine-sharp.svg │ │ │ ├── wine.svg │ │ │ ├── woman-outline.svg │ │ │ ├── woman-sharp.svg │ │ │ └── woman.svg │ ├── line-awesome │ │ └── dist │ │ │ ├── font-awesome-line-awesome │ │ │ ├── css │ │ │ │ └── all.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ │ └── line-awesome │ │ │ ├── css │ │ │ └── line-awesome.min.css │ │ │ └── fonts │ │ │ ├── la-brands-400.eot │ │ │ ├── la-brands-400.svg │ │ │ ├── la-brands-400.ttf │ │ │ ├── la-brands-400.woff │ │ │ ├── la-brands-400.woff2 │ │ │ ├── la-regular-400.eot │ │ │ ├── la-regular-400.svg │ │ │ ├── la-regular-400.ttf │ │ │ ├── la-regular-400.woff │ │ │ ├── la-regular-400.woff2 │ │ │ ├── la-solid-900.eot │ │ │ ├── la-solid-900.svg │ │ │ ├── la-solid-900.ttf │ │ │ ├── la-solid-900.woff │ │ │ └── la-solid-900.woff2 │ ├── magnific-popup │ │ ├── jquery.magnific-popup.js │ │ ├── jquery.magnific-popup.min.js │ │ └── magnific-popup.css │ ├── mapbox │ │ └── mapbox-gl.css │ ├── remixicon │ │ ├── License │ │ ├── fonts │ │ │ ├── remixicon.css │ │ │ ├── remixicon.eot │ │ │ ├── remixicon.svg │ │ │ ├── remixicon.symbol.svg │ │ │ ├── remixicon.ttf │ │ │ ├── remixicon.woff │ │ │ └── remixicon.woff2 │ │ └── icons │ │ │ ├── Buildings │ │ │ ├── ancient-gate-fill.svg │ │ │ ├── ancient-gate-line.svg │ │ │ ├── ancient-pavilion-fill.svg │ │ │ ├── ancient-pavilion-line.svg │ │ │ ├── bank-fill.svg │ │ │ ├── bank-line.svg │ │ │ ├── building-2-fill.svg │ │ │ ├── building-2-line.svg │ │ │ ├── building-3-fill.svg │ │ │ ├── building-3-line.svg │ │ │ ├── building-4-fill.svg │ │ │ ├── building-4-line.svg │ │ │ ├── building-fill.svg │ │ │ ├── building-line.svg │ │ │ ├── community-fill.svg │ │ │ ├── community-line.svg │ │ │ ├── government-fill.svg │ │ │ ├── government-line.svg │ │ │ ├── home-2-fill.svg │ │ │ ├── home-2-line.svg │ │ │ ├── home-3-fill.svg │ │ │ ├── home-3-line.svg │ │ │ ├── home-4-fill.svg │ │ │ ├── home-4-line.svg │ │ │ ├── home-5-fill.svg │ │ │ ├── home-5-line.svg │ │ │ ├── home-6-fill.svg │ │ │ ├── home-6-line.svg │ │ │ ├── home-7-fill.svg │ │ │ ├── home-7-line.svg │ │ │ ├── home-8-fill.svg │ │ │ ├── home-8-line.svg │ │ │ ├── home-fill.svg │ │ │ ├── home-gear-fill.svg │ │ │ ├── home-gear-line.svg │ │ │ ├── home-heart-fill.svg │ │ │ ├── home-heart-line.svg │ │ │ ├── home-line.svg │ │ │ ├── home-smile-2-fill.svg │ │ │ ├── home-smile-2-line.svg │ │ │ ├── home-smile-fill.svg │ │ │ ├── home-smile-line.svg │ │ │ ├── home-wifi-fill.svg │ │ │ ├── home-wifi-line.svg │ │ │ ├── hospital-fill.svg │ │ │ ├── hospital-line.svg │ │ │ ├── hotel-fill.svg │ │ │ ├── hotel-line.svg │ │ │ ├── store-2-fill.svg │ │ │ ├── store-2-line.svg │ │ │ ├── store-3-fill.svg │ │ │ ├── store-3-line.svg │ │ │ ├── store-fill.svg │ │ │ └── store-line.svg │ │ │ ├── Business │ │ │ ├── advertisement-fill.svg │ │ │ ├── advertisement-line.svg │ │ │ ├── archive-drawer-fill.svg │ │ │ ├── archive-drawer-line.svg │ │ │ ├── archive-fill.svg │ │ │ ├── archive-line.svg │ │ │ ├── at-fill.svg │ │ │ ├── at-line.svg │ │ │ ├── attachment-fill.svg │ │ │ ├── attachment-line.svg │ │ │ ├── award-fill.svg │ │ │ ├── award-line.svg │ │ │ ├── bar-chart-2-fill.svg │ │ │ ├── bar-chart-2-line.svg │ │ │ ├── bar-chart-box-fill.svg │ │ │ ├── bar-chart-box-line.svg │ │ │ ├── bar-chart-fill.svg │ │ │ ├── bar-chart-grouped-fill.svg │ │ │ ├── bar-chart-grouped-line.svg │ │ │ ├── bar-chart-horizontal-fill.svg │ │ │ ├── bar-chart-horizontal-line.svg │ │ │ ├── bar-chart-line.svg │ │ │ ├── bookmark-2-fill.svg │ │ │ ├── bookmark-2-line.svg │ │ │ ├── bookmark-3-fill.svg │ │ │ ├── bookmark-3-line.svg │ │ │ ├── bookmark-fill.svg │ │ │ ├── bookmark-line.svg │ │ │ ├── briefcase-2-fill.svg │ │ │ ├── briefcase-2-line.svg │ │ │ ├── briefcase-3-fill.svg │ │ │ ├── briefcase-3-line.svg │ │ │ ├── briefcase-4-fill.svg │ │ │ ├── briefcase-4-line.svg │ │ │ ├── briefcase-5-fill.svg │ │ │ ├── briefcase-5-line.svg │ │ │ ├── briefcase-fill.svg │ │ │ ├── briefcase-line.svg │ │ │ ├── bubble-chart-fill.svg │ │ │ ├── bubble-chart-line.svg │ │ │ ├── calculator-fill.svg │ │ │ ├── calculator-line.svg │ │ │ ├── calendar-2-fill.svg │ │ │ ├── calendar-2-line.svg │ │ │ ├── calendar-check-fill.svg │ │ │ ├── calendar-check-line.svg │ │ │ ├── calendar-event-fill.svg │ │ │ ├── calendar-event-line.svg │ │ │ ├── calendar-fill.svg │ │ │ ├── calendar-line.svg │ │ │ ├── calendar-todo-fill.svg │ │ │ ├── calendar-todo-line.svg │ │ │ ├── cloud-fill.svg │ │ │ ├── cloud-line.svg │ │ │ ├── cloud-off-fill.svg │ │ │ ├── cloud-off-line.svg │ │ │ ├── copyleft-fill.svg │ │ │ ├── copyleft-line.svg │ │ │ ├── copyright-fill.svg │ │ │ ├── copyright-line.svg │ │ │ ├── creative-commons-by-fill.svg │ │ │ ├── creative-commons-by-line.svg │ │ │ ├── creative-commons-fill.svg │ │ │ ├── creative-commons-line.svg │ │ │ ├── creative-commons-nc-fill.svg │ │ │ ├── creative-commons-nc-line.svg │ │ │ ├── creative-commons-nd-fill.svg │ │ │ ├── creative-commons-nd-line.svg │ │ │ ├── creative-commons-sa-fill.svg │ │ │ ├── creative-commons-sa-line.svg │ │ │ ├── creative-commons-zero-fill.svg │ │ │ ├── creative-commons-zero-line.svg │ │ │ ├── customer-service-2-fill.svg │ │ │ ├── customer-service-2-line.svg │ │ │ ├── customer-service-fill.svg │ │ │ ├── customer-service-line.svg │ │ │ ├── donut-chart-fill.svg │ │ │ ├── donut-chart-line.svg │ │ │ ├── flag-2-fill.svg │ │ │ ├── flag-2-line.svg │ │ │ ├── flag-fill.svg │ │ │ ├── flag-line.svg │ │ │ ├── global-fill.svg │ │ │ ├── global-line.svg │ │ │ ├── honour-fill.svg │ │ │ ├── honour-line.svg │ │ │ ├── inbox-archive-fill.svg │ │ │ ├── inbox-archive-line.svg │ │ │ ├── inbox-fill.svg │ │ │ ├── inbox-line.svg │ │ │ ├── inbox-unarchive-fill.svg │ │ │ ├── inbox-unarchive-line.svg │ │ │ ├── line-chart-fill.svg │ │ │ ├── line-chart-line.svg │ │ │ ├── links-fill.svg │ │ │ ├── links-line.svg │ │ │ ├── mail-add-fill.svg │ │ │ ├── mail-add-line.svg │ │ │ ├── mail-check-fill.svg │ │ │ ├── mail-check-line.svg │ │ │ ├── mail-close-fill.svg │ │ │ ├── mail-close-line.svg │ │ │ ├── mail-download-fill.svg │ │ │ ├── mail-download-line.svg │ │ │ ├── mail-fill.svg │ │ │ ├── mail-forbid-fill.svg │ │ │ ├── mail-forbid-line.svg │ │ │ ├── mail-line.svg │ │ │ ├── mail-lock-fill.svg │ │ │ ├── mail-lock-line.svg │ │ │ ├── mail-open-fill.svg │ │ │ ├── mail-open-line.svg │ │ │ ├── mail-send-fill.svg │ │ │ ├── mail-send-line.svg │ │ │ ├── mail-settings-fill.svg │ │ │ ├── mail-settings-line.svg │ │ │ ├── mail-star-fill.svg │ │ │ ├── mail-star-line.svg │ │ │ ├── mail-unread-fill.svg │ │ │ ├── mail-unread-line.svg │ │ │ ├── mail-volume-fill.svg │ │ │ ├── mail-volume-line.svg │ │ │ ├── medal-2-fill.svg │ │ │ ├── medal-2-line.svg │ │ │ ├── medal-fill.svg │ │ │ ├── medal-line.svg │ │ │ ├── pie-chart-2-fill.svg │ │ │ ├── pie-chart-2-line.svg │ │ │ ├── pie-chart-box-fill.svg │ │ │ ├── pie-chart-box-line.svg │ │ │ ├── pie-chart-fill.svg │ │ │ ├── pie-chart-line.svg │ │ │ ├── printer-cloud-fill.svg │ │ │ ├── printer-cloud-line.svg │ │ │ ├── printer-fill.svg │ │ │ ├── printer-line.svg │ │ │ ├── profile-fill.svg │ │ │ ├── profile-line.svg │ │ │ ├── projector-2-fill.svg │ │ │ ├── projector-2-line.svg │ │ │ ├── projector-fill.svg │ │ │ ├── projector-line.svg │ │ │ ├── record-mail-fill.svg │ │ │ ├── record-mail-line.svg │ │ │ ├── registered-fill.svg │ │ │ ├── registered-line.svg │ │ │ ├── reply-all-fill.svg │ │ │ ├── reply-all-line.svg │ │ │ ├── reply-fill.svg │ │ │ ├── reply-line.svg │ │ │ ├── send-plane-2-fill.svg │ │ │ ├── send-plane-2-line.svg │ │ │ ├── send-plane-fill.svg │ │ │ ├── send-plane-line.svg │ │ │ ├── service-fill.svg │ │ │ ├── service-line.svg │ │ │ ├── slideshow-2-fill.svg │ │ │ ├── slideshow-2-line.svg │ │ │ ├── slideshow-3-fill.svg │ │ │ ├── slideshow-3-line.svg │ │ │ ├── slideshow-4-fill.svg │ │ │ ├── slideshow-4-line.svg │ │ │ ├── slideshow-fill.svg │ │ │ ├── slideshow-line.svg │ │ │ ├── stack-fill.svg │ │ │ ├── stack-line.svg │ │ │ ├── trademark-fill.svg │ │ │ ├── trademark-line.svg │ │ │ ├── window-2-fill.svg │ │ │ ├── window-2-line.svg │ │ │ ├── window-fill.svg │ │ │ └── window-line.svg │ │ │ ├── Communication │ │ │ ├── chat-1-fill.svg │ │ │ ├── chat-1-line.svg │ │ │ ├── chat-2-fill.svg │ │ │ ├── chat-2-line.svg │ │ │ ├── chat-3-fill.svg │ │ │ ├── chat-3-line.svg │ │ │ ├── chat-4-fill.svg │ │ │ ├── chat-4-line.svg │ │ │ ├── chat-check-fill.svg │ │ │ ├── chat-check-line.svg │ │ │ ├── chat-delete-fill.svg │ │ │ ├── chat-delete-line.svg │ │ │ ├── chat-download-fill.svg │ │ │ ├── chat-download-line.svg │ │ │ ├── chat-follow-up-fill.svg │ │ │ ├── chat-follow-up-line.svg │ │ │ ├── chat-forward-fill.svg │ │ │ ├── chat-forward-line.svg │ │ │ ├── chat-heart-fill.svg │ │ │ ├── chat-heart-line.svg │ │ │ ├── chat-history-fill.svg │ │ │ ├── chat-history-line.svg │ │ │ ├── chat-new-fill.svg │ │ │ ├── chat-new-line.svg │ │ │ ├── chat-off-fill.svg │ │ │ ├── chat-off-line.svg │ │ │ ├── chat-poll-fill.svg │ │ │ ├── chat-poll-line.svg │ │ │ ├── chat-private-fill.svg │ │ │ ├── chat-private-line.svg │ │ │ ├── chat-quote-fill.svg │ │ │ ├── chat-quote-line.svg │ │ │ ├── chat-settings-fill.svg │ │ │ ├── chat-settings-line.svg │ │ │ ├── chat-smile-2-fill.svg │ │ │ ├── chat-smile-2-line.svg │ │ │ ├── chat-smile-3-fill.svg │ │ │ ├── chat-smile-3-line.svg │ │ │ ├── chat-smile-fill.svg │ │ │ ├── chat-smile-line.svg │ │ │ ├── chat-upload-fill.svg │ │ │ ├── chat-upload-line.svg │ │ │ ├── chat-voice-fill.svg │ │ │ ├── chat-voice-line.svg │ │ │ ├── discuss-fill.svg │ │ │ ├── discuss-line.svg │ │ │ ├── feedback-fill.svg │ │ │ ├── feedback-line.svg │ │ │ ├── message-2-fill.svg │ │ │ ├── message-2-line.svg │ │ │ ├── message-3-fill.svg │ │ │ ├── message-3-line.svg │ │ │ ├── message-fill.svg │ │ │ ├── message-line.svg │ │ │ ├── question-answer-fill.svg │ │ │ ├── question-answer-line.svg │ │ │ ├── questionnaire-fill.svg │ │ │ ├── questionnaire-line.svg │ │ │ ├── video-chat-fill.svg │ │ │ └── video-chat-line.svg │ │ │ ├── Design │ │ │ ├── anticlockwise-2-fill.svg │ │ │ ├── anticlockwise-2-line.svg │ │ │ ├── anticlockwise-fill.svg │ │ │ ├── anticlockwise-line.svg │ │ │ ├── artboard-2-fill.svg │ │ │ ├── artboard-2-line.svg │ │ │ ├── artboard-fill.svg │ │ │ ├── artboard-line.svg │ │ │ ├── ball-pen-fill.svg │ │ │ ├── ball-pen-line.svg │ │ │ ├── blur-off-fill.svg │ │ │ ├── blur-off-line.svg │ │ │ ├── brush-2-fill.svg │ │ │ ├── brush-2-line.svg │ │ │ ├── brush-3-fill.svg │ │ │ ├── brush-3-line.svg │ │ │ ├── brush-4-fill.svg │ │ │ ├── brush-4-line.svg │ │ │ ├── brush-fill.svg │ │ │ ├── brush-line.svg │ │ │ ├── clockwise-2-fill.svg │ │ │ ├── clockwise-2-line.svg │ │ │ ├── clockwise-fill.svg │ │ │ ├── clockwise-line.svg │ │ │ ├── collage-fill.svg │ │ │ ├── collage-line.svg │ │ │ ├── compasses-2-fill.svg │ │ │ ├── compasses-2-line.svg │ │ │ ├── compasses-fill.svg │ │ │ ├── compasses-line.svg │ │ │ ├── contrast-2-fill.svg │ │ │ ├── contrast-2-line.svg │ │ │ ├── contrast-drop-2-fill.svg │ │ │ ├── contrast-drop-2-line.svg │ │ │ ├── contrast-drop-fill.svg │ │ │ ├── contrast-drop-line.svg │ │ │ ├── contrast-fill.svg │ │ │ ├── contrast-line.svg │ │ │ ├── crop-2-fill.svg │ │ │ ├── crop-2-line.svg │ │ │ ├── crop-fill.svg │ │ │ ├── crop-line.svg │ │ │ ├── drag-drop-fill.svg │ │ │ ├── drag-drop-line.svg │ │ │ ├── drag-move-2-fill.svg │ │ │ ├── drag-move-2-line.svg │ │ │ ├── drag-move-fill.svg │ │ │ ├── drag-move-line.svg │ │ │ ├── drop-fill.svg │ │ │ ├── drop-line.svg │ │ │ ├── edit-2-fill.svg │ │ │ ├── edit-2-line.svg │ │ │ ├── edit-box-fill.svg │ │ │ ├── edit-box-line.svg │ │ │ ├── edit-circle-fill.svg │ │ │ ├── edit-circle-line.svg │ │ │ ├── edit-fill.svg │ │ │ ├── edit-line.svg │ │ │ ├── eraser-fill.svg │ │ │ ├── eraser-line.svg │ │ │ ├── focus-2-fill.svg │ │ │ ├── focus-2-line.svg │ │ │ ├── focus-3-fill.svg │ │ │ ├── focus-3-line.svg │ │ │ ├── focus-fill.svg │ │ │ ├── focus-line.svg │ │ │ ├── grid-fill.svg │ │ │ ├── grid-line.svg │ │ │ ├── hammer-fill.svg │ │ │ ├── hammer-line.svg │ │ │ ├── ink-bottle-fill.svg │ │ │ ├── ink-bottle-line.svg │ │ │ ├── input-method-fill.svg │ │ │ ├── input-method-line.svg │ │ │ ├── layout-2-fill.svg │ │ │ ├── layout-2-line.svg │ │ │ ├── layout-3-fill.svg │ │ │ ├── layout-3-line.svg │ │ │ ├── layout-4-fill.svg │ │ │ ├── layout-4-line.svg │ │ │ ├── layout-5-fill.svg │ │ │ ├── layout-5-line.svg │ │ │ ├── layout-6-fill.svg │ │ │ ├── layout-6-line.svg │ │ │ ├── layout-bottom-2-fill.svg │ │ │ ├── layout-bottom-2-line.svg │ │ │ ├── layout-bottom-fill.svg │ │ │ ├── layout-bottom-line.svg │ │ │ ├── layout-column-fill.svg │ │ │ ├── layout-column-line.svg │ │ │ ├── layout-fill.svg │ │ │ ├── layout-grid-fill.svg │ │ │ ├── layout-grid-line.svg │ │ │ ├── layout-left-2-fill.svg │ │ │ ├── layout-left-2-line.svg │ │ │ ├── layout-left-fill.svg │ │ │ ├── layout-left-line.svg │ │ │ ├── layout-line.svg │ │ │ ├── layout-masonry-fill.svg │ │ │ ├── layout-masonry-line.svg │ │ │ ├── layout-right-2-fill.svg │ │ │ ├── layout-right-2-line.svg │ │ │ ├── layout-right-fill.svg │ │ │ ├── layout-right-line.svg │ │ │ ├── layout-row-fill.svg │ │ │ ├── layout-row-line.svg │ │ │ ├── layout-top-2-fill.svg │ │ │ ├── layout-top-2-line.svg │ │ │ ├── layout-top-fill.svg │ │ │ ├── layout-top-line.svg │ │ │ ├── magic-fill.svg │ │ │ ├── magic-line.svg │ │ │ ├── mark-pen-fill.svg │ │ │ ├── mark-pen-line.svg │ │ │ ├── markup-fill.svg │ │ │ ├── markup-line.svg │ │ │ ├── paint-brush-fill.svg │ │ │ ├── paint-brush-line.svg │ │ │ ├── paint-fill.svg │ │ │ ├── paint-line.svg │ │ │ ├── palette-fill.svg │ │ │ ├── palette-line.svg │ │ │ ├── pantone-fill.svg │ │ │ ├── pantone-line.svg │ │ │ ├── pen-nib-fill.svg │ │ │ ├── pen-nib-line.svg │ │ │ ├── pencil-fill.svg │ │ │ ├── pencil-line.svg │ │ │ ├── pencil-ruler-2-fill.svg │ │ │ ├── pencil-ruler-2-line.svg │ │ │ ├── pencil-ruler-fill.svg │ │ │ ├── pencil-ruler-line.svg │ │ │ ├── quill-pen-fill.svg │ │ │ ├── quill-pen-line.svg │ │ │ ├── ruler-2-fill.svg │ │ │ ├── ruler-2-line.svg │ │ │ ├── ruler-fill.svg │ │ │ ├── ruler-line.svg │ │ │ ├── scissors-2-fill.svg │ │ │ ├── scissors-2-line.svg │ │ │ ├── scissors-cut-fill.svg │ │ │ ├── scissors-cut-line.svg │ │ │ ├── scissors-fill.svg │ │ │ ├── scissors-line.svg │ │ │ ├── screenshot-2-fill.svg │ │ │ ├── screenshot-2-line.svg │ │ │ ├── screenshot-fill.svg │ │ │ ├── screenshot-line.svg │ │ │ ├── shape-2-fill.svg │ │ │ ├── shape-2-line.svg │ │ │ ├── shape-fill.svg │ │ │ ├── shape-line.svg │ │ │ ├── sip-fill.svg │ │ │ ├── sip-line.svg │ │ │ ├── slice-fill.svg │ │ │ ├── slice-line.svg │ │ │ ├── t-box-fill.svg │ │ │ ├── t-box-line.svg │ │ │ ├── table-alt-fill.svg │ │ │ ├── table-alt-line.svg │ │ │ ├── table-fill.svg │ │ │ ├── table-line.svg │ │ │ ├── tools-fill.svg │ │ │ └── tools-line.svg │ │ │ ├── Development │ │ │ ├── braces-fill.svg │ │ │ ├── braces-line.svg │ │ │ ├── brackets-fill.svg │ │ │ ├── brackets-line.svg │ │ │ ├── bug-2-fill.svg │ │ │ ├── bug-2-line.svg │ │ │ ├── bug-fill.svg │ │ │ ├── bug-line.svg │ │ │ ├── code-box-fill.svg │ │ │ ├── code-box-line.svg │ │ │ ├── code-fill.svg │ │ │ ├── code-line.svg │ │ │ ├── code-s-fill.svg │ │ │ ├── code-s-line.svg │ │ │ ├── code-s-slash-fill.svg │ │ │ ├── code-s-slash-line.svg │ │ │ ├── command-fill.svg │ │ │ ├── command-line.svg │ │ │ ├── css3-fill.svg │ │ │ ├── css3-line.svg │ │ │ ├── cursor-fill.svg │ │ │ ├── cursor-line.svg │ │ │ ├── git-branch-fill.svg │ │ │ ├── git-branch-line.svg │ │ │ ├── git-commit-fill.svg │ │ │ ├── git-commit-line.svg │ │ │ ├── git-merge-fill.svg │ │ │ ├── git-merge-line.svg │ │ │ ├── git-pull-request-fill.svg │ │ │ ├── git-pull-request-line.svg │ │ │ ├── git-repository-commits-fill.svg │ │ │ ├── git-repository-commits-line.svg │ │ │ ├── git-repository-fill.svg │ │ │ ├── git-repository-line.svg │ │ │ ├── git-repository-private-fill.svg │ │ │ ├── git-repository-private-line.svg │ │ │ ├── html5-fill.svg │ │ │ ├── html5-line.svg │ │ │ ├── parentheses-fill.svg │ │ │ ├── parentheses-line.svg │ │ │ ├── terminal-box-fill.svg │ │ │ ├── terminal-box-line.svg │ │ │ ├── terminal-fill.svg │ │ │ ├── terminal-line.svg │ │ │ ├── terminal-window-fill.svg │ │ │ └── terminal-window-line.svg │ │ │ ├── Device │ │ │ ├── airplay-fill.svg │ │ │ ├── airplay-line.svg │ │ │ ├── barcode-box-fill.svg │ │ │ ├── barcode-box-line.svg │ │ │ ├── barcode-fill.svg │ │ │ ├── barcode-line.svg │ │ │ ├── base-station-fill.svg │ │ │ ├── base-station-line.svg │ │ │ ├── battery-2-charge-fill.svg │ │ │ ├── battery-2-charge-line.svg │ │ │ ├── battery-2-fill.svg │ │ │ ├── battery-2-line.svg │ │ │ ├── battery-charge-fill.svg │ │ │ ├── battery-charge-line.svg │ │ │ ├── battery-fill.svg │ │ │ ├── battery-line.svg │ │ │ ├── battery-low-fill.svg │ │ │ ├── battery-low-line.svg │ │ │ ├── battery-saver-fill.svg │ │ │ ├── battery-saver-line.svg │ │ │ ├── battery-share-fill.svg │ │ │ ├── battery-share-line.svg │ │ │ ├── bluetooth-connect-fill.svg │ │ │ ├── bluetooth-connect-line.svg │ │ │ ├── bluetooth-fill.svg │ │ │ ├── bluetooth-line.svg │ │ │ ├── cast-fill.svg │ │ │ ├── cast-line.svg │ │ │ ├── cellphone-fill.svg │ │ │ ├── cellphone-line.svg │ │ │ ├── computer-fill.svg │ │ │ ├── computer-line.svg │ │ │ ├── cpu-fill.svg │ │ │ ├── cpu-line.svg │ │ │ ├── dashboard-2-fill.svg │ │ │ ├── dashboard-2-line.svg │ │ │ ├── dashboard-3-fill.svg │ │ │ ├── dashboard-3-line.svg │ │ │ ├── database-2-fill.svg │ │ │ ├── database-2-line.svg │ │ │ ├── database-fill.svg │ │ │ ├── database-line.svg │ │ │ ├── device-fill.svg │ │ │ ├── device-line.svg │ │ │ ├── device-recover-fill.svg │ │ │ ├── device-recover-line.svg │ │ │ ├── dual-sim-1-fill.svg │ │ │ ├── dual-sim-1-line.svg │ │ │ ├── dual-sim-2-fill.svg │ │ │ ├── dual-sim-2-line.svg │ │ │ ├── fingerprint-2-fill.svg │ │ │ ├── fingerprint-2-line.svg │ │ │ ├── fingerprint-fill.svg │ │ │ ├── fingerprint-line.svg │ │ │ ├── gamepad-fill.svg │ │ │ ├── gamepad-line.svg │ │ │ ├── gps-fill.svg │ │ │ ├── gps-line.svg │ │ │ ├── gradienter-fill.svg │ │ │ ├── gradienter-line.svg │ │ │ ├── hard-drive-2-fill.svg │ │ │ ├── hard-drive-2-line.svg │ │ │ ├── hard-drive-fill.svg │ │ │ ├── hard-drive-line.svg │ │ │ ├── hotspot-fill.svg │ │ │ ├── hotspot-line.svg │ │ │ ├── install-fill.svg │ │ │ ├── install-line.svg │ │ │ ├── keyboard-box-fill.svg │ │ │ ├── keyboard-box-line.svg │ │ │ ├── keyboard-fill.svg │ │ │ ├── keyboard-line.svg │ │ │ ├── mac-fill.svg │ │ │ ├── mac-line.svg │ │ │ ├── macbook-fill.svg │ │ │ ├── macbook-line.svg │ │ │ ├── mouse-fill.svg │ │ │ ├── mouse-line.svg │ │ │ ├── phone-fill.svg │ │ │ ├── phone-find-fill.svg │ │ │ ├── phone-find-line.svg │ │ │ ├── phone-line.svg │ │ │ ├── phone-lock-fill.svg │ │ │ ├── phone-lock-line.svg │ │ │ ├── qr-code-fill.svg │ │ │ ├── qr-code-line.svg │ │ │ ├── qr-scan-2-fill.svg │ │ │ ├── qr-scan-2-line.svg │ │ │ ├── qr-scan-fill.svg │ │ │ ├── qr-scan-line.svg │ │ │ ├── radar-fill.svg │ │ │ ├── radar-line.svg │ │ │ ├── remote-control-2-fill.svg │ │ │ ├── remote-control-2-line.svg │ │ │ ├── remote-control-fill.svg │ │ │ ├── remote-control-line.svg │ │ │ ├── restart-fill.svg │ │ │ ├── restart-line.svg │ │ │ ├── rotate-lock-fill.svg │ │ │ ├── rotate-lock-line.svg │ │ │ ├── router-fill.svg │ │ │ ├── router-line.svg │ │ │ ├── rss-fill.svg │ │ │ ├── rss-line.svg │ │ │ ├── save-2-fill.svg │ │ │ ├── save-2-line.svg │ │ │ ├── save-3-fill.svg │ │ │ ├── save-3-line.svg │ │ │ ├── save-fill.svg │ │ │ ├── save-line.svg │ │ │ ├── scan-2-fill.svg │ │ │ ├── scan-2-line.svg │ │ │ ├── scan-fill.svg │ │ │ ├── scan-line.svg │ │ │ ├── sd-card-fill.svg │ │ │ ├── sd-card-line.svg │ │ │ ├── sd-card-mini-fill.svg │ │ │ ├── sd-card-mini-line.svg │ │ │ ├── sensor-fill.svg │ │ │ ├── sensor-line.svg │ │ │ ├── server-fill.svg │ │ │ ├── server-line.svg │ │ │ ├── shut-down-fill.svg │ │ │ ├── shut-down-line.svg │ │ │ ├── signal-wifi-1-fill.svg │ │ │ ├── signal-wifi-1-line.svg │ │ │ ├── signal-wifi-2-fill.svg │ │ │ ├── signal-wifi-2-line.svg │ │ │ ├── signal-wifi-3-fill.svg │ │ │ ├── signal-wifi-3-line.svg │ │ │ ├── signal-wifi-error-fill.svg │ │ │ ├── signal-wifi-error-line.svg │ │ │ ├── signal-wifi-fill.svg │ │ │ ├── signal-wifi-line.svg │ │ │ ├── signal-wifi-off-fill.svg │ │ │ ├── signal-wifi-off-line.svg │ │ │ ├── sim-card-2-fill.svg │ │ │ ├── sim-card-2-line.svg │ │ │ ├── sim-card-fill.svg │ │ │ ├── sim-card-line.svg │ │ │ ├── smartphone-fill.svg │ │ │ ├── smartphone-line.svg │ │ │ ├── tablet-fill.svg │ │ │ ├── tablet-line.svg │ │ │ ├── tv-2-fill.svg │ │ │ ├── tv-2-line.svg │ │ │ ├── tv-fill.svg │ │ │ ├── tv-line.svg │ │ │ ├── u-disk-fill.svg │ │ │ ├── u-disk-line.svg │ │ │ ├── uninstall-fill.svg │ │ │ ├── uninstall-line.svg │ │ │ ├── usb-fill.svg │ │ │ ├── usb-line.svg │ │ │ ├── wifi-fill.svg │ │ │ ├── wifi-line.svg │ │ │ ├── wifi-off-fill.svg │ │ │ ├── wifi-off-line.svg │ │ │ ├── wireless-charging-fill.svg │ │ │ └── wireless-charging-line.svg │ │ │ ├── Document │ │ │ ├── article-fill.svg │ │ │ ├── article-line.svg │ │ │ ├── bill-fill.svg │ │ │ ├── bill-line.svg │ │ │ ├── book-2-fill.svg │ │ │ ├── book-2-line.svg │ │ │ ├── book-3-fill.svg │ │ │ ├── book-3-line.svg │ │ │ ├── book-fill.svg │ │ │ ├── book-line.svg │ │ │ ├── book-mark-fill.svg │ │ │ ├── book-mark-line.svg │ │ │ ├── book-open-fill.svg │ │ │ ├── book-open-line.svg │ │ │ ├── book-read-fill.svg │ │ │ ├── book-read-line.svg │ │ │ ├── booklet-fill.svg │ │ │ ├── booklet-line.svg │ │ │ ├── clipboard-fill.svg │ │ │ ├── clipboard-line.svg │ │ │ ├── contacts-book-2-fill.svg │ │ │ ├── contacts-book-2-line.svg │ │ │ ├── contacts-book-fill.svg │ │ │ ├── contacts-book-line.svg │ │ │ ├── contacts-book-upload-fill.svg │ │ │ ├── contacts-book-upload-line.svg │ │ │ ├── draft-fill.svg │ │ │ ├── draft-line.svg │ │ │ ├── file-2-fill.svg │ │ │ ├── file-2-line.svg │ │ │ ├── file-3-fill.svg │ │ │ ├── file-3-line.svg │ │ │ ├── file-4-fill.svg │ │ │ ├── file-4-line.svg │ │ │ ├── file-add-fill.svg │ │ │ ├── file-add-line.svg │ │ │ ├── file-chart-2-fill.svg │ │ │ ├── file-chart-2-line.svg │ │ │ ├── file-chart-fill.svg │ │ │ ├── file-chart-line.svg │ │ │ ├── file-cloud-fill.svg │ │ │ ├── file-cloud-line.svg │ │ │ ├── file-code-fill.svg │ │ │ ├── file-code-line.svg │ │ │ ├── file-copy-2-fill.svg │ │ │ ├── file-copy-2-line.svg │ │ │ ├── file-copy-fill.svg │ │ │ ├── file-copy-line.svg │ │ │ ├── file-damage-fill.svg │ │ │ ├── file-damage-line.svg │ │ │ ├── file-download-fill.svg │ │ │ ├── file-download-line.svg │ │ │ ├── file-edit-fill.svg │ │ │ ├── file-edit-line.svg │ │ │ ├── file-excel-2-fill.svg │ │ │ ├── file-excel-2-line.svg │ │ │ ├── file-excel-fill.svg │ │ │ ├── file-excel-line.svg │ │ │ ├── file-fill.svg │ │ │ ├── file-forbid-fill.svg │ │ │ ├── file-forbid-line.svg │ │ │ ├── file-gif-fill.svg │ │ │ ├── file-gif-line.svg │ │ │ ├── file-history-fill.svg │ │ │ ├── file-history-line.svg │ │ │ ├── file-hwp-fill.svg │ │ │ ├── file-hwp-line.svg │ │ │ ├── file-info-fill.svg │ │ │ ├── file-info-line.svg │ │ │ ├── file-line.svg │ │ │ ├── file-list-2-fill.svg │ │ │ ├── file-list-2-line.svg │ │ │ ├── file-list-3-fill.svg │ │ │ ├── file-list-3-line.svg │ │ │ ├── file-list-fill.svg │ │ │ ├── file-list-line.svg │ │ │ ├── file-lock-fill.svg │ │ │ ├── file-lock-line.svg │ │ │ ├── file-mark-fill.svg │ │ │ ├── file-mark-line.svg │ │ │ ├── file-music-fill.svg │ │ │ ├── file-music-line.svg │ │ │ ├── file-paper-2-fill.svg │ │ │ ├── file-paper-2-line.svg │ │ │ ├── file-paper-fill.svg │ │ │ ├── file-paper-line.svg │ │ │ ├── file-pdf-fill.svg │ │ │ ├── file-pdf-line.svg │ │ │ ├── file-ppt-2-fill.svg │ │ │ ├── file-ppt-2-line.svg │ │ │ ├── file-ppt-fill.svg │ │ │ ├── file-ppt-line.svg │ │ │ ├── file-reduce-fill.svg │ │ │ ├── file-reduce-line.svg │ │ │ ├── file-search-fill.svg │ │ │ ├── file-search-line.svg │ │ │ ├── file-settings-fill.svg │ │ │ ├── file-settings-line.svg │ │ │ ├── file-shield-2-fill.svg │ │ │ ├── file-shield-2-line.svg │ │ │ ├── file-shield-fill.svg │ │ │ ├── file-shield-line.svg │ │ │ ├── file-shred-fill.svg │ │ │ ├── file-shred-line.svg │ │ │ ├── file-text-fill.svg │ │ │ ├── file-text-line.svg │ │ │ ├── file-transfer-fill.svg │ │ │ ├── file-transfer-line.svg │ │ │ ├── file-unknow-fill.svg │ │ │ ├── file-unknow-line.svg │ │ │ ├── file-upload-fill.svg │ │ │ ├── file-upload-line.svg │ │ │ ├── file-user-fill.svg │ │ │ ├── file-user-line.svg │ │ │ ├── file-warning-fill.svg │ │ │ ├── file-warning-line.svg │ │ │ ├── file-word-2-fill.svg │ │ │ ├── file-word-2-line.svg │ │ │ ├── file-word-fill.svg │ │ │ ├── file-word-line.svg │ │ │ ├── file-zip-fill.svg │ │ │ ├── file-zip-line.svg │ │ │ ├── folder-2-fill.svg │ │ │ ├── folder-2-line.svg │ │ │ ├── folder-3-fill.svg │ │ │ ├── folder-3-line.svg │ │ │ ├── folder-4-fill.svg │ │ │ ├── folder-4-line.svg │ │ │ ├── folder-5-fill.svg │ │ │ ├── folder-5-line.svg │ │ │ ├── folder-add-fill.svg │ │ │ ├── folder-add-line.svg │ │ │ ├── folder-chart-2-fill.svg │ │ │ ├── folder-chart-2-line.svg │ │ │ ├── folder-chart-fill.svg │ │ │ ├── folder-chart-line.svg │ │ │ ├── folder-download-fill.svg │ │ │ ├── folder-download-line.svg │ │ │ ├── folder-fill.svg │ │ │ ├── folder-forbid-fill.svg │ │ │ ├── folder-forbid-line.svg │ │ │ ├── folder-history-fill.svg │ │ │ ├── folder-history-line.svg │ │ │ ├── folder-info-fill.svg │ │ │ ├── folder-info-line.svg │ │ │ ├── folder-keyhole-fill.svg │ │ │ ├── folder-keyhole-line.svg │ │ │ ├── folder-line.svg │ │ │ ├── folder-lock-fill.svg │ │ │ ├── folder-lock-line.svg │ │ │ ├── folder-music-fill.svg │ │ │ ├── folder-music-line.svg │ │ │ ├── folder-open-fill.svg │ │ │ ├── folder-open-line.svg │ │ │ ├── folder-received-fill.svg │ │ │ ├── folder-received-line.svg │ │ │ ├── folder-reduce-fill.svg │ │ │ ├── folder-reduce-line.svg │ │ │ ├── folder-settings-fill.svg │ │ │ ├── folder-settings-line.svg │ │ │ ├── folder-shared-fill.svg │ │ │ ├── folder-shared-line.svg │ │ │ ├── folder-shield-2-fill.svg │ │ │ ├── folder-shield-2-line.svg │ │ │ ├── folder-shield-fill.svg │ │ │ ├── folder-shield-line.svg │ │ │ ├── folder-transfer-fill.svg │ │ │ ├── folder-transfer-line.svg │ │ │ ├── folder-unknow-fill.svg │ │ │ ├── folder-unknow-line.svg │ │ │ ├── folder-upload-fill.svg │ │ │ ├── folder-upload-line.svg │ │ │ ├── folder-user-fill.svg │ │ │ ├── folder-user-line.svg │ │ │ ├── folder-warning-fill.svg │ │ │ ├── folder-warning-line.svg │ │ │ ├── folder-zip-fill.svg │ │ │ ├── folder-zip-line.svg │ │ │ ├── folders-fill.svg │ │ │ ├── folders-line.svg │ │ │ ├── keynote-fill.svg │ │ │ ├── keynote-line.svg │ │ │ ├── markdown-fill.svg │ │ │ ├── markdown-line.svg │ │ │ ├── newspaper-fill.svg │ │ │ ├── newspaper-line.svg │ │ │ ├── numbers-fill.svg │ │ │ ├── numbers-line.svg │ │ │ ├── pages-fill.svg │ │ │ ├── pages-line.svg │ │ │ ├── sticky-note-2-fill.svg │ │ │ ├── sticky-note-2-line.svg │ │ │ ├── sticky-note-fill.svg │ │ │ ├── sticky-note-line.svg │ │ │ ├── survey-fill.svg │ │ │ ├── survey-line.svg │ │ │ ├── task-fill.svg │ │ │ ├── task-line.svg │ │ │ ├── todo-fill.svg │ │ │ └── todo-line.svg │ │ │ ├── Editor │ │ │ ├── a-b.svg │ │ │ ├── align-bottom.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── align-top.svg │ │ │ ├── align-vertically.svg │ │ │ ├── asterisk.svg │ │ │ ├── attachment-2.svg │ │ │ ├── bold.svg │ │ │ ├── bring-forward.svg │ │ │ ├── bring-to-front.svg │ │ │ ├── code-view.svg │ │ │ ├── delete-column.svg │ │ │ ├── delete-row.svg │ │ │ ├── double-quotes-l.svg │ │ │ ├── double-quotes-r.svg │ │ │ ├── emphasis-cn.svg │ │ │ ├── emphasis.svg │ │ │ ├── english-input.svg │ │ │ ├── flow-chart.svg │ │ │ ├── font-color.svg │ │ │ ├── font-size-2.svg │ │ │ ├── font-size.svg │ │ │ ├── format-clear.svg │ │ │ ├── functions.svg │ │ │ ├── h-1.svg │ │ │ ├── h-2.svg │ │ │ ├── h-3.svg │ │ │ ├── h-4.svg │ │ │ ├── h-5.svg │ │ │ ├── h-6.svg │ │ │ ├── hashtag.svg │ │ │ ├── heading.svg │ │ │ ├── indent-decrease.svg │ │ │ ├── indent-increase.svg │ │ │ ├── input-cursor-move.svg │ │ │ ├── insert-column-left.svg │ │ │ ├── insert-column-right.svg │ │ │ ├── insert-row-bottom.svg │ │ │ ├── insert-row-top.svg │ │ │ ├── italic.svg │ │ │ ├── line-height.svg │ │ │ ├── link-m.svg │ │ │ ├── link-unlink-m.svg │ │ │ ├── link-unlink.svg │ │ │ ├── link.svg │ │ │ ├── list-check-2.svg │ │ │ ├── list-check.svg │ │ │ ├── list-ordered.svg │ │ │ ├── list-unordered.svg │ │ │ ├── merge-cells-horizontal.svg │ │ │ ├── merge-cells-vertical.svg │ │ │ ├── mind-map.svg │ │ │ ├── node-tree.svg │ │ │ ├── number-0.svg │ │ │ ├── number-1.svg │ │ │ ├── number-2.svg │ │ │ ├── number-3.svg │ │ │ ├── number-4.svg │ │ │ ├── number-5.svg │ │ │ ├── number-6.svg │ │ │ ├── number-7.svg │ │ │ ├── number-8.svg │ │ │ ├── number-9.svg │ │ │ ├── omega.svg │ │ │ ├── organization-chart.svg │ │ │ ├── page-separator.svg │ │ │ ├── paragraph.svg │ │ │ ├── pinyin-input.svg │ │ │ ├── question-mark.svg │ │ │ ├── rounded-corner.svg │ │ │ ├── send-backward.svg │ │ │ ├── send-to-back.svg │ │ │ ├── separator.svg │ │ │ ├── single-quotes-l.svg │ │ │ ├── single-quotes-r.svg │ │ │ ├── sort-asc.svg │ │ │ ├── sort-desc.svg │ │ │ ├── space.svg │ │ │ ├── split-cells-horizontal.svg │ │ │ ├── split-cells-vertical.svg │ │ │ ├── strikethrough-2.svg │ │ │ ├── strikethrough.svg │ │ │ ├── subscript-2.svg │ │ │ ├── subscript.svg │ │ │ ├── superscript-2.svg │ │ │ ├── superscript.svg │ │ │ ├── table-2.svg │ │ │ ├── text-direction-l.svg │ │ │ ├── text-direction-r.svg │ │ │ ├── text-spacing.svg │ │ │ ├── text-wrap.svg │ │ │ ├── text.svg │ │ │ ├── translate-2.svg │ │ │ ├── translate.svg │ │ │ ├── underline.svg │ │ │ └── wubi-input.svg │ │ │ ├── Finance │ │ │ ├── 24-hours-fill.svg │ │ │ ├── 24-hours-line.svg │ │ │ ├── auction-fill.svg │ │ │ ├── auction-line.svg │ │ │ ├── bank-card-2-fill.svg │ │ │ ├── bank-card-2-line.svg │ │ │ ├── bank-card-fill.svg │ │ │ ├── bank-card-line.svg │ │ │ ├── bit-coin-fill.svg │ │ │ ├── bit-coin-line.svg │ │ │ ├── coin-fill.svg │ │ │ ├── coin-line.svg │ │ │ ├── coins-fill.svg │ │ │ ├── coins-line.svg │ │ │ ├── copper-coin-fill.svg │ │ │ ├── copper-coin-line.svg │ │ │ ├── copper-diamond-fill.svg │ │ │ ├── copper-diamond-line.svg │ │ │ ├── coupon-2-fill.svg │ │ │ ├── coupon-2-line.svg │ │ │ ├── coupon-3-fill.svg │ │ │ ├── coupon-3-line.svg │ │ │ ├── coupon-4-fill.svg │ │ │ ├── coupon-4-line.svg │ │ │ ├── coupon-5-fill.svg │ │ │ ├── coupon-5-line.svg │ │ │ ├── coupon-fill.svg │ │ │ ├── coupon-line.svg │ │ │ ├── currency-fill.svg │ │ │ ├── currency-line.svg │ │ │ ├── exchange-box-fill.svg │ │ │ ├── exchange-box-line.svg │ │ │ ├── exchange-cny-fill.svg │ │ │ ├── exchange-cny-line.svg │ │ │ ├── exchange-dollar-fill.svg │ │ │ ├── exchange-dollar-line.svg │ │ │ ├── exchange-fill.svg │ │ │ ├── exchange-funds-fill.svg │ │ │ ├── exchange-funds-line.svg │ │ │ ├── exchange-line.svg │ │ │ ├── funds-box-fill.svg │ │ │ ├── funds-box-line.svg │ │ │ ├── funds-fill.svg │ │ │ ├── funds-line.svg │ │ │ ├── gift-2-fill.svg │ │ │ ├── gift-2-line.svg │ │ │ ├── gift-fill.svg │ │ │ ├── gift-line.svg │ │ │ ├── hand-coin-fill.svg │ │ │ ├── hand-coin-line.svg │ │ │ ├── hand-heart-fill.svg │ │ │ ├── hand-heart-line.svg │ │ │ ├── increase-decrease-fill.svg │ │ │ ├── increase-decrease-line.svg │ │ │ ├── money-cny-box-fill.svg │ │ │ ├── money-cny-box-line.svg │ │ │ ├── money-cny-circle-fill.svg │ │ │ ├── money-cny-circle-line.svg │ │ │ ├── money-dollar-box-fill.svg │ │ │ ├── money-dollar-box-line.svg │ │ │ ├── money-dollar-circle-fill.svg │ │ │ ├── money-dollar-circle-line.svg │ │ │ ├── money-euro-box-fill.svg │ │ │ ├── money-euro-box-line.svg │ │ │ ├── money-euro-circle-fill.svg │ │ │ ├── money-euro-circle-line.svg │ │ │ ├── money-pound-box-fill.svg │ │ │ ├── money-pound-box-line.svg │ │ │ ├── money-pound-circle-fill.svg │ │ │ ├── money-pound-circle-line.svg │ │ │ ├── percent-fill.svg │ │ │ ├── percent-line.svg │ │ │ ├── price-tag-2-fill.svg │ │ │ ├── price-tag-2-line.svg │ │ │ ├── price-tag-3-fill.svg │ │ │ ├── price-tag-3-line.svg │ │ │ ├── price-tag-fill.svg │ │ │ ├── price-tag-line.svg │ │ │ ├── red-packet-fill.svg │ │ │ ├── red-packet-line.svg │ │ │ ├── refund-2-fill.svg │ │ │ ├── refund-2-line.svg │ │ │ ├── refund-fill.svg │ │ │ ├── refund-line.svg │ │ │ ├── safe-2-fill.svg │ │ │ ├── safe-2-line.svg │ │ │ ├── safe-fill.svg │ │ │ ├── safe-line.svg │ │ │ ├── secure-payment-fill.svg │ │ │ ├── secure-payment-line.svg │ │ │ ├── shopping-bag-2-fill.svg │ │ │ ├── shopping-bag-2-line.svg │ │ │ ├── shopping-bag-3-fill.svg │ │ │ ├── shopping-bag-3-line.svg │ │ │ ├── shopping-bag-fill.svg │ │ │ ├── shopping-bag-line.svg │ │ │ ├── shopping-basket-2-fill.svg │ │ │ ├── shopping-basket-2-line.svg │ │ │ ├── shopping-basket-fill.svg │ │ │ ├── shopping-basket-line.svg │ │ │ ├── shopping-cart-2-fill.svg │ │ │ ├── shopping-cart-2-line.svg │ │ │ ├── shopping-cart-fill.svg │ │ │ ├── shopping-cart-line.svg │ │ │ ├── stock-fill.svg │ │ │ ├── stock-line.svg │ │ │ ├── swap-box-fill.svg │ │ │ ├── swap-box-line.svg │ │ │ ├── swap-fill.svg │ │ │ ├── swap-line.svg │ │ │ ├── ticket-2-fill.svg │ │ │ ├── ticket-2-line.svg │ │ │ ├── ticket-fill.svg │ │ │ ├── ticket-line.svg │ │ │ ├── trophy-fill.svg │ │ │ ├── trophy-line.svg │ │ │ ├── vip-crown-2-fill.svg │ │ │ ├── vip-crown-2-line.svg │ │ │ ├── vip-crown-fill.svg │ │ │ ├── vip-crown-line.svg │ │ │ ├── vip-diamond-fill.svg │ │ │ ├── vip-diamond-line.svg │ │ │ ├── vip-fill.svg │ │ │ ├── vip-line.svg │ │ │ ├── wallet-2-fill.svg │ │ │ ├── wallet-2-line.svg │ │ │ ├── wallet-3-fill.svg │ │ │ ├── wallet-3-line.svg │ │ │ ├── wallet-fill.svg │ │ │ ├── wallet-line.svg │ │ │ ├── water-flash-fill.svg │ │ │ └── water-flash-line.svg │ │ │ ├── Health │ │ │ ├── capsule-fill.svg │ │ │ ├── capsule-line.svg │ │ │ ├── dislike-fill.svg │ │ │ ├── dislike-line.svg │ │ │ ├── dossier-fill.svg │ │ │ ├── dossier-line.svg │ │ │ ├── empathize-fill.svg │ │ │ ├── empathize-line.svg │ │ │ ├── first-aid-kit-fill.svg │ │ │ ├── first-aid-kit-line.svg │ │ │ ├── flask-fill.svg │ │ │ ├── flask-line.svg │ │ │ ├── hand-sanitizer-fill.svg │ │ │ ├── hand-sanitizer-line.svg │ │ │ ├── health-book-fill.svg │ │ │ ├── health-book-line.svg │ │ │ ├── heart-2-fill.svg │ │ │ ├── heart-2-line.svg │ │ │ ├── heart-3-fill.svg │ │ │ ├── heart-3-line.svg │ │ │ ├── heart-add-fill.svg │ │ │ ├── heart-add-line.svg │ │ │ ├── heart-fill.svg │ │ │ ├── heart-line.svg │ │ │ ├── heart-pulse-fill.svg │ │ │ ├── heart-pulse-line.svg │ │ │ ├── hearts-fill.svg │ │ │ ├── hearts-line.svg │ │ │ ├── infrared-thermometer-fill.svg │ │ │ ├── infrared-thermometer-line.svg │ │ │ ├── lungs-fill.svg │ │ │ ├── lungs-line.svg │ │ │ ├── medicine-bottle-fill.svg │ │ │ ├── medicine-bottle-line.svg │ │ │ ├── mental-health-fill.svg │ │ │ ├── mental-health-line.svg │ │ │ ├── microscope-fill.svg │ │ │ ├── microscope-line.svg │ │ │ ├── nurse-fill.svg │ │ │ ├── nurse-line.svg │ │ │ ├── psychotherapy-fill.svg │ │ │ ├── psychotherapy-line.svg │ │ │ ├── pulse-fill.svg │ │ │ ├── pulse-line.svg │ │ │ ├── rest-time-fill.svg │ │ │ ├── rest-time-line.svg │ │ │ ├── stethoscope-fill.svg │ │ │ ├── stethoscope-line.svg │ │ │ ├── surgical-mask-fill.svg │ │ │ ├── surgical-mask-line.svg │ │ │ ├── syringe-fill.svg │ │ │ ├── syringe-line.svg │ │ │ ├── test-tube-fill.svg │ │ │ ├── test-tube-line.svg │ │ │ ├── thermometer-fill.svg │ │ │ ├── thermometer-line.svg │ │ │ ├── virus-fill.svg │ │ │ ├── virus-line.svg │ │ │ ├── zzz-fill.svg │ │ │ └── zzz-line.svg │ │ │ ├── Logos │ │ │ ├── alipay-fill.svg │ │ │ ├── alipay-line.svg │ │ │ ├── amazon-fill.svg │ │ │ ├── amazon-line.svg │ │ │ ├── android-fill.svg │ │ │ ├── android-line.svg │ │ │ ├── angularjs-fill.svg │ │ │ ├── angularjs-line.svg │ │ │ ├── app-store-fill.svg │ │ │ ├── app-store-line.svg │ │ │ ├── apple-fill.svg │ │ │ ├── apple-line.svg │ │ │ ├── baidu-fill.svg │ │ │ ├── baidu-line.svg │ │ │ ├── behance-fill.svg │ │ │ ├── behance-line.svg │ │ │ ├── bilibili-fill.svg │ │ │ ├── bilibili-line.svg │ │ │ ├── centos-fill.svg │ │ │ ├── centos-line.svg │ │ │ ├── chrome-fill.svg │ │ │ ├── chrome-line.svg │ │ │ ├── codepen-fill.svg │ │ │ ├── codepen-line.svg │ │ │ ├── coreos-fill.svg │ │ │ ├── coreos-line.svg │ │ │ ├── dingding-fill.svg │ │ │ ├── dingding-line.svg │ │ │ ├── discord-fill.svg │ │ │ ├── discord-line.svg │ │ │ ├── disqus-fill.svg │ │ │ ├── disqus-line.svg │ │ │ ├── douban-fill.svg │ │ │ ├── douban-line.svg │ │ │ ├── dribbble-fill.svg │ │ │ ├── dribbble-line.svg │ │ │ ├── drive-fill.svg │ │ │ ├── drive-line.svg │ │ │ ├── dropbox-fill.svg │ │ │ ├── dropbox-line.svg │ │ │ ├── edge-fill.svg │ │ │ ├── edge-line.svg │ │ │ ├── evernote-fill.svg │ │ │ ├── evernote-line.svg │ │ │ ├── facebook-box-fill.svg │ │ │ ├── facebook-box-line.svg │ │ │ ├── facebook-circle-fill.svg │ │ │ ├── facebook-circle-line.svg │ │ │ ├── facebook-fill.svg │ │ │ ├── facebook-line.svg │ │ │ ├── finder-fill.svg │ │ │ ├── finder-line.svg │ │ │ ├── firefox-fill.svg │ │ │ ├── firefox-line.svg │ │ │ ├── flutter-fill.svg │ │ │ ├── flutter-line.svg │ │ │ ├── gatsby-fill.svg │ │ │ ├── gatsby-line.svg │ │ │ ├── github-fill.svg │ │ │ ├── github-line.svg │ │ │ ├── gitlab-fill.svg │ │ │ ├── gitlab-line.svg │ │ │ ├── google-fill.svg │ │ │ ├── google-line.svg │ │ │ ├── google-play-fill.svg │ │ │ ├── google-play-line.svg │ │ │ ├── honor-of-kings-fill.svg │ │ │ ├── honor-of-kings-line.svg │ │ │ ├── ie-fill.svg │ │ │ ├── ie-line.svg │ │ │ ├── instagram-fill.svg │ │ │ ├── instagram-line.svg │ │ │ ├── invision-fill.svg │ │ │ ├── invision-line.svg │ │ │ ├── kakao-talk-fill.svg │ │ │ ├── kakao-talk-line.svg │ │ │ ├── line-fill.svg │ │ │ ├── line-line.svg │ │ │ ├── linkedin-box-fill.svg │ │ │ ├── linkedin-box-line.svg │ │ │ ├── linkedin-fill.svg │ │ │ ├── linkedin-line.svg │ │ │ ├── mastercard-fill.svg │ │ │ ├── mastercard-line.svg │ │ │ ├── mastodon-fill.svg │ │ │ ├── mastodon-line.svg │ │ │ ├── medium-fill.svg │ │ │ ├── medium-line.svg │ │ │ ├── messenger-fill.svg │ │ │ ├── messenger-line.svg │ │ │ ├── microsoft-fill.svg │ │ │ ├── microsoft-line.svg │ │ │ ├── mini-program-fill.svg │ │ │ ├── mini-program-line.svg │ │ │ ├── netease-cloud-music-fill.svg │ │ │ ├── netease-cloud-music-line.svg │ │ │ ├── netflix-fill.svg │ │ │ ├── netflix-line.svg │ │ │ ├── npmjs-fill.svg │ │ │ ├── npmjs-line.svg │ │ │ ├── open-source-fill.svg │ │ │ ├── open-source-line.svg │ │ │ ├── opera-fill.svg │ │ │ ├── opera-line.svg │ │ │ ├── patreon-fill.svg │ │ │ ├── patreon-line.svg │ │ │ ├── paypal-fill.svg │ │ │ ├── paypal-line.svg │ │ │ ├── pinterest-fill.svg │ │ │ ├── pinterest-line.svg │ │ │ ├── pixelfed-fill.svg │ │ │ ├── pixelfed-line.svg │ │ │ ├── playstation-fill.svg │ │ │ ├── playstation-line.svg │ │ │ ├── product-hunt-fill.svg │ │ │ ├── product-hunt-line.svg │ │ │ ├── qq-fill.svg │ │ │ ├── qq-line.svg │ │ │ ├── reactjs-fill.svg │ │ │ ├── reactjs-line.svg │ │ │ ├── reddit-fill.svg │ │ │ ├── reddit-line.svg │ │ │ ├── remixicon-fill.svg │ │ │ ├── remixicon-line.svg │ │ │ ├── safari-fill.svg │ │ │ ├── safari-line.svg │ │ │ ├── skype-fill.svg │ │ │ ├── skype-line.svg │ │ │ ├── slack-fill.svg │ │ │ ├── slack-line.svg │ │ │ ├── snapchat-fill.svg │ │ │ ├── snapchat-line.svg │ │ │ ├── soundcloud-fill.svg │ │ │ ├── soundcloud-line.svg │ │ │ ├── spectrum-fill.svg │ │ │ ├── spectrum-line.svg │ │ │ ├── spotify-fill.svg │ │ │ ├── spotify-line.svg │ │ │ ├── stack-overflow-fill.svg │ │ │ ├── stack-overflow-line.svg │ │ │ ├── stackshare-fill.svg │ │ │ ├── stackshare-line.svg │ │ │ ├── steam-fill.svg │ │ │ ├── steam-line.svg │ │ │ ├── switch-fill.svg │ │ │ ├── switch-line.svg │ │ │ ├── taobao-fill.svg │ │ │ ├── taobao-line.svg │ │ │ ├── telegram-fill.svg │ │ │ ├── telegram-line.svg │ │ │ ├── trello-fill.svg │ │ │ ├── trello-line.svg │ │ │ ├── tumblr-fill.svg │ │ │ ├── tumblr-line.svg │ │ │ ├── twitch-fill.svg │ │ │ ├── twitch-line.svg │ │ │ ├── twitter-fill.svg │ │ │ ├── twitter-line.svg │ │ │ ├── ubuntu-fill.svg │ │ │ ├── ubuntu-line.svg │ │ │ ├── unsplash-fill.svg │ │ │ ├── unsplash-line.svg │ │ │ ├── vimeo-fill.svg │ │ │ ├── vimeo-line.svg │ │ │ ├── visa-fill.svg │ │ │ ├── visa-line.svg │ │ │ ├── vuejs-fill.svg │ │ │ ├── vuejs-line.svg │ │ │ ├── wechat-2-fill.svg │ │ │ ├── wechat-2-line.svg │ │ │ ├── wechat-fill.svg │ │ │ ├── wechat-line.svg │ │ │ ├── wechat-pay-fill.svg │ │ │ ├── wechat-pay-line.svg │ │ │ ├── weibo-fill.svg │ │ │ ├── weibo-line.svg │ │ │ ├── whatsapp-fill.svg │ │ │ ├── whatsapp-line.svg │ │ │ ├── windows-fill.svg │ │ │ ├── windows-line.svg │ │ │ ├── xbox-fill.svg │ │ │ ├── xbox-line.svg │ │ │ ├── xing-fill.svg │ │ │ ├── xing-line.svg │ │ │ ├── youtube-fill.svg │ │ │ ├── youtube-line.svg │ │ │ ├── zcool-fill.svg │ │ │ ├── zcool-line.svg │ │ │ ├── zhihu-fill.svg │ │ │ └── zhihu-line.svg │ │ │ ├── Map │ │ │ ├── anchor-fill.svg │ │ │ ├── anchor-line.svg │ │ │ ├── barricade-fill.svg │ │ │ ├── barricade-line.svg │ │ │ ├── bike-fill.svg │ │ │ ├── bike-line.svg │ │ │ ├── bus-2-fill.svg │ │ │ ├── bus-2-line.svg │ │ │ ├── bus-fill.svg │ │ │ ├── bus-line.svg │ │ │ ├── bus-wifi-fill.svg │ │ │ ├── bus-wifi-line.svg │ │ │ ├── car-fill.svg │ │ │ ├── car-line.svg │ │ │ ├── car-washing-fill.svg │ │ │ ├── car-washing-line.svg │ │ │ ├── caravan-fill.svg │ │ │ ├── caravan-line.svg │ │ │ ├── charging-pile-2-fill.svg │ │ │ ├── charging-pile-2-line.svg │ │ │ ├── charging-pile-fill.svg │ │ │ ├── charging-pile-line.svg │ │ │ ├── china-railway-fill.svg │ │ │ ├── china-railway-line.svg │ │ │ ├── compass-2-fill.svg │ │ │ ├── compass-2-line.svg │ │ │ ├── compass-3-fill.svg │ │ │ ├── compass-3-line.svg │ │ │ ├── compass-4-fill.svg │ │ │ ├── compass-4-line.svg │ │ │ ├── compass-discover-fill.svg │ │ │ ├── compass-discover-line.svg │ │ │ ├── compass-fill.svg │ │ │ ├── compass-line.svg │ │ │ ├── cup-fill.svg │ │ │ ├── cup-line.svg │ │ │ ├── direction-fill.svg │ │ │ ├── direction-line.svg │ │ │ ├── e-bike-2-fill.svg │ │ │ ├── e-bike-2-line.svg │ │ │ ├── e-bike-fill.svg │ │ │ ├── e-bike-line.svg │ │ │ ├── earth-fill.svg │ │ │ ├── earth-line.svg │ │ │ ├── flight-land-fill.svg │ │ │ ├── flight-land-line.svg │ │ │ ├── flight-takeoff-fill.svg │ │ │ ├── flight-takeoff-line.svg │ │ │ ├── footprint-fill.svg │ │ │ ├── footprint-line.svg │ │ │ ├── gas-station-fill.svg │ │ │ ├── gas-station-line.svg │ │ │ ├── globe-fill.svg │ │ │ ├── globe-line.svg │ │ │ ├── goblet-fill.svg │ │ │ ├── goblet-line.svg │ │ │ ├── guide-fill.svg │ │ │ ├── guide-line.svg │ │ │ ├── hotel-bed-fill.svg │ │ │ ├── hotel-bed-line.svg │ │ │ ├── lifebuoy-fill.svg │ │ │ ├── lifebuoy-line.svg │ │ │ ├── luggage-cart-fill.svg │ │ │ ├── luggage-cart-line.svg │ │ │ ├── luggage-deposit-fill.svg │ │ │ ├── luggage-deposit-line.svg │ │ │ ├── map-2-fill.svg │ │ │ ├── map-2-line.svg │ │ │ ├── map-fill.svg │ │ │ ├── map-line.svg │ │ │ ├── map-pin-2-fill.svg │ │ │ ├── map-pin-2-line.svg │ │ │ ├── map-pin-3-fill.svg │ │ │ ├── map-pin-3-line.svg │ │ │ ├── map-pin-4-fill.svg │ │ │ ├── map-pin-4-line.svg │ │ │ ├── map-pin-5-fill.svg │ │ │ ├── map-pin-5-line.svg │ │ │ ├── map-pin-add-fill.svg │ │ │ ├── map-pin-add-line.svg │ │ │ ├── map-pin-fill.svg │ │ │ ├── map-pin-line.svg │ │ │ ├── map-pin-range-fill.svg │ │ │ ├── map-pin-range-line.svg │ │ │ ├── map-pin-time-fill.svg │ │ │ ├── map-pin-time-line.svg │ │ │ ├── map-pin-user-fill.svg │ │ │ ├── map-pin-user-line.svg │ │ │ ├── motorbike-fill.svg │ │ │ ├── motorbike-line.svg │ │ │ ├── navigation-fill.svg │ │ │ ├── navigation-line.svg │ │ │ ├── oil-fill.svg │ │ │ ├── oil-line.svg │ │ │ ├── parking-box-fill.svg │ │ │ ├── parking-box-line.svg │ │ │ ├── parking-fill.svg │ │ │ ├── parking-line.svg │ │ │ ├── passport-fill.svg │ │ │ ├── passport-line.svg │ │ │ ├── pin-distance-fill.svg │ │ │ ├── pin-distance-line.svg │ │ │ ├── plane-fill.svg │ │ │ ├── plane-line.svg │ │ │ ├── police-car-fill.svg │ │ │ ├── police-car-line.svg │ │ │ ├── pushpin-2-fill.svg │ │ │ ├── pushpin-2-line.svg │ │ │ ├── pushpin-fill.svg │ │ │ ├── pushpin-line.svg │ │ │ ├── restaurant-2-fill.svg │ │ │ ├── restaurant-2-line.svg │ │ │ ├── restaurant-fill.svg │ │ │ ├── restaurant-line.svg │ │ │ ├── riding-fill.svg │ │ │ ├── riding-line.svg │ │ │ ├── road-map-fill.svg │ │ │ ├── road-map-line.svg │ │ │ ├── roadster-fill.svg │ │ │ ├── roadster-line.svg │ │ │ ├── rocket-2-fill.svg │ │ │ ├── rocket-2-line.svg │ │ │ ├── rocket-fill.svg │ │ │ ├── rocket-line.svg │ │ │ ├── route-fill.svg │ │ │ ├── route-line.svg │ │ │ ├── run-fill.svg │ │ │ ├── run-line.svg │ │ │ ├── sailboat-fill.svg │ │ │ ├── sailboat-line.svg │ │ │ ├── ship-2-fill.svg │ │ │ ├── ship-2-line.svg │ │ │ ├── ship-fill.svg │ │ │ ├── ship-line.svg │ │ │ ├── signal-tower-fill.svg │ │ │ ├── signal-tower-line.svg │ │ │ ├── space-ship-fill.svg │ │ │ ├── space-ship-line.svg │ │ │ ├── steering-2-fill.svg │ │ │ ├── steering-2-line.svg │ │ │ ├── steering-fill.svg │ │ │ ├── steering-line.svg │ │ │ ├── subway-fill.svg │ │ │ ├── subway-line.svg │ │ │ ├── subway-wifi-fill.svg │ │ │ ├── subway-wifi-line.svg │ │ │ ├── suitcase-2-fill.svg │ │ │ ├── suitcase-2-line.svg │ │ │ ├── suitcase-3-fill.svg │ │ │ ├── suitcase-3-line.svg │ │ │ ├── suitcase-fill.svg │ │ │ ├── suitcase-line.svg │ │ │ ├── takeaway-fill.svg │ │ │ ├── takeaway-line.svg │ │ │ ├── taxi-fill.svg │ │ │ ├── taxi-line.svg │ │ │ ├── taxi-wifi-fill.svg │ │ │ ├── taxi-wifi-line.svg │ │ │ ├── traffic-light-fill.svg │ │ │ ├── traffic-light-line.svg │ │ │ ├── train-fill.svg │ │ │ ├── train-line.svg │ │ │ ├── train-wifi-fill.svg │ │ │ ├── train-wifi-line.svg │ │ │ ├── treasure-map-fill.svg │ │ │ ├── treasure-map-line.svg │ │ │ ├── truck-fill.svg │ │ │ ├── truck-line.svg │ │ │ ├── walk-fill.svg │ │ │ └── walk-line.svg │ │ │ ├── Media │ │ │ ├── 4k-fill.svg │ │ │ ├── 4k-line.svg │ │ │ ├── album-fill.svg │ │ │ ├── album-line.svg │ │ │ ├── aspect-ratio-fill.svg │ │ │ ├── aspect-ratio-line.svg │ │ │ ├── broadcast-fill.svg │ │ │ ├── broadcast-line.svg │ │ │ ├── camera-2-fill.svg │ │ │ ├── camera-2-line.svg │ │ │ ├── camera-3-fill.svg │ │ │ ├── camera-3-line.svg │ │ │ ├── camera-fill.svg │ │ │ ├── camera-lens-fill.svg │ │ │ ├── camera-lens-line.svg │ │ │ ├── camera-line.svg │ │ │ ├── camera-off-fill.svg │ │ │ ├── camera-off-line.svg │ │ │ ├── camera-switch-fill.svg │ │ │ ├── camera-switch-line.svg │ │ │ ├── clapperboard-fill.svg │ │ │ ├── clapperboard-line.svg │ │ │ ├── closed-captioning-fill.svg │ │ │ ├── closed-captioning-line.svg │ │ │ ├── disc-fill.svg │ │ │ ├── disc-line.svg │ │ │ ├── dv-fill.svg │ │ │ ├── dv-line.svg │ │ │ ├── dvd-fill.svg │ │ │ ├── dvd-line.svg │ │ │ ├── eject-fill.svg │ │ │ ├── eject-line.svg │ │ │ ├── equalizer-fill.svg │ │ │ ├── equalizer-line.svg │ │ │ ├── film-fill.svg │ │ │ ├── film-line.svg │ │ │ ├── fullscreen-exit-fill.svg │ │ │ ├── fullscreen-exit-line.svg │ │ │ ├── fullscreen-fill.svg │ │ │ ├── fullscreen-line.svg │ │ │ ├── gallery-fill.svg │ │ │ ├── gallery-line.svg │ │ │ ├── gallery-upload-fill.svg │ │ │ ├── gallery-upload-line.svg │ │ │ ├── hd-fill.svg │ │ │ ├── hd-line.svg │ │ │ ├── headphone-fill.svg │ │ │ ├── headphone-line.svg │ │ │ ├── hq-fill.svg │ │ │ ├── hq-line.svg │ │ │ ├── image-2-fill.svg │ │ │ ├── image-2-line.svg │ │ │ ├── image-add-fill.svg │ │ │ ├── image-add-line.svg │ │ │ ├── image-edit-fill.svg │ │ │ ├── image-edit-line.svg │ │ │ ├── image-fill.svg │ │ │ ├── image-line.svg │ │ │ ├── landscape-fill.svg │ │ │ ├── landscape-line.svg │ │ │ ├── live-fill.svg │ │ │ ├── live-line.svg │ │ │ ├── mic-2-fill.svg │ │ │ ├── mic-2-line.svg │ │ │ ├── mic-fill.svg │ │ │ ├── mic-line.svg │ │ │ ├── mic-off-fill.svg │ │ │ ├── mic-off-line.svg │ │ │ ├── movie-2-fill.svg │ │ │ ├── movie-2-line.svg │ │ │ ├── movie-fill.svg │ │ │ ├── movie-line.svg │ │ │ ├── music-2-fill.svg │ │ │ ├── music-2-line.svg │ │ │ ├── music-fill.svg │ │ │ ├── music-line.svg │ │ │ ├── mv-fill.svg │ │ │ ├── mv-line.svg │ │ │ ├── notification-2-fill.svg │ │ │ ├── notification-2-line.svg │ │ │ ├── notification-3-fill.svg │ │ │ ├── notification-3-line.svg │ │ │ ├── notification-4-fill.svg │ │ │ ├── notification-4-line.svg │ │ │ ├── notification-fill.svg │ │ │ ├── notification-line.svg │ │ │ ├── notification-off-fill.svg │ │ │ ├── notification-off-line.svg │ │ │ ├── order-play-fill.svg │ │ │ ├── order-play-line.svg │ │ │ ├── pause-circle-fill.svg │ │ │ ├── pause-circle-line.svg │ │ │ ├── pause-fill.svg │ │ │ ├── pause-line.svg │ │ │ ├── pause-mini-fill.svg │ │ │ ├── pause-mini-line.svg │ │ │ ├── phone-camera-fill.svg │ │ │ ├── phone-camera-line.svg │ │ │ ├── picture-in-picture-2-fill.svg │ │ │ ├── picture-in-picture-2-line.svg │ │ │ ├── picture-in-picture-exit-fill.svg │ │ │ ├── picture-in-picture-exit-line.svg │ │ │ ├── picture-in-picture-fill.svg │ │ │ ├── picture-in-picture-line.svg │ │ │ ├── play-circle-fill.svg │ │ │ ├── play-circle-line.svg │ │ │ ├── play-fill.svg │ │ │ ├── play-line.svg │ │ │ ├── play-list-2-fill.svg │ │ │ ├── play-list-2-line.svg │ │ │ ├── play-list-add-fill.svg │ │ │ ├── play-list-add-line.svg │ │ │ ├── play-list-fill.svg │ │ │ ├── play-list-line.svg │ │ │ ├── play-mini-fill.svg │ │ │ ├── play-mini-line.svg │ │ │ ├── polaroid-2-fill.svg │ │ │ ├── polaroid-2-line.svg │ │ │ ├── polaroid-fill.svg │ │ │ ├── polaroid-line.svg │ │ │ ├── radio-2-fill.svg │ │ │ ├── radio-2-line.svg │ │ │ ├── radio-fill.svg │ │ │ ├── radio-line.svg │ │ │ ├── record-circle-fill.svg │ │ │ ├── record-circle-line.svg │ │ │ ├── repeat-2-fill.svg │ │ │ ├── repeat-2-line.svg │ │ │ ├── repeat-fill.svg │ │ │ ├── repeat-line.svg │ │ │ ├── repeat-one-fill.svg │ │ │ ├── repeat-one-line.svg │ │ │ ├── rewind-fill.svg │ │ │ ├── rewind-line.svg │ │ │ ├── rewind-mini-fill.svg │ │ │ ├── rewind-mini-line.svg │ │ │ ├── rhythm-fill.svg │ │ │ ├── rhythm-line.svg │ │ │ ├── shuffle-fill.svg │ │ │ ├── shuffle-line.svg │ │ │ ├── skip-back-fill.svg │ │ │ ├── skip-back-line.svg │ │ │ ├── skip-back-mini-fill.svg │ │ │ ├── skip-back-mini-line.svg │ │ │ ├── skip-forward-fill.svg │ │ │ ├── skip-forward-line.svg │ │ │ ├── skip-forward-mini-fill.svg │ │ │ ├── skip-forward-mini-line.svg │ │ │ ├── sound-module-fill.svg │ │ │ ├── sound-module-line.svg │ │ │ ├── speaker-2-fill.svg │ │ │ ├── speaker-2-line.svg │ │ │ ├── speaker-3-fill.svg │ │ │ ├── speaker-3-line.svg │ │ │ ├── speaker-fill.svg │ │ │ ├── speaker-line.svg │ │ │ ├── speed-fill.svg │ │ │ ├── speed-line.svg │ │ │ ├── speed-mini-fill.svg │ │ │ ├── speed-mini-line.svg │ │ │ ├── stop-circle-fill.svg │ │ │ ├── stop-circle-line.svg │ │ │ ├── stop-fill.svg │ │ │ ├── stop-line.svg │ │ │ ├── stop-mini-fill.svg │ │ │ ├── stop-mini-line.svg │ │ │ ├── surround-sound-fill.svg │ │ │ ├── surround-sound-line.svg │ │ │ ├── tape-fill.svg │ │ │ ├── tape-line.svg │ │ │ ├── video-add-fill.svg │ │ │ ├── video-add-line.svg │ │ │ ├── video-download-fill.svg │ │ │ ├── video-download-line.svg │ │ │ ├── video-fill.svg │ │ │ ├── video-line.svg │ │ │ ├── video-upload-fill.svg │ │ │ ├── video-upload-line.svg │ │ │ ├── vidicon-2-fill.svg │ │ │ ├── vidicon-2-line.svg │ │ │ ├── vidicon-fill.svg │ │ │ ├── vidicon-line.svg │ │ │ ├── voiceprint-fill.svg │ │ │ ├── voiceprint-line.svg │ │ │ ├── volume-down-fill.svg │ │ │ ├── volume-down-line.svg │ │ │ ├── volume-mute-fill.svg │ │ │ ├── volume-mute-line.svg │ │ │ ├── volume-off-vibrate-fill.svg │ │ │ ├── volume-off-vibrate-line.svg │ │ │ ├── volume-up-fill.svg │ │ │ ├── volume-up-line.svg │ │ │ ├── volume-vibrate-fill.svg │ │ │ ├── volume-vibrate-line.svg │ │ │ ├── webcam-fill.svg │ │ │ └── webcam-line.svg │ │ │ ├── Others │ │ │ ├── basketball-fill.svg │ │ │ ├── basketball-line.svg │ │ │ ├── bell-fill.svg │ │ │ ├── bell-line.svg │ │ │ ├── billiards-fill.svg │ │ │ ├── billiards-line.svg │ │ │ ├── boxing-fill.svg │ │ │ ├── boxing-line.svg │ │ │ ├── cactus-fill.svg │ │ │ ├── cactus-line.svg │ │ │ ├── cake-2-fill.svg │ │ │ ├── cake-2-line.svg │ │ │ ├── cake-3-fill.svg │ │ │ ├── cake-3-line.svg │ │ │ ├── cake-fill.svg │ │ │ ├── cake-line.svg │ │ │ ├── character-recognition-fill.svg │ │ │ ├── character-recognition-line.svg │ │ │ ├── door-closed-fill.svg │ │ │ ├── door-closed-line.svg │ │ │ ├── door-fill.svg │ │ │ ├── door-line.svg │ │ │ ├── door-lock-box-fill.svg │ │ │ ├── door-lock-box-line.svg │ │ │ ├── door-lock-fill.svg │ │ │ ├── door-lock-line.svg │ │ │ ├── door-open-fill.svg │ │ │ ├── door-open-line.svg │ │ │ ├── football-fill.svg │ │ │ ├── football-line.svg │ │ │ ├── fridge-fill.svg │ │ │ ├── fridge-line.svg │ │ │ ├── game-fill.svg │ │ │ ├── game-line.svg │ │ │ ├── handbag-fill.svg │ │ │ ├── handbag-line.svg │ │ │ ├── key-2-fill.svg │ │ │ ├── key-2-line.svg │ │ │ ├── key-fill.svg │ │ │ ├── key-line.svg │ │ │ ├── knife-blood-fill.svg │ │ │ ├── knife-blood-line.svg │ │ │ ├── knife-fill.svg │ │ │ ├── knife-line.svg │ │ │ ├── leaf-fill.svg │ │ │ ├── leaf-line.svg │ │ │ ├── lightbulb-fill.svg │ │ │ ├── lightbulb-flash-fill.svg │ │ │ ├── lightbulb-flash-line.svg │ │ │ ├── lightbulb-line.svg │ │ │ ├── outlet-2-fill.svg │ │ │ ├── outlet-2-line.svg │ │ │ ├── outlet-fill.svg │ │ │ ├── outlet-line.svg │ │ │ ├── ping-pong-fill.svg │ │ │ ├── ping-pong-line.svg │ │ │ ├── plant-fill.svg │ │ │ ├── plant-line.svg │ │ │ ├── plug-2-fill.svg │ │ │ ├── plug-2-line.svg │ │ │ ├── plug-fill.svg │ │ │ ├── plug-line.svg │ │ │ ├── recycle-fill.svg │ │ │ ├── recycle-line.svg │ │ │ ├── reserved-fill.svg │ │ │ ├── reserved-line.svg │ │ │ ├── scales-2-fill.svg │ │ │ ├── scales-2-line.svg │ │ │ ├── scales-3-fill.svg │ │ │ ├── scales-3-line.svg │ │ │ ├── scales-fill.svg │ │ │ ├── scales-line.svg │ │ │ ├── seedling-fill.svg │ │ │ ├── seedling-line.svg │ │ │ ├── shirt-fill.svg │ │ │ ├── shirt-line.svg │ │ │ ├── sword-fill.svg │ │ │ ├── sword-line.svg │ │ │ ├── t-shirt-2-fill.svg │ │ │ ├── t-shirt-2-line.svg │ │ │ ├── t-shirt-air-fill.svg │ │ │ ├── t-shirt-air-line.svg │ │ │ ├── t-shirt-fill.svg │ │ │ ├── t-shirt-line.svg │ │ │ ├── umbrella-fill.svg │ │ │ ├── umbrella-line.svg │ │ │ ├── voice-recognition-fill.svg │ │ │ ├── voice-recognition-line.svg │ │ │ ├── wheelchair-fill.svg │ │ │ └── wheelchair-line.svg │ │ │ ├── System │ │ │ ├── add-box-fill.svg │ │ │ ├── add-box-line.svg │ │ │ ├── add-circle-fill.svg │ │ │ ├── add-circle-line.svg │ │ │ ├── add-fill.svg │ │ │ ├── add-line.svg │ │ │ ├── alarm-fill.svg │ │ │ ├── alarm-line.svg │ │ │ ├── alarm-warning-fill.svg │ │ │ ├── alarm-warning-line.svg │ │ │ ├── alert-fill.svg │ │ │ ├── alert-line.svg │ │ │ ├── apps-2-fill.svg │ │ │ ├── apps-2-line.svg │ │ │ ├── apps-fill.svg │ │ │ ├── apps-line.svg │ │ │ ├── arrow-down-circle-fill.svg │ │ │ ├── arrow-down-circle-line.svg │ │ │ ├── arrow-down-fill.svg │ │ │ ├── arrow-down-line.svg │ │ │ ├── arrow-down-s-fill.svg │ │ │ ├── arrow-down-s-line.svg │ │ │ ├── arrow-drop-down-fill.svg │ │ │ ├── arrow-drop-down-line.svg │ │ │ ├── arrow-drop-left-fill.svg │ │ │ ├── arrow-drop-left-line.svg │ │ │ ├── arrow-drop-right-fill.svg │ │ │ ├── arrow-drop-right-line.svg │ │ │ ├── arrow-drop-up-fill.svg │ │ │ ├── arrow-drop-up-line.svg │ │ │ ├── arrow-go-back-fill.svg │ │ │ ├── arrow-go-back-line.svg │ │ │ ├── arrow-go-forward-fill.svg │ │ │ ├── arrow-go-forward-line.svg │ │ │ ├── arrow-left-circle-fill.svg │ │ │ ├── arrow-left-circle-line.svg │ │ │ ├── arrow-left-down-fill.svg │ │ │ ├── arrow-left-down-line.svg │ │ │ ├── arrow-left-fill.svg │ │ │ ├── arrow-left-line.svg │ │ │ ├── arrow-left-right-fill.svg │ │ │ ├── arrow-left-right-line.svg │ │ │ ├── arrow-left-s-fill.svg │ │ │ ├── arrow-left-s-line.svg │ │ │ ├── arrow-left-up-fill.svg │ │ │ ├── arrow-left-up-line.svg │ │ │ ├── arrow-right-circle-fill.svg │ │ │ ├── arrow-right-circle-line.svg │ │ │ ├── arrow-right-down-fill.svg │ │ │ ├── arrow-right-down-line.svg │ │ │ ├── arrow-right-fill.svg │ │ │ ├── arrow-right-line.svg │ │ │ ├── arrow-right-s-fill.svg │ │ │ ├── arrow-right-s-line.svg │ │ │ ├── arrow-right-up-fill.svg │ │ │ ├── arrow-right-up-line.svg │ │ │ ├── arrow-up-circle-fill.svg │ │ │ ├── arrow-up-circle-line.svg │ │ │ ├── arrow-up-down-fill.svg │ │ │ ├── arrow-up-down-line.svg │ │ │ ├── arrow-up-fill.svg │ │ │ ├── arrow-up-line.svg │ │ │ ├── arrow-up-s-fill.svg │ │ │ ├── arrow-up-s-line.svg │ │ │ ├── check-double-fill.svg │ │ │ ├── check-double-line.svg │ │ │ ├── check-fill.svg │ │ │ ├── check-line.svg │ │ │ ├── checkbox-blank-circle-fill.svg │ │ │ ├── checkbox-blank-circle-line.svg │ │ │ ├── checkbox-blank-fill.svg │ │ │ ├── checkbox-blank-line.svg │ │ │ ├── checkbox-circle-fill.svg │ │ │ ├── checkbox-circle-line.svg │ │ │ ├── checkbox-fill.svg │ │ │ ├── checkbox-indeterminate-fill.svg │ │ │ ├── checkbox-indeterminate-line.svg │ │ │ ├── checkbox-line.svg │ │ │ ├── checkbox-multiple-blank-fill.svg │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ ├── checkbox-multiple-fill.svg │ │ │ ├── checkbox-multiple-line.svg │ │ │ ├── close-circle-fill.svg │ │ │ ├── close-circle-line.svg │ │ │ ├── close-fill.svg │ │ │ ├── close-line.svg │ │ │ ├── dashboard-fill.svg │ │ │ ├── dashboard-line.svg │ │ │ ├── delete-back-2-fill.svg │ │ │ ├── delete-back-2-line.svg │ │ │ ├── delete-back-fill.svg │ │ │ ├── delete-back-line.svg │ │ │ ├── delete-bin-2-fill.svg │ │ │ ├── delete-bin-2-line.svg │ │ │ ├── delete-bin-3-fill.svg │ │ │ ├── delete-bin-3-line.svg │ │ │ ├── delete-bin-4-fill.svg │ │ │ ├── delete-bin-4-line.svg │ │ │ ├── delete-bin-5-fill.svg │ │ │ ├── delete-bin-5-line.svg │ │ │ ├── delete-bin-6-fill.svg │ │ │ ├── delete-bin-6-line.svg │ │ │ ├── delete-bin-7-fill.svg │ │ │ ├── delete-bin-7-line.svg │ │ │ ├── delete-bin-fill.svg │ │ │ ├── delete-bin-line.svg │ │ │ ├── divide-fill.svg │ │ │ ├── divide-line.svg │ │ │ ├── download-2-fill.svg │ │ │ ├── download-2-line.svg │ │ │ ├── download-cloud-2-fill.svg │ │ │ ├── download-cloud-2-line.svg │ │ │ ├── download-cloud-fill.svg │ │ │ ├── download-cloud-line.svg │ │ │ ├── download-fill.svg │ │ │ ├── download-line.svg │ │ │ ├── error-warning-fill.svg │ │ │ ├── error-warning-line.svg │ │ │ ├── external-link-fill.svg │ │ │ ├── external-link-line.svg │ │ │ ├── eye-2-fill.svg │ │ │ ├── eye-2-line.svg │ │ │ ├── eye-close-fill.svg │ │ │ ├── eye-close-line.svg │ │ │ ├── eye-fill.svg │ │ │ ├── eye-line.svg │ │ │ ├── eye-off-fill.svg │ │ │ ├── eye-off-line.svg │ │ │ ├── filter-2-fill.svg │ │ │ ├── filter-2-line.svg │ │ │ ├── filter-3-fill.svg │ │ │ ├── filter-3-line.svg │ │ │ ├── filter-fill.svg │ │ │ ├── filter-line.svg │ │ │ ├── filter-off-fill.svg │ │ │ ├── filter-off-line.svg │ │ │ ├── find-replace-fill.svg │ │ │ ├── find-replace-line.svg │ │ │ ├── forbid-2-fill.svg │ │ │ ├── forbid-2-line.svg │ │ │ ├── forbid-fill.svg │ │ │ ├── forbid-line.svg │ │ │ ├── function-fill.svg │ │ │ ├── function-line.svg │ │ │ ├── history-fill.svg │ │ │ ├── history-line.svg │ │ │ ├── indeterminate-circle-fill.svg │ │ │ ├── indeterminate-circle-line.svg │ │ │ ├── information-fill.svg │ │ │ ├── information-line.svg │ │ │ ├── list-settings-fill.svg │ │ │ ├── list-settings-line.svg │ │ │ ├── loader-2-fill.svg │ │ │ ├── loader-2-line.svg │ │ │ ├── loader-3-fill.svg │ │ │ ├── loader-3-line.svg │ │ │ ├── loader-4-fill.svg │ │ │ ├── loader-4-line.svg │ │ │ ├── loader-5-fill.svg │ │ │ ├── loader-5-line.svg │ │ │ ├── loader-fill.svg │ │ │ ├── loader-line.svg │ │ │ ├── lock-2-fill.svg │ │ │ ├── lock-2-line.svg │ │ │ ├── lock-fill.svg │ │ │ ├── lock-line.svg │ │ │ ├── lock-password-fill.svg │ │ │ ├── lock-password-line.svg │ │ │ ├── lock-unlock-fill.svg │ │ │ ├── lock-unlock-line.svg │ │ │ ├── login-box-fill.svg │ │ │ ├── login-box-line.svg │ │ │ ├── login-circle-fill.svg │ │ │ ├── login-circle-line.svg │ │ │ ├── logout-box-fill.svg │ │ │ ├── logout-box-line.svg │ │ │ ├── logout-box-r-fill.svg │ │ │ ├── logout-box-r-line.svg │ │ │ ├── logout-circle-fill.svg │ │ │ ├── logout-circle-line.svg │ │ │ ├── logout-circle-r-fill.svg │ │ │ ├── logout-circle-r-line.svg │ │ │ ├── menu-2-fill.svg │ │ │ ├── menu-2-line.svg │ │ │ ├── menu-3-fill.svg │ │ │ ├── menu-3-line.svg │ │ │ ├── menu-4-fill.svg │ │ │ ├── menu-4-line.svg │ │ │ ├── menu-5-fill.svg │ │ │ ├── menu-5-line.svg │ │ │ ├── menu-add-fill.svg │ │ │ ├── menu-add-line.svg │ │ │ ├── menu-fill.svg │ │ │ ├── menu-fold-fill.svg │ │ │ ├── menu-fold-line.svg │ │ │ ├── menu-line.svg │ │ │ ├── menu-unfold-fill.svg │ │ │ ├── menu-unfold-line.svg │ │ │ ├── more-2-fill.svg │ │ │ ├── more-2-line.svg │ │ │ ├── more-fill.svg │ │ │ ├── more-line.svg │ │ │ ├── notification-badge-fill.svg │ │ │ ├── notification-badge-line.svg │ │ │ ├── question-fill.svg │ │ │ ├── question-line.svg │ │ │ ├── radio-button-fill.svg │ │ │ ├── radio-button-line.svg │ │ │ ├── refresh-fill.svg │ │ │ ├── refresh-line.svg │ │ │ ├── search-2-fill.svg │ │ │ ├── search-2-line.svg │ │ │ ├── search-eye-fill.svg │ │ │ ├── search-eye-line.svg │ │ │ ├── search-fill.svg │ │ │ ├── search-line.svg │ │ │ ├── settings-2-fill.svg │ │ │ ├── settings-2-line.svg │ │ │ ├── settings-3-fill.svg │ │ │ ├── settings-3-line.svg │ │ │ ├── settings-4-fill.svg │ │ │ ├── settings-4-line.svg │ │ │ ├── settings-5-fill.svg │ │ │ ├── settings-5-line.svg │ │ │ ├── settings-6-fill.svg │ │ │ ├── settings-6-line.svg │ │ │ ├── settings-fill.svg │ │ │ ├── settings-line.svg │ │ │ ├── share-box-fill.svg │ │ │ ├── share-box-line.svg │ │ │ ├── share-circle-fill.svg │ │ │ ├── share-circle-line.svg │ │ │ ├── share-fill.svg │ │ │ ├── share-forward-2-fill.svg │ │ │ ├── share-forward-2-line.svg │ │ │ ├── share-forward-box-fill.svg │ │ │ ├── share-forward-box-line.svg │ │ │ ├── share-forward-fill.svg │ │ │ ├── share-forward-line.svg │ │ │ ├── share-line.svg │ │ │ ├── shield-check-fill.svg │ │ │ ├── shield-check-line.svg │ │ │ ├── shield-cross-fill.svg │ │ │ ├── shield-cross-line.svg │ │ │ ├── shield-fill.svg │ │ │ ├── shield-flash-fill.svg │ │ │ ├── shield-flash-line.svg │ │ │ ├── shield-keyhole-fill.svg │ │ │ ├── shield-keyhole-line.svg │ │ │ ├── shield-line.svg │ │ │ ├── shield-star-fill.svg │ │ │ ├── shield-star-line.svg │ │ │ ├── shield-user-fill.svg │ │ │ ├── shield-user-line.svg │ │ │ ├── side-bar-fill.svg │ │ │ ├── side-bar-line.svg │ │ │ ├── spam-2-fill.svg │ │ │ ├── spam-2-line.svg │ │ │ ├── spam-3-fill.svg │ │ │ ├── spam-3-line.svg │ │ │ ├── spam-fill.svg │ │ │ ├── spam-line.svg │ │ │ ├── star-fill.svg │ │ │ ├── star-half-fill.svg │ │ │ ├── star-half-line.svg │ │ │ ├── star-half-s-fill.svg │ │ │ ├── star-half-s-line.svg │ │ │ ├── star-line.svg │ │ │ ├── star-s-fill.svg │ │ │ ├── star-s-line.svg │ │ │ ├── subtract-fill.svg │ │ │ ├── subtract-line.svg │ │ │ ├── thumb-down-fill.svg │ │ │ ├── thumb-down-line.svg │ │ │ ├── thumb-up-fill.svg │ │ │ ├── thumb-up-line.svg │ │ │ ├── time-fill.svg │ │ │ ├── time-line.svg │ │ │ ├── timer-2-fill.svg │ │ │ ├── timer-2-line.svg │ │ │ ├── timer-fill.svg │ │ │ ├── timer-flash-fill.svg │ │ │ ├── timer-flash-line.svg │ │ │ ├── timer-line.svg │ │ │ ├── toggle-fill.svg │ │ │ ├── toggle-line.svg │ │ │ ├── upload-2-fill.svg │ │ │ ├── upload-2-line.svg │ │ │ ├── upload-cloud-2-fill.svg │ │ │ ├── upload-cloud-2-line.svg │ │ │ ├── upload-cloud-fill.svg │ │ │ ├── upload-cloud-line.svg │ │ │ ├── upload-fill.svg │ │ │ ├── upload-line.svg │ │ │ ├── zoom-in-fill.svg │ │ │ ├── zoom-in-line.svg │ │ │ ├── zoom-out-fill.svg │ │ │ └── zoom-out-line.svg │ │ │ ├── User │ │ │ ├── account-box-fill.svg │ │ │ ├── account-box-line.svg │ │ │ ├── account-circle-fill.svg │ │ │ ├── account-circle-line.svg │ │ │ ├── account-pin-box-fill.svg │ │ │ ├── account-pin-box-line.svg │ │ │ ├── account-pin-circle-fill.svg │ │ │ ├── account-pin-circle-line.svg │ │ │ ├── admin-fill.svg │ │ │ ├── admin-line.svg │ │ │ ├── aliens-fill.svg │ │ │ ├── aliens-line.svg │ │ │ ├── bear-smile-fill.svg │ │ │ ├── bear-smile-line.svg │ │ │ ├── body-scan-fill.svg │ │ │ ├── body-scan-line.svg │ │ │ ├── contacts-fill.svg │ │ │ ├── contacts-line.svg │ │ │ ├── criminal-fill.svg │ │ │ ├── criminal-line.svg │ │ │ ├── emotion-2-fill.svg │ │ │ ├── emotion-2-line.svg │ │ │ ├── emotion-fill.svg │ │ │ ├── emotion-happy-fill.svg │ │ │ ├── emotion-happy-line.svg │ │ │ ├── emotion-laugh-fill.svg │ │ │ ├── emotion-laugh-line.svg │ │ │ ├── emotion-line.svg │ │ │ ├── emotion-normal-fill.svg │ │ │ ├── emotion-normal-line.svg │ │ │ ├── emotion-sad-fill.svg │ │ │ ├── emotion-sad-line.svg │ │ │ ├── emotion-unhappy-fill.svg │ │ │ ├── emotion-unhappy-line.svg │ │ │ ├── genderless-fill.svg │ │ │ ├── genderless-line.svg │ │ │ ├── ghost-2-fill.svg │ │ │ ├── ghost-2-line.svg │ │ │ ├── ghost-fill.svg │ │ │ ├── ghost-line.svg │ │ │ ├── ghost-smile-fill.svg │ │ │ ├── ghost-smile-line.svg │ │ │ ├── group-2-fill.svg │ │ │ ├── group-2-line.svg │ │ │ ├── group-fill.svg │ │ │ ├── group-line.svg │ │ │ ├── men-fill.svg │ │ │ ├── men-line.svg │ │ │ ├── mickey-fill.svg │ │ │ ├── mickey-line.svg │ │ │ ├── open-arm-fill.svg │ │ │ ├── open-arm-line.svg │ │ │ ├── parent-fill.svg │ │ │ ├── parent-line.svg │ │ │ ├── robot-fill.svg │ │ │ ├── robot-line.svg │ │ │ ├── skull-2-fill.svg │ │ │ ├── skull-2-line.svg │ │ │ ├── skull-fill.svg │ │ │ ├── skull-line.svg │ │ │ ├── spy-fill.svg │ │ │ ├── spy-line.svg │ │ │ ├── star-smile-fill.svg │ │ │ ├── star-smile-line.svg │ │ │ ├── team-fill.svg │ │ │ ├── team-line.svg │ │ │ ├── travesti-fill.svg │ │ │ ├── travesti-line.svg │ │ │ ├── user-2-fill.svg │ │ │ ├── user-2-line.svg │ │ │ ├── user-3-fill.svg │ │ │ ├── user-3-line.svg │ │ │ ├── user-4-fill.svg │ │ │ ├── user-4-line.svg │ │ │ ├── user-5-fill.svg │ │ │ ├── user-5-line.svg │ │ │ ├── user-6-fill.svg │ │ │ ├── user-6-line.svg │ │ │ ├── user-add-fill.svg │ │ │ ├── user-add-line.svg │ │ │ ├── user-fill.svg │ │ │ ├── user-follow-fill.svg │ │ │ ├── user-follow-line.svg │ │ │ ├── user-heart-fill.svg │ │ │ ├── user-heart-line.svg │ │ │ ├── user-line.svg │ │ │ ├── user-location-fill.svg │ │ │ ├── user-location-line.svg │ │ │ ├── user-received-2-fill.svg │ │ │ ├── user-received-2-line.svg │ │ │ ├── user-received-fill.svg │ │ │ ├── user-received-line.svg │ │ │ ├── user-search-fill.svg │ │ │ ├── user-search-line.svg │ │ │ ├── user-settings-fill.svg │ │ │ ├── user-settings-line.svg │ │ │ ├── user-shared-2-fill.svg │ │ │ ├── user-shared-2-line.svg │ │ │ ├── user-shared-fill.svg │ │ │ ├── user-shared-line.svg │ │ │ ├── user-smile-fill.svg │ │ │ ├── user-smile-line.svg │ │ │ ├── user-star-fill.svg │ │ │ ├── user-star-line.svg │ │ │ ├── user-unfollow-fill.svg │ │ │ ├── user-unfollow-line.svg │ │ │ ├── user-voice-fill.svg │ │ │ ├── user-voice-line.svg │ │ │ ├── women-fill.svg │ │ │ └── women-line.svg │ │ │ └── Weather │ │ │ ├── blaze-fill.svg │ │ │ ├── blaze-line.svg │ │ │ ├── celsius-fill.svg │ │ │ ├── celsius-line.svg │ │ │ ├── cloud-windy-fill.svg │ │ │ ├── cloud-windy-line.svg │ │ │ ├── cloudy-2-fill.svg │ │ │ ├── cloudy-2-line.svg │ │ │ ├── cloudy-fill.svg │ │ │ ├── cloudy-line.svg │ │ │ ├── drizzle-fill.svg │ │ │ ├── drizzle-line.svg │ │ │ ├── earthquake-fill.svg │ │ │ ├── earthquake-line.svg │ │ │ ├── fahrenheit-fill.svg │ │ │ ├── fahrenheit-line.svg │ │ │ ├── fire-fill.svg │ │ │ ├── fire-line.svg │ │ │ ├── flashlight-fill.svg │ │ │ ├── flashlight-line.svg │ │ │ ├── flood-fill.svg │ │ │ ├── flood-line.svg │ │ │ ├── foggy-fill.svg │ │ │ ├── foggy-line.svg │ │ │ ├── hail-fill.svg │ │ │ ├── hail-line.svg │ │ │ ├── haze-2-fill.svg │ │ │ ├── haze-2-line.svg │ │ │ ├── haze-fill.svg │ │ │ ├── haze-line.svg │ │ │ ├── heavy-showers-fill.svg │ │ │ ├── heavy-showers-line.svg │ │ │ ├── meteor-fill.svg │ │ │ ├── meteor-line.svg │ │ │ ├── mist-fill.svg │ │ │ ├── mist-line.svg │ │ │ ├── moon-clear-fill.svg │ │ │ ├── moon-clear-line.svg │ │ │ ├── moon-cloudy-fill.svg │ │ │ ├── moon-cloudy-line.svg │ │ │ ├── moon-fill.svg │ │ │ ├── moon-foggy-fill.svg │ │ │ ├── moon-foggy-line.svg │ │ │ ├── moon-line.svg │ │ │ ├── rainbow-fill.svg │ │ │ ├── rainbow-line.svg │ │ │ ├── rainy-fill.svg │ │ │ ├── rainy-line.svg │ │ │ ├── showers-fill.svg │ │ │ ├── showers-line.svg │ │ │ ├── snowy-fill.svg │ │ │ ├── snowy-line.svg │ │ │ ├── sun-cloudy-fill.svg │ │ │ ├── sun-cloudy-line.svg │ │ │ ├── sun-fill.svg │ │ │ ├── sun-foggy-fill.svg │ │ │ ├── sun-foggy-line.svg │ │ │ ├── sun-line.svg │ │ │ ├── temp-cold-fill.svg │ │ │ ├── temp-cold-line.svg │ │ │ ├── temp-hot-fill.svg │ │ │ ├── temp-hot-line.svg │ │ │ ├── thunderstorms-fill.svg │ │ │ ├── thunderstorms-line.svg │ │ │ ├── tornado-fill.svg │ │ │ ├── tornado-line.svg │ │ │ ├── typhoon-fill.svg │ │ │ ├── typhoon-line.svg │ │ │ ├── windy-fill.svg │ │ │ └── windy-line.svg │ ├── select2 │ │ └── css │ │ │ ├── select2.css │ │ │ └── select2.min.css │ ├── tinymce │ │ └── js │ │ │ └── tinymce │ │ │ ├── icons │ │ │ └── default │ │ │ │ └── icons.min.js │ │ │ ├── jquery.tinymce.min.js │ │ │ ├── langs │ │ │ └── README.md │ │ │ ├── license.txt │ │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── js │ │ │ │ │ ├── emojiimages.js │ │ │ │ │ ├── emojiimages.min.js │ │ │ │ │ ├── emojis.js │ │ │ │ │ └── emojis.min.js │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── quickbars │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ └── plugin.min.js │ │ │ ├── skins │ │ │ ├── content │ │ │ │ ├── dark │ │ │ │ │ └── content.min.css │ │ │ │ ├── default │ │ │ │ │ └── content.min.css │ │ │ │ ├── document │ │ │ │ │ └── content.min.css │ │ │ │ └── writer │ │ │ │ │ └── content.min.css │ │ │ └── ui │ │ │ │ ├── oxide-dark │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ │ └── oxide │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ └── tinymce-mobile.woff │ │ │ │ ├── skin.min.css │ │ │ │ ├── skin.mobile.min.css │ │ │ │ └── skin.shadowdom.min.css │ │ │ ├── themes │ │ │ ├── mobile │ │ │ │ └── theme.min.js │ │ │ └── silver │ │ │ │ └── theme.min.js │ │ │ ├── tinymce.d.ts │ │ │ └── tinymce.min.js │ └── vanillajs-datepicker │ │ └── dist │ │ ├── css │ │ ├── datepicker-bs4.css │ │ ├── datepicker-bs4.min.css │ │ ├── datepicker-bulma.css │ │ ├── datepicker-bulma.min.css │ │ ├── datepicker-foundation.css │ │ ├── datepicker-foundation.min.css │ │ ├── datepicker.css │ │ └── datepicker.min.css │ │ └── js │ │ ├── datepicker-full.js │ │ ├── datepicker-full.min.js │ │ ├── datepicker.js │ │ ├── datepicker.min.js │ │ └── locales │ │ ├── ar-tn.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bm.js │ │ ├── bn.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-AU.js │ │ ├── en-CA.js │ │ ├── en-GB.js │ │ ├── en-IE.js │ │ ├── en-NZ.js │ │ ├── en-ZA.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-CH.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it-CH.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kk.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── me.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── mr.js │ │ ├── ms.js │ │ ├── nl-BE.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-BR.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── sw.js │ │ ├── ta.js │ │ ├── tg.js │ │ ├── th.js │ │ ├── tk.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── uz-cyrl.js │ │ ├── uz-latn.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js └── web.config ├── resources ├── css │ ├── app.css │ └── frontend.css ├── js │ ├── backend-bundle.js │ ├── bootstrap.js │ ├── components │ │ ├── Aboutus │ │ │ ├── SectionFive.vue │ │ │ ├── SectionFour.vue │ │ │ ├── SectionOne.vue │ │ │ ├── SectionSix.vue │ │ │ └── SectionTwo.vue │ │ ├── Global │ │ │ ├── BreadCrumb.vue │ │ │ ├── Favorite.vue │ │ │ ├── Rating.vue │ │ │ └── ServiceList.vue │ │ ├── LandingPage │ │ │ ├── App.vue │ │ │ ├── Banner.vue │ │ │ ├── Category.vue │ │ │ ├── CustomerRating.vue │ │ │ ├── FeaturedService.vue │ │ │ ├── Offer.vue │ │ │ ├── Provider.vue │ │ │ └── Service.vue │ │ └── Partials │ │ │ ├── Footer.vue │ │ │ ├── Header.vue │ │ │ └── Loader.vue │ ├── frontend.js │ ├── layouts │ │ └── MasterLayout.vue │ ├── messages.js │ ├── request.js │ ├── router.js │ ├── store │ │ └── index.js │ ├── trans.js │ └── views │ │ ├── About │ │ └── About.vue │ │ ├── Auth │ │ ├── Login.vue │ │ ├── ProviderRegister.vue │ │ └── Register.vue │ │ ├── Blog │ │ ├── Blog.vue │ │ └── BlogDetail.vue │ │ ├── Booking │ │ ├── Booking.vue │ │ ├── BookingDetail.vue │ │ └── BookingWizard.vue │ │ ├── Category │ │ ├── Category.vue │ │ └── CategoryDetail.vue │ │ ├── ContactUs │ │ └── ContactUs.vue │ │ ├── HelpSupport │ │ └── HelpSupport.vue │ │ ├── LandingPage │ │ └── LandingPage.vue │ │ ├── PrivacyPolicy │ │ └── PrivacyPolicy.vue │ │ ├── RefundPolicy │ │ └── RefundPolicy.vue │ │ ├── Service │ │ ├── Gallery.vue │ │ ├── Service.vue │ │ ├── ServiceDetail.vue │ │ └── Userfavourite.vue │ │ ├── TermsConditions │ │ └── TermsConditions.vue │ │ └── provider │ │ ├── Provider.vue │ │ └── ProviderService.vue ├── lang │ ├── en │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── es │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── fr │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── it │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ ├── nl │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── pt │ │ ├── auth.php │ │ ├── messages.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss ├── scss │ └── backend-bundle.scss └── views │ ├── app.blade.php │ ├── auth │ ├── confirm-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ ├── reset-password.blade.php │ ├── verify-email.blade.php │ └── verify.blade.php │ ├── bank │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── user.blade.php │ └── view.blade.php │ ├── blog │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── booking │ ├── action.blade.php │ ├── assigned_form.blade.php │ ├── create.blade.php │ ├── customer.blade.php │ ├── details.blade.php │ ├── edit.blade.php │ ├── index.blade.php │ ├── info.blade.php │ ├── invoice.blade.php │ ├── invoice_email.blade.php │ ├── provider.blade.php │ ├── status.blade.php │ └── view.blade.php │ ├── bookingrating │ ├── action.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── category │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade copy.php │ ├── index.blade.php │ └── quick-action.blade.php │ ├── components │ ├── auth-session-status.blade.php │ ├── auth-validation-errors.blade.php │ ├── button.blade.php │ ├── chat-content.blade.php │ ├── chat-item.blade.php │ ├── input.blade.php │ ├── label.blade.php │ ├── master-layout.blade.php │ ├── nav-link.blade.php │ ├── responsive-nav-link.blade.php │ ├── todo-board-card.blade.php │ └── todo-list-card.blade.php │ ├── contactus │ └── contact_email.blade.php │ ├── coupon │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── customer │ ├── action.blade.php │ ├── changepassword.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── user.blade.php │ └── view.blade.php │ ├── dashboard │ ├── dashboard.blade.php │ ├── handyman-dashboard.blade.php │ ├── provider-dashboard.blade.php │ └── user-dashboard.blade.php │ ├── document │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── earning │ ├── action.blade.php │ ├── handyman.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── frontend │ ├── app-settings.blade.php │ └── index.blade.php │ ├── handyman │ ├── action.blade.php │ ├── changepassword.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── provider.blade.php │ ├── select_provider.blade.php │ ├── user.blade.php │ └── view.blade.php │ ├── handymanpayout │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── handymanrating │ ├── action.blade.php │ ├── customer.blade.php │ ├── handyman.blade.php │ └── index.blade.php │ ├── handymantype │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── helper │ └── app_message.blade.php │ ├── home.blade.php │ ├── invoice │ ├── invoice-view.blade.php │ └── invoice.blade.php │ ├── language │ └── index.blade.php │ ├── layouts │ ├── app.blade.php │ ├── dashboard.blade.php │ ├── guest.blade.php │ └── master.blade.php │ ├── notification │ ├── index.blade.php │ └── list.blade.php │ ├── partials │ ├── _body.blade.php │ ├── _body_footer.blade.php │ ├── _body_header.blade.php │ ├── _body_loader.blade.php │ ├── _body_sidebar.blade copy.php │ ├── _body_sidebar.blade.php │ ├── _dynamic_script.blade.php │ ├── _head.blade.php │ ├── _provider.blade.php │ ├── _scripts.blade.php │ ├── newsidebar.php │ └── old-sidebar.php │ ├── payment │ ├── action.blade.php │ ├── cash.blade.php │ ├── cashaction.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── paymentgateway │ ├── cash.blade.php │ ├── cinet.blade.php │ ├── flutterwave.blade.php │ ├── paypal.blade.php │ ├── paystack.blade.php │ ├── razorPay.blade.php │ ├── razorPayX.blade.php │ ├── rezorpay_option.blade.php │ ├── sadad.blade.php │ └── stripe.blade.php │ ├── paymenthistory │ └── index.blade.php │ ├── permission │ ├── add_permission.blade.php │ └── index.blade.php │ ├── plan │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── postrequest │ ├── action.blade.php │ ├── customer.blade.php │ ├── index.blade.php │ ├── provider.blade.php │ └── view.blade.php │ ├── provider │ ├── action.blade.php │ ├── changepassword.blade.php │ ├── create.blade.php │ ├── edittimeslot.blade.php │ ├── index.blade.php │ ├── review.blade.php │ ├── timeslot.blade.php │ ├── user.blade.php │ └── view.blade.php │ ├── provideraddress │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── providerdetail │ ├── all-plan.blade.php │ ├── subscribe-plan.blade.php │ └── unsubscribe-plan.blade.php │ ├── providerdocument │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ └── user.blade.php │ ├── providerpayout │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── user.blade.php │ └── view.blade.php │ ├── providertype │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── ratingreview │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── role │ ├── action.blade.php │ └── index.blade.php │ ├── service │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── service.blade.php │ ├── user_service_action.blade.php │ ├── user_service_list.blade.php │ ├── userservice.blade.php │ └── view.blade.php │ ├── servicefaq │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── servicepackage │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── setting │ ├── advance-payment-setting.blade.php │ ├── comission.blade.php │ ├── config-setting.blade.php │ ├── earning-setting.blade.php │ ├── general-setting.blade.php │ ├── help_support_form.blade.php │ ├── index.blade.php │ ├── language-setting.blade.php │ ├── mail-setting.blade.php │ ├── password_form.blade.php │ ├── payment-setting.blade.php │ ├── privacy_policy_form.blade.php │ ├── profile_form.blade.php │ ├── push-notification-setting.blade.php │ ├── refund_cancellation_policy_form.blade.php │ ├── sidebar-setting.blade.php │ ├── term_condition_form.blade.php │ ├── time_slot.blade.php │ └── user-wallet-setting.blade.php │ ├── slider │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── subcategory │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── taxes │ ├── action.blade.php │ ├── create.blade.php │ └── index.blade.php │ ├── vendor │ └── laravel-menu │ │ └── bootstrap-navbar-items.blade.php │ ├── verification │ └── verification_email.php │ ├── wallet │ ├── action.blade.php │ ├── create.blade.php │ ├── index.blade.php │ ├── user.blade.php │ └── view.blade.php │ └── welcome.blade.php ├── routes ├── admin-api.php ├── api.php ├── auth.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ ├── AuthenticationTest.php │ ├── EmailVerificationTest.php │ ├── ExampleTest.php │ ├── PasswordConfirmationTest.php │ ├── PasswordResetTest.php │ └── RegistrationTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.htaccess -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/.styleci.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helper/CustomPathGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Helper/CustomPathGenerator.php -------------------------------------------------------------------------------- /app/Helper/helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Helper/helper.php -------------------------------------------------------------------------------- /app/Http/Controllers/BankController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/BankController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BlogController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/BlogController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/CouponController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/CouponController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/PlanController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/PlanController.php -------------------------------------------------------------------------------- /app/Http/Controllers/SliderController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/SliderController.php -------------------------------------------------------------------------------- /app/Http/Controllers/TaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/TaxController.php -------------------------------------------------------------------------------- /app/Http/Controllers/WalletController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Controllers/WalletController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/Auth/LoginRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/Auth/LoginRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/BankRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/BankRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/BlogRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/BlogRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/CategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/CouponRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/CouponRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/DocumentRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/DocumentRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/HandymanTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/HandymanTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/PlanRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/PlanRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProviderPayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/ProviderPayout.php -------------------------------------------------------------------------------- /app/Http/Requests/ProviderTypeRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/ProviderTypeRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ServiceRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/ServiceRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/SubCategoryRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/SubCategoryRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/TaxRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/TaxRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/WalletRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Requests/WalletRequest.php -------------------------------------------------------------------------------- /app/Http/Resources/API/BankResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/BankResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/BlogResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/BlogResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/CouponResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/CouponResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/PayoutResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/PayoutResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/PlanResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/PlanResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/SliderResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/SliderResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/TaxResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/TaxResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/TypeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/TypeResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/UserResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/UserResource.php -------------------------------------------------------------------------------- /app/Http/Resources/API/WalletResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Http/Resources/API/WalletResource.php -------------------------------------------------------------------------------- /app/Models/AppDownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/AppDownload.php -------------------------------------------------------------------------------- /app/Models/AppSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/AppSetting.php -------------------------------------------------------------------------------- /app/Models/Bank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Bank.php -------------------------------------------------------------------------------- /app/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BaseModel.php -------------------------------------------------------------------------------- /app/Models/Blog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Blog.php -------------------------------------------------------------------------------- /app/Models/Booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Booking.php -------------------------------------------------------------------------------- /app/Models/BookingActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingActivity.php -------------------------------------------------------------------------------- /app/Models/BookingAddressMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingAddressMapping.php -------------------------------------------------------------------------------- /app/Models/BookingCouponMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingCouponMapping.php -------------------------------------------------------------------------------- /app/Models/BookingExtraCharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingExtraCharge.php -------------------------------------------------------------------------------- /app/Models/BookingHandymanMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingHandymanMapping.php -------------------------------------------------------------------------------- /app/Models/BookingPackageMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingPackageMapping.php -------------------------------------------------------------------------------- /app/Models/BookingRating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingRating.php -------------------------------------------------------------------------------- /app/Models/BookingStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/BookingStatus.php -------------------------------------------------------------------------------- /app/Models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Category.php -------------------------------------------------------------------------------- /app/Models/City.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/City.php -------------------------------------------------------------------------------- /app/Models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Country.php -------------------------------------------------------------------------------- /app/Models/Coupon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Coupon.php -------------------------------------------------------------------------------- /app/Models/CouponServiceMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/CouponServiceMapping.php -------------------------------------------------------------------------------- /app/Models/Documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Documents.php -------------------------------------------------------------------------------- /app/Models/HandymanPayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/HandymanPayout.php -------------------------------------------------------------------------------- /app/Models/HandymanRating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/HandymanRating.php -------------------------------------------------------------------------------- /app/Models/HandymanType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/HandymanType.php -------------------------------------------------------------------------------- /app/Models/Notification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Notification.php -------------------------------------------------------------------------------- /app/Models/PackageServiceMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PackageServiceMapping.php -------------------------------------------------------------------------------- /app/Models/Payment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Payment.php -------------------------------------------------------------------------------- /app/Models/PaymentGateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PaymentGateway.php -------------------------------------------------------------------------------- /app/Models/PaymentHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PaymentHistory.php -------------------------------------------------------------------------------- /app/Models/Permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Permission.php -------------------------------------------------------------------------------- /app/Models/PlanLimit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PlanLimit.php -------------------------------------------------------------------------------- /app/Models/Plans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Plans.php -------------------------------------------------------------------------------- /app/Models/PostJobBid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PostJobBid.php -------------------------------------------------------------------------------- /app/Models/PostJobRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PostJobRequest.php -------------------------------------------------------------------------------- /app/Models/PostJobServiceMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PostJobServiceMapping.php -------------------------------------------------------------------------------- /app/Models/PostRequestStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/PostRequestStatus.php -------------------------------------------------------------------------------- /app/Models/ProviderAddressMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderAddressMapping.php -------------------------------------------------------------------------------- /app/Models/ProviderDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderDocument.php -------------------------------------------------------------------------------- /app/Models/ProviderPayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderPayout.php -------------------------------------------------------------------------------- /app/Models/ProviderSlotMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderSlotMapping.php -------------------------------------------------------------------------------- /app/Models/ProviderSubscription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderSubscription.php -------------------------------------------------------------------------------- /app/Models/ProviderTaxMapping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderTaxMapping.php -------------------------------------------------------------------------------- /app/Models/ProviderType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ProviderType.php -------------------------------------------------------------------------------- /app/Models/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Role.php -------------------------------------------------------------------------------- /app/Models/Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Service.php -------------------------------------------------------------------------------- /app/Models/ServiceFaq.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ServiceFaq.php -------------------------------------------------------------------------------- /app/Models/ServicePackage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ServicePackage.php -------------------------------------------------------------------------------- /app/Models/ServiceProof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/ServiceProof.php -------------------------------------------------------------------------------- /app/Models/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Setting.php -------------------------------------------------------------------------------- /app/Models/Slider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Slider.php -------------------------------------------------------------------------------- /app/Models/State.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/State.php -------------------------------------------------------------------------------- /app/Models/StaticData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/StaticData.php -------------------------------------------------------------------------------- /app/Models/SubCategory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/SubCategory.php -------------------------------------------------------------------------------- /app/Models/SubscriptionTransaction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/SubscriptionTransaction.php -------------------------------------------------------------------------------- /app/Models/Tax.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Tax.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/UserFavouriteProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/UserFavouriteProvider.php -------------------------------------------------------------------------------- /app/Models/UserFavouriteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/UserFavouriteService.php -------------------------------------------------------------------------------- /app/Models/UserPlayerIds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/UserPlayerIds.php -------------------------------------------------------------------------------- /app/Models/Wallet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/Wallet.php -------------------------------------------------------------------------------- /app/Models/WalletHistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Models/WalletHistory.php -------------------------------------------------------------------------------- /app/Notifications/BookingNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Notifications/BookingNotification.php -------------------------------------------------------------------------------- /app/Notifications/CommonNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Notifications/CommonNotification.php -------------------------------------------------------------------------------- /app/Notifications/PayoutNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Notifications/PayoutNotification.php -------------------------------------------------------------------------------- /app/Notifications/WalletNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Notifications/WalletNotification.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Traits/DataTableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/Traits/DataTableTrait.php -------------------------------------------------------------------------------- /app/View/Components/GuestLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/View/Components/GuestLayout.php -------------------------------------------------------------------------------- /app/View/Components/MasterLayout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/app/View/Components/MasterLayout.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/constant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/constant.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/dompdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/dompdf.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/geocoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/geocoder.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/laravel-menu/settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/laravel-menu/settings.php -------------------------------------------------------------------------------- /config/laravel-menu/views.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/laravel-menu/views.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/media-library.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/media-library.php -------------------------------------------------------------------------------- /config/mobile-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/mobile-config.php -------------------------------------------------------------------------------- /config/permission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/permission.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/sanctum.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/CitiesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/CitiesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/CountriesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/CountriesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/PlansTableDataSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/PlansTableDataSeeder.php -------------------------------------------------------------------------------- /database/seeders/RoleTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/RoleTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/ServicesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/ServicesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/SettingsTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/SettingsTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/SlidersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/SlidersTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/StatesTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/StatesTableSeeder.php -------------------------------------------------------------------------------- /database/seeders/StaticDataSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/StaticDataSeeder.php -------------------------------------------------------------------------------- /database/seeders/UserTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/database/seeders/UserTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/about-us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/about-us.json -------------------------------------------------------------------------------- /public/appdownload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/appdownload.json -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/backend-bundle.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/backend-bundle.min.css -------------------------------------------------------------------------------- /public/css/backend-plugin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/backend-plugin.min.css -------------------------------------------------------------------------------- /public/css/backend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/backend.css -------------------------------------------------------------------------------- /public/css/backup/frontend.min.css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/backup/frontend.min.css.txt -------------------------------------------------------------------------------- /public/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /public/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/custom.css -------------------------------------------------------------------------------- /public/css/dragula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/dragula.css -------------------------------------------------------------------------------- /public/css/fronted-custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/fronted-custom.css -------------------------------------------------------------------------------- /public/css/frontend.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/frontend.min.css -------------------------------------------------------------------------------- /public/css/frontend/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/frontend/custom.css -------------------------------------------------------------------------------- /public/css/frontend/slick-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/frontend/slick-theme.css -------------------------------------------------------------------------------- /public/css/frontend/slick.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/frontend/slick.css -------------------------------------------------------------------------------- /public/css/intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/intro.css -------------------------------------------------------------------------------- /public/css/provide.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/provide.css -------------------------------------------------------------------------------- /public/css/themes/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/css/themes/select2.min.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/frontend/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_accordion.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_alert.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_card.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_close.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_functions.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_helpers.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_images.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_modal.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_offcanvas.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_popover.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_progress.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_root.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_type.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /public/frontend/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/bootstrap/_variables.scss -------------------------------------------------------------------------------- /public/frontend/custom-css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/custom-css.scss -------------------------------------------------------------------------------- /public/frontend/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/custom.scss -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/components/loader/_loader.scss: -------------------------------------------------------------------------------- 1 | @import "./simple-loder"; -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/components/map/_vactor-map.scss: -------------------------------------------------------------------------------- 1 | .custom-chart{ 2 | height: 450px; 3 | } -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/helper/_functions.scss: -------------------------------------------------------------------------------- 1 | section { 2 | 3 | } -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/helper/_reboot.scss: -------------------------------------------------------------------------------- 1 | :focus{ 2 | outline: none; 3 | } 4 | -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/helper/utilities/_size.scss: -------------------------------------------------------------------------------- 1 | .h-10{ 2 | height: 10rem; 3 | } -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/plugins/_apexchart.scss: -------------------------------------------------------------------------------- 1 | .apexcharts-radialbar-area { 2 | stroke-linecap: round; 3 | } -------------------------------------------------------------------------------- /public/frontend/handyman-design-system/variables/_table.scss: -------------------------------------------------------------------------------- 1 | $table-th-letter-spacing: .2px; -------------------------------------------------------------------------------- /public/frontend/handyman.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/handyman.scss -------------------------------------------------------------------------------- /public/frontend/swiper.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/frontend/swiper.min.css -------------------------------------------------------------------------------- /public/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/.DS_Store -------------------------------------------------------------------------------- /public/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/01.png -------------------------------------------------------------------------------- /public/images/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/07.png -------------------------------------------------------------------------------- /public/images/dark-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/dark-loader.gif -------------------------------------------------------------------------------- /public/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/default.png -------------------------------------------------------------------------------- /public/images/error/404-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/404-dark.png -------------------------------------------------------------------------------- /public/images/error/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/404.png -------------------------------------------------------------------------------- /public/images/error/500-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/500-dark.png -------------------------------------------------------------------------------- /public/images/error/500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/500.png -------------------------------------------------------------------------------- /public/images/error/Datum_404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/Datum_404.png -------------------------------------------------------------------------------- /public/images/error/Datum_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/Datum_500.png -------------------------------------------------------------------------------- /public/images/error/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/error/maintenance.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/file.png -------------------------------------------------------------------------------- /public/images/flags/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/ar.png -------------------------------------------------------------------------------- /public/images/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/en.png -------------------------------------------------------------------------------- /public/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/es.png -------------------------------------------------------------------------------- /public/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/fr.png -------------------------------------------------------------------------------- /public/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/it.png -------------------------------------------------------------------------------- /public/images/flags/nl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/nl.png -------------------------------------------------------------------------------- /public/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/pl.png -------------------------------------------------------------------------------- /public/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/flags/pt.png -------------------------------------------------------------------------------- /public/images/frontend/about-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/about-1.png -------------------------------------------------------------------------------- /public/images/frontend/about-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/about-2.png -------------------------------------------------------------------------------- /public/images/frontend/about-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/about-bg.png -------------------------------------------------------------------------------- /public/images/frontend/apple-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/apple-white.png -------------------------------------------------------------------------------- /public/images/frontend/apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/apple.png -------------------------------------------------------------------------------- /public/images/frontend/breadcrumb-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/breadcrumb-bg.png -------------------------------------------------------------------------------- /public/images/frontend/certi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/certi.png -------------------------------------------------------------------------------- /public/images/frontend/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/data.png -------------------------------------------------------------------------------- /public/images/frontend/googleplay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/googleplay.png -------------------------------------------------------------------------------- /public/images/frontend/gpay-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/gpay-white.png -------------------------------------------------------------------------------- /public/images/frontend/mb-serv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/mb-serv-1.png -------------------------------------------------------------------------------- /public/images/frontend/mb-serv-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/mb-serv-full.png -------------------------------------------------------------------------------- /public/images/frontend/not_found.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/frontend/not_found.gif -------------------------------------------------------------------------------- /public/images/icon/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/08.png -------------------------------------------------------------------------------- /public/images/icon/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/09.png -------------------------------------------------------------------------------- /public/images/icon/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/10.png -------------------------------------------------------------------------------- /public/images/icon/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/11.png -------------------------------------------------------------------------------- /public/images/icon/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/12.png -------------------------------------------------------------------------------- /public/images/icon/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/13.png -------------------------------------------------------------------------------- /public/images/icon/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/14.png -------------------------------------------------------------------------------- /public/images/icon/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/15.png -------------------------------------------------------------------------------- /public/images/icon/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/16.png -------------------------------------------------------------------------------- /public/images/icon/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/17.png -------------------------------------------------------------------------------- /public/images/icon/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/18.png -------------------------------------------------------------------------------- /public/images/icon/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/19.png -------------------------------------------------------------------------------- /public/images/icon/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/20.png -------------------------------------------------------------------------------- /public/images/icon/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/21.png -------------------------------------------------------------------------------- /public/images/icon/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/22.png -------------------------------------------------------------------------------- /public/images/icon/expand-window.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/expand-window.json -------------------------------------------------------------------------------- /public/images/icon/open-letter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/open-letter.json -------------------------------------------------------------------------------- /public/images/icon/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/icon/pdf.png -------------------------------------------------------------------------------- /public/images/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/language.png -------------------------------------------------------------------------------- /public/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/loader.gif -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/logo.svg -------------------------------------------------------------------------------- /public/images/small/04.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/04.svg -------------------------------------------------------------------------------- /public/images/small/05.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/05.svg -------------------------------------------------------------------------------- /public/images/small/07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/07.png -------------------------------------------------------------------------------- /public/images/small/08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/08.png -------------------------------------------------------------------------------- /public/images/small/09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/09.png -------------------------------------------------------------------------------- /public/images/small/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/10.png -------------------------------------------------------------------------------- /public/images/small/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/11.png -------------------------------------------------------------------------------- /public/images/small/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/12.png -------------------------------------------------------------------------------- /public/images/small/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/13.png -------------------------------------------------------------------------------- /public/images/small/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/14.png -------------------------------------------------------------------------------- /public/images/small/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/data.json -------------------------------------------------------------------------------- /public/images/small/data1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/data1.json -------------------------------------------------------------------------------- /public/images/small/data2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/data2.json -------------------------------------------------------------------------------- /public/images/small/flag-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-01.png -------------------------------------------------------------------------------- /public/images/small/flag-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-02.png -------------------------------------------------------------------------------- /public/images/small/flag-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-03.png -------------------------------------------------------------------------------- /public/images/small/flag-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-04.png -------------------------------------------------------------------------------- /public/images/small/flag-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-05.png -------------------------------------------------------------------------------- /public/images/small/flag-06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/flag-06.png -------------------------------------------------------------------------------- /public/images/small/img-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/img-1.jpg -------------------------------------------------------------------------------- /public/images/small/jpg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/jpg.svg -------------------------------------------------------------------------------- /public/images/small/match-code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/match-code.json -------------------------------------------------------------------------------- /public/images/small/xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/xml.svg -------------------------------------------------------------------------------- /public/images/small/zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/small/zip.svg -------------------------------------------------------------------------------- /public/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/sort_asc.png -------------------------------------------------------------------------------- /public/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /public/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/sort_both.png -------------------------------------------------------------------------------- /public/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/sort_desc.png -------------------------------------------------------------------------------- /public/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /public/images/user/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/images/user/user.png -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/animated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/animated.js -------------------------------------------------------------------------------- /public/js/apexcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/apexcharts.js -------------------------------------------------------------------------------- /public/js/apexcharts.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/apexcharts.min.js -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/backend-bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/backend-bundle.min.js -------------------------------------------------------------------------------- /public/js/bstreeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/bstreeview.js -------------------------------------------------------------------------------- /public/js/chart-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/chart-custom.js -------------------------------------------------------------------------------- /public/js/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/charts.js -------------------------------------------------------------------------------- /public/js/charts/01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/charts/01.js -------------------------------------------------------------------------------- /public/js/charts/02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/charts/02.js -------------------------------------------------------------------------------- /public/js/charts/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/charts/progressbar.js -------------------------------------------------------------------------------- /public/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/core.js -------------------------------------------------------------------------------- /public/js/countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/countdown.js -------------------------------------------------------------------------------- /public/js/country2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/country2.js -------------------------------------------------------------------------------- /public/js/croppy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/croppy.js -------------------------------------------------------------------------------- /public/js/customizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/customizer.js -------------------------------------------------------------------------------- /public/js/dragula.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/dragula.min.js -------------------------------------------------------------------------------- /public/js/flex-tree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/flex-tree.min.js -------------------------------------------------------------------------------- /public/js/frontend.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/frontend.min.js -------------------------------------------------------------------------------- /public/js/frontend.min.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/frontend.min.js.LICENSE.txt -------------------------------------------------------------------------------- /public/js/highcharts-3d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/highcharts-3d.js -------------------------------------------------------------------------------- /public/js/highcharts-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/highcharts-more.js -------------------------------------------------------------------------------- /public/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/highcharts.js -------------------------------------------------------------------------------- /public/js/imagesloaded.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/imagesloaded.pkgd.min.js -------------------------------------------------------------------------------- /public/js/intro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/intro.js -------------------------------------------------------------------------------- /public/js/jquery.appear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/jquery.appear.js -------------------------------------------------------------------------------- /public/js/jquery.barrating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/jquery.barrating.min.js -------------------------------------------------------------------------------- /public/js/kelly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/kelly.js -------------------------------------------------------------------------------- /public/js/mapbox-gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/mapbox-gl.js -------------------------------------------------------------------------------- /public/js/mapbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/mapbox.js -------------------------------------------------------------------------------- /public/js/maps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/maps.js -------------------------------------------------------------------------------- /public/js/masonry.pkgd.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/masonry.pkgd.min.js -------------------------------------------------------------------------------- /public/js/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/material.js -------------------------------------------------------------------------------- /public/js/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/morris.js -------------------------------------------------------------------------------- /public/js/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/morris.min.js -------------------------------------------------------------------------------- /public/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/popper.min.js -------------------------------------------------------------------------------- /public/js/provide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/provide.js -------------------------------------------------------------------------------- /public/js/quill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/quill.js -------------------------------------------------------------------------------- /public/js/raphael-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/raphael-min.js -------------------------------------------------------------------------------- /public/js/rating.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/rating.min.js -------------------------------------------------------------------------------- /public/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/slider.js -------------------------------------------------------------------------------- /public/js/sweetalert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/sweetalert.js -------------------------------------------------------------------------------- /public/js/table-treeview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/table-treeview.js -------------------------------------------------------------------------------- /public/js/tilt.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/tilt.jquery.min.js -------------------------------------------------------------------------------- /public/js/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/tree.js -------------------------------------------------------------------------------- /public/js/usaLow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/usaLow.js -------------------------------------------------------------------------------- /public/js/vector-map-custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/vector-map-custom.js -------------------------------------------------------------------------------- /public/js/worldLow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/js/worldLow.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/phpinfo.php -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/scss/_custom_variable.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/_variable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/_variable.scss -------------------------------------------------------------------------------- /public/scss/backend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend.scss -------------------------------------------------------------------------------- /public/scss/backend/layouts/_dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/layouts/_dark.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_avatars.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_chart.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_contact.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_error.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_error.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_faq.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_faq.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_icon.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_invoice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_invoice.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_loding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_loding.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_map.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_pages.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_pricing.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_profile.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/_timeline.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/apps/_chat.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/apps/_chat.scss -------------------------------------------------------------------------------- /public/scss/backend/pages/apps/_todo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/backend/pages/apps/_todo.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_custom-forms.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_functions.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/_variables.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/bootstrap.css.map -------------------------------------------------------------------------------- /public/scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_badge.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_float.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_hover.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /public/scss/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /public/scss/components/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_alert.scss -------------------------------------------------------------------------------- /public/scss/components/_auth-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_auth-page.scss -------------------------------------------------------------------------------- /public/scss/components/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_badge.scss -------------------------------------------------------------------------------- /public/scss/components/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_box-shadow.scss -------------------------------------------------------------------------------- /public/scss/components/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_button-group.scss -------------------------------------------------------------------------------- /public/scss/components/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_buttons.scss -------------------------------------------------------------------------------- /public/scss/components/_calender.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_calender.scss -------------------------------------------------------------------------------- /public/scss/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_card.scss -------------------------------------------------------------------------------- /public/scss/components/_charts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_charts.scss -------------------------------------------------------------------------------- /public/scss/components/_checkbox.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_checkbox.scss -------------------------------------------------------------------------------- /public/scss/components/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_components.scss -------------------------------------------------------------------------------- /public/scss/components/_countdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_countdown.scss -------------------------------------------------------------------------------- /public/scss/components/_custom-tab.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_custom-tab.scss -------------------------------------------------------------------------------- /public/scss/components/_custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_custom.scss -------------------------------------------------------------------------------- /public/scss/components/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_dropdown.scss -------------------------------------------------------------------------------- /public/scss/components/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_footer.scss -------------------------------------------------------------------------------- /public/scss/components/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_grid.scss -------------------------------------------------------------------------------- /public/scss/components/_icon-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_icon-box.scss -------------------------------------------------------------------------------- /public/scss/components/_input-label.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_input-label.scss -------------------------------------------------------------------------------- /public/scss/components/_list-style-1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_list-style-1.scss -------------------------------------------------------------------------------- /public/scss/components/_list-style-2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_list-style-2.scss -------------------------------------------------------------------------------- /public/scss/components/_list-style-3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_list-style-3.scss -------------------------------------------------------------------------------- /public/scss/components/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_media.scss -------------------------------------------------------------------------------- /public/scss/components/_navbar.scss: -------------------------------------------------------------------------------- 1 | .navbar { 2 | padding: 10px 15px; 3 | } -------------------------------------------------------------------------------- /public/scss/components/_pagination.scss: -------------------------------------------------------------------------------- 1 | .page-link{ 2 | border-color: $primary; 3 | } -------------------------------------------------------------------------------- /public/scss/components/_progressbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_progressbar.scss -------------------------------------------------------------------------------- /public/scss/components/_ratting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_ratting.scss -------------------------------------------------------------------------------- /public/scss/components/_ripple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_ripple.scss -------------------------------------------------------------------------------- /public/scss/components/_switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_switch.scss -------------------------------------------------------------------------------- /public/scss/components/_tab-pane.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_tab-pane.scss -------------------------------------------------------------------------------- /public/scss/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_table.scss -------------------------------------------------------------------------------- /public/scss/components/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_tabs.scss -------------------------------------------------------------------------------- /public/scss/components/_top-navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_top-navbar.scss -------------------------------------------------------------------------------- /public/scss/components/_treeview.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_treeview.scss -------------------------------------------------------------------------------- /public/scss/components/_yourDoc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/components/_yourDoc.scss -------------------------------------------------------------------------------- /public/scss/components/sidebar/_sidebar-dark.scss: -------------------------------------------------------------------------------- 1 | .sidebar-dark { 2 | background: $dark-card-bg; 3 | } 4 | -------------------------------------------------------------------------------- /public/scss/helper/_custom-animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/_custom-animation.scss -------------------------------------------------------------------------------- /public/scss/helper/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/_fonts.scss -------------------------------------------------------------------------------- /public/scss/helper/_functions.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/helper/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/_mixins.scss -------------------------------------------------------------------------------- /public/scss/helper/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/_root.scss -------------------------------------------------------------------------------- /public/scss/helper/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/_utilities.scss -------------------------------------------------------------------------------- /public/scss/helper/animation/_base.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/helper/animation/_fade.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/helper/mixins/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/mixins/_avatar.scss -------------------------------------------------------------------------------- /public/scss/helper/utilities/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/utilities/_avatar.scss -------------------------------------------------------------------------------- /public/scss/helper/utilities/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/utilities/_font.scss -------------------------------------------------------------------------------- /public/scss/helper/utilities/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/utilities/_image.scss -------------------------------------------------------------------------------- /public/scss/helper/utilities/_width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/helper/utilities/_width.scss -------------------------------------------------------------------------------- /public/scss/intro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/intro.css -------------------------------------------------------------------------------- /public/scss/intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/intro.scss -------------------------------------------------------------------------------- /public/scss/intro_componants/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/intro_componants/_footer.scss -------------------------------------------------------------------------------- /public/scss/intro_componants/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/intro_componants/_navbar.scss -------------------------------------------------------------------------------- /public/scss/intro_componants/_slider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/intro_componants/_slider.scss -------------------------------------------------------------------------------- /public/scss/plugins/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_animate.scss -------------------------------------------------------------------------------- /public/scss/plugins/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_chart.scss -------------------------------------------------------------------------------- /public/scss/plugins/_choices.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_choices.scss -------------------------------------------------------------------------------- /public/scss/plugins/_flatpicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_flatpicker.scss -------------------------------------------------------------------------------- /public/scss/plugins/_plugins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_plugins.scss -------------------------------------------------------------------------------- /public/scss/plugins/_select2.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/plugins/_sweet-alert.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/scss/plugins/_wow-animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/scss/plugins/_wow-animate.scss -------------------------------------------------------------------------------- /public/uploads/6/icons8-mechanic-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/uploads/6/icons8-mechanic-96.png -------------------------------------------------------------------------------- /public/vendor/confirmJs/confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/confirmJs/confirm.min.js -------------------------------------------------------------------------------- /public/vendor/fullcalendar/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/core/README.md -------------------------------------------------------------------------------- /public/vendor/fullcalendar/core/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/core/main.css -------------------------------------------------------------------------------- /public/vendor/fullcalendar/core/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/core/main.d.ts -------------------------------------------------------------------------------- /public/vendor/fullcalendar/core/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/core/main.js -------------------------------------------------------------------------------- /public/vendor/fullcalendar/list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/list/README.md -------------------------------------------------------------------------------- /public/vendor/fullcalendar/list/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/list/main.css -------------------------------------------------------------------------------- /public/vendor/fullcalendar/list/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/list/main.d.ts -------------------------------------------------------------------------------- /public/vendor/fullcalendar/list/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/list/main.js -------------------------------------------------------------------------------- /public/vendor/fullcalendar/luxon/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/luxon/main.js -------------------------------------------------------------------------------- /public/vendor/fullcalendar/moment/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/moment/main.js -------------------------------------------------------------------------------- /public/vendor/fullcalendar/rrule/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/fullcalendar/rrule/main.js -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/collection/index.js: -------------------------------------------------------------------------------- 1 | export { addIcons } from './components/icon/utils'; 2 | -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/esm/index.mjs -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./cjs/index.cjs.js'); 2 | -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/index.mjs: -------------------------------------------------------------------------------- 1 | export * from './esm-es5/index.mjs'; -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/ionicons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/ionicons.js -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/ionicons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/ionicons.json -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/loader/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/loader/cdn.js -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/add.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/alarm.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/alert.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/apps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/apps.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/at.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/bed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/bed.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/beer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/beer.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/boat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/boat.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/body.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/body.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/book.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/brush.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/bug.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/build.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/bulb.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/bus.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cafe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cafe.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/call.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/car.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/card.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/card.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cart.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cash.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/close.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cloud.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/code.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cog.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/copy.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/crop.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cube.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/cut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/cut.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/disc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/disc.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/ear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/ear.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/earth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/earth.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/easel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/easel.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/egg.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/enter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/enter.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/exit.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/eye.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/film.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/film.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/flag.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/flame.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/flame.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/flash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/flash.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/flask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/flask.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/gift.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/globe.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/golf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/golf.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/grid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/grid.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/happy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/happy.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/heart.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/help.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/home.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/image.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/key.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/leaf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/leaf.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/link.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/list.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/mail.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/male.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/man.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/map.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/medal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/medal.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/menu.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/mic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/mic.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/moon.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/move.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/move.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/open.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/pause.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/paw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/paw.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/pin.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/pint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/pint.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/pizza.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/pizza.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/play.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/power.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/print.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/print.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/pulse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/pulse.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/push.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/push.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/radio.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/rainy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/rainy.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/rose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/rose.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/sad.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/save.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/scan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/scan.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/send.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/share.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/shirt.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/skull.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/skull.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/snow.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/star.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/stop.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/sunny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/sunny.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/sync.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/text.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/time.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/time.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/timer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/timer.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/today.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/today.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/train.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/train.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/trash.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/tv.svg -------------------------------------------------------------------------------- /public/vendor/ionicons/dist/svg/walk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/ionicons/dist/svg/walk.svg -------------------------------------------------------------------------------- /public/vendor/mapbox/mapbox-gl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/mapbox/mapbox-gl.css -------------------------------------------------------------------------------- /public/vendor/remixicon/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/remixicon/License -------------------------------------------------------------------------------- /public/vendor/select2/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/vendor/select2/css/select2.css -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/css/frontend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/css/frontend.css -------------------------------------------------------------------------------- /resources/js/backend-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/backend-bundle.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/frontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/frontend.js -------------------------------------------------------------------------------- /resources/js/layouts/MasterLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/layouts/MasterLayout.vue -------------------------------------------------------------------------------- /resources/js/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/messages.js -------------------------------------------------------------------------------- /resources/js/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/request.js -------------------------------------------------------------------------------- /resources/js/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/router.js -------------------------------------------------------------------------------- /resources/js/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/store/index.js -------------------------------------------------------------------------------- /resources/js/trans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/trans.js -------------------------------------------------------------------------------- /resources/js/views/About/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/About/About.vue -------------------------------------------------------------------------------- /resources/js/views/Auth/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Auth/Login.vue -------------------------------------------------------------------------------- /resources/js/views/Auth/Register.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Auth/Register.vue -------------------------------------------------------------------------------- /resources/js/views/Blog/Blog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Blog/Blog.vue -------------------------------------------------------------------------------- /resources/js/views/Blog/BlogDetail.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Blog/BlogDetail.vue -------------------------------------------------------------------------------- /resources/js/views/Booking/Booking.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Booking/Booking.vue -------------------------------------------------------------------------------- /resources/js/views/Service/Gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Service/Gallery.vue -------------------------------------------------------------------------------- /resources/js/views/Service/Service.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/js/views/Service/Service.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/en/messages.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/lang/es/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/es/auth.php -------------------------------------------------------------------------------- /resources/lang/es/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/es/messages.php -------------------------------------------------------------------------------- /resources/lang/es/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/es/pagination.php -------------------------------------------------------------------------------- /resources/lang/es/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/es/passwords.php -------------------------------------------------------------------------------- /resources/lang/es/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/es/validation.php -------------------------------------------------------------------------------- /resources/lang/fr/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/fr/auth.php -------------------------------------------------------------------------------- /resources/lang/fr/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/fr/messages.php -------------------------------------------------------------------------------- /resources/lang/fr/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/fr/pagination.php -------------------------------------------------------------------------------- /resources/lang/fr/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/fr/passwords.php -------------------------------------------------------------------------------- /resources/lang/fr/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/fr/validation.php -------------------------------------------------------------------------------- /resources/lang/it/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/it/auth.php -------------------------------------------------------------------------------- /resources/lang/it/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/it/messages.php -------------------------------------------------------------------------------- /resources/lang/it/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/it/pagination.php -------------------------------------------------------------------------------- /resources/lang/it/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/it/passwords.php -------------------------------------------------------------------------------- /resources/lang/it/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/it/validation.php -------------------------------------------------------------------------------- /resources/lang/nl/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/nl/auth.php -------------------------------------------------------------------------------- /resources/lang/nl/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/nl/messages.php -------------------------------------------------------------------------------- /resources/lang/nl/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/nl/pagination.php -------------------------------------------------------------------------------- /resources/lang/nl/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/nl/passwords.php -------------------------------------------------------------------------------- /resources/lang/nl/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/nl/validation.php -------------------------------------------------------------------------------- /resources/lang/pt/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/pt/auth.php -------------------------------------------------------------------------------- /resources/lang/pt/messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/pt/messages.php -------------------------------------------------------------------------------- /resources/lang/pt/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/pt/pagination.php -------------------------------------------------------------------------------- /resources/lang/pt/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/pt/passwords.php -------------------------------------------------------------------------------- /resources/lang/pt/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/lang/pt/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/scss/backend-bundle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/scss/backend-bundle.scss -------------------------------------------------------------------------------- /resources/views/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/app.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/bank/action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/bank/action.blade.php -------------------------------------------------------------------------------- /resources/views/bank/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/bank/create.blade.php -------------------------------------------------------------------------------- /resources/views/bank/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/bank/index.blade.php -------------------------------------------------------------------------------- /resources/views/bank/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/bank/user.blade.php -------------------------------------------------------------------------------- /resources/views/bank/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/bank/view.blade.php -------------------------------------------------------------------------------- /resources/views/blog/action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/blog/action.blade.php -------------------------------------------------------------------------------- /resources/views/blog/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/blog/create.blade.php -------------------------------------------------------------------------------- /resources/views/blog/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/blog/index.blade.php -------------------------------------------------------------------------------- /resources/views/blog/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/blog/user.blade.php -------------------------------------------------------------------------------- /resources/views/booking/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/booking/edit.blade.php -------------------------------------------------------------------------------- /resources/views/booking/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/booking/index.blade.php -------------------------------------------------------------------------------- /resources/views/booking/info.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/booking/info.blade.php -------------------------------------------------------------------------------- /resources/views/booking/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/booking/view.blade.php -------------------------------------------------------------------------------- /resources/views/coupon/action.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/coupon/action.blade.php -------------------------------------------------------------------------------- /resources/views/coupon/create.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/coupon/create.blade.php -------------------------------------------------------------------------------- /resources/views/coupon/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/coupon/index.blade.php -------------------------------------------------------------------------------- /resources/views/customer/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/customer/user.blade.php -------------------------------------------------------------------------------- /resources/views/customer/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/customer/view.blade.php -------------------------------------------------------------------------------- /resources/views/earning/index.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/earning/index.blade.php -------------------------------------------------------------------------------- /resources/views/earning/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/earning/user.blade.php -------------------------------------------------------------------------------- /resources/views/errors/401.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/401.blade.php -------------------------------------------------------------------------------- /resources/views/errors/403.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/403.blade.php -------------------------------------------------------------------------------- /resources/views/errors/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/404.blade.php -------------------------------------------------------------------------------- /resources/views/errors/419.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/419.blade.php -------------------------------------------------------------------------------- /resources/views/errors/429.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/429.blade.php -------------------------------------------------------------------------------- /resources/views/errors/500.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/500.blade.php -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/503.blade.php -------------------------------------------------------------------------------- /resources/views/errors/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/errors/layout.blade.php -------------------------------------------------------------------------------- /resources/views/handyman/user.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/handyman/user.blade.php -------------------------------------------------------------------------------- /resources/views/handyman/view.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/handyman/view.blade.php -------------------------------------------------------------------------------- /resources/views/home.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/home.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/app.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/layouts/app.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OnyedikaBenjamin/Premium_Craft-with-JetStream-auth-api/HEAD/resources/views/layouts/guest.blade.php -------------------------------------------------------------------------------- /resources/views/partials/_body_loader.blade.php: -------------------------------------------------------------------------------- 1 |