├── .gitbook.yaml ├── .gitbook └── assets │ ├── form_pic.png │ └── grid_pic.png ├── LICENSE ├── README.md ├── composer.json ├── config └── speed-admin.php ├── database └── migrations │ ├── 2021_01_17_152910_create_table_tenant_organizations.php │ ├── 2021_01_17_152912_add_admin_columns_to_users_table.php │ ├── 2021_05_06_003522_create_table_roles.php │ ├── 2021_05_06_003605_create_table_permission_role.php │ ├── 2021_05_06_003610_create_table_role_user.php │ └── 2021_07_18_003615_create_table_settings.php ├── docs ├── .gitbook │ └── assets │ │ ├── applications-management.png │ │ ├── belongsto-field.png │ │ ├── belongstomany-field.png │ │ ├── brand-permissions.png │ │ ├── brands-form.png │ │ ├── brands-grid.png │ │ ├── brands-menu.png │ │ ├── checkbox-field.png │ │ ├── custom_actions.png │ │ ├── datetime-field.png │ │ ├── form_pic.png │ │ ├── grid.png │ │ ├── grid_pic.png │ │ ├── html-field.png │ │ ├── image-field.png │ │ ├── orders_form.gif │ │ ├── products-form-fields.png │ │ ├── products-grid.png │ │ ├── repeater-field.png │ │ ├── repeater-inside-repeater.png │ │ ├── roles-form.png │ │ ├── roles-grid.png │ │ ├── settings.png │ │ ├── text-field.png │ │ ├── textarea.png │ │ └── users-management.png ├── README.md ├── SUMMARY.md ├── change-logs.md ├── features.md ├── fields │ ├── belongsto.md │ ├── belongstomany.md │ ├── checkbox.md │ ├── custom-field.md │ ├── datetime.md │ ├── div.md │ ├── html.md │ ├── image.md │ ├── repeater.md │ ├── select.md │ ├── text.md │ └── textarea.md ├── miscellaneous │ ├── how-to-add-controller.md │ ├── how-to-add-custom-actions.md │ ├── how-to-add-modules-applications.md │ ├── how-to-add-routes.md │ ├── how-to-add-translatable-fields-to-forms.md │ ├── how-to-change-speed-admin-title-and-other-information.md │ ├── how-to-override-model-and-add-remove-form-fields-or-grid-columns.md │ ├── how-to-use-multi-tenant-feature.md │ └── settings-management.md └── quick-start-tutorial │ ├── README.md │ ├── about-this-tutorial.md │ ├── brands-crud.md │ ├── categories-crud.md │ ├── orders-crud.md │ └── products-crud.md ├── public ├── axios-0.21.1.min.js ├── coreui3.4.0 │ ├── 404.html │ ├── 500.html │ ├── assets │ │ ├── brand │ │ │ └── coreui.svg │ │ ├── favicon │ │ │ ├── android-icon-144x144.png │ │ │ ├── android-icon-192x192.png │ │ │ ├── android-icon-36x36.png │ │ │ ├── android-icon-48x48.png │ │ │ ├── android-icon-72x72.png │ │ │ ├── android-icon-96x96.png │ │ │ ├── apple-icon-114x114.png │ │ │ ├── apple-icon-120x120.png │ │ │ ├── apple-icon-144x144.png │ │ │ ├── apple-icon-152x152.png │ │ │ ├── apple-icon-180x180.png │ │ │ ├── apple-icon-57x57.png │ │ │ ├── apple-icon-60x60.png │ │ │ ├── apple-icon-72x72.png │ │ │ ├── apple-icon-76x76.png │ │ │ ├── apple-icon-precomposed.png │ │ │ ├── apple-icon.png │ │ │ ├── browserconfig.xml │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── manifest.json │ │ │ ├── ms-icon-144x144.png │ │ │ ├── ms-icon-150x150.png │ │ │ ├── ms-icon-310x310.png │ │ │ └── ms-icon-70x70.png │ │ ├── icons │ │ │ ├── 3d.svg │ │ │ ├── 4k.svg │ │ │ ├── account-logout.svg │ │ │ ├── action-redo.svg │ │ │ ├── action-undo.svg │ │ │ ├── address-book.svg │ │ │ ├── airplane-mode-off.svg │ │ │ ├── airplane-mode.svg │ │ │ ├── airplay.svg │ │ │ ├── alarm.svg │ │ │ ├── album.svg │ │ │ ├── align-center.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── american-football.svg │ │ │ ├── android.svg │ │ │ ├── angular.svg │ │ │ ├── aperture.svg │ │ │ ├── apple.svg │ │ │ ├── applications-settings.svg │ │ │ ├── applications.svg │ │ │ ├── arrow-bottom.svg │ │ │ ├── arrow-circle-bottom.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-top.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-thick-bottom.svg │ │ │ ├── arrow-thick-from-bottom.svg │ │ │ ├── arrow-thick-from-left.svg │ │ │ ├── arrow-thick-from-right.svg │ │ │ ├── arrow-thick-from-top.svg │ │ │ ├── arrow-thick-left.svg │ │ │ ├── arrow-thick-right.svg │ │ │ ├── arrow-thick-to-bottom.svg │ │ │ ├── arrow-thick-to-left.svg │ │ │ ├── arrow-thick-to-right.svg │ │ │ ├── arrow-thick-to-top.svg │ │ │ ├── arrow-thick-top.svg │ │ │ ├── arrow-top.svg │ │ │ ├── assistive-listening-system.svg │ │ │ ├── asterisk-circle.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── audio-description.svg │ │ │ ├── audio-spectrum.svg │ │ │ ├── audio.svg │ │ │ ├── av-timer.svg │ │ │ ├── badge.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── bank.svg │ │ │ ├── bar-chart.svg │ │ │ ├── barcode.svg │ │ │ ├── baseball.svg │ │ │ ├── basket.svg │ │ │ ├── basketball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-0.svg │ │ │ ├── battery-3.svg │ │ │ ├── battery-5.svg │ │ │ ├── battery-alert.svg │ │ │ ├── battery-slash.svg │ │ │ ├── beach-access.svg │ │ │ ├── beaker.svg │ │ │ ├── bed.svg │ │ │ ├── bell.svg │ │ │ ├── bike.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blind.svg │ │ │ ├── bluetooth.svg │ │ │ ├── blur-circular.svg │ │ │ ├── blur-linear.svg │ │ │ ├── blur.svg │ │ │ ├── boat-alt.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── bootstrap.svg │ │ │ ├── border-all.svg │ │ │ ├── border-bottom.svg │ │ │ ├── border-clear.svg │ │ │ ├── border-horizontal.svg │ │ │ ├── border-inner.svg │ │ │ ├── border-left.svg │ │ │ ├── border-outer.svg │ │ │ ├── border-right.svg │ │ │ ├── border-style.svg │ │ │ ├── border-top.svg │ │ │ ├── border-vertical.svg │ │ │ ├── bowling.svg │ │ │ ├── braille.svg │ │ │ ├── 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 │ │ │ │ ├── brands-symbol-defs.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.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 │ │ │ │ ├── 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 │ │ │ │ ├── dashcube.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.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.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-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 │ │ │ │ ├── imdb.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 │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.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 │ │ │ │ ├── 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.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 │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.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 │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.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 │ │ │ │ ├── uniregistry.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 │ │ │ ├── briefcase.svg │ │ │ ├── brightness.svg │ │ │ ├── british-pound.svg │ │ │ ├── browser.svg │ │ │ ├── brush-alt.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── burger.svg │ │ │ ├── bus-alt.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-control.svg │ │ │ ├── camera-roll.svg │ │ │ ├── camera.svg │ │ │ ├── car-alt.svg │ │ │ ├── caret-bottom.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-top.svg │ │ │ ├── cart.svg │ │ │ ├── casino.svg │ │ │ ├── cast.svg │ │ │ ├── cat.svg │ │ │ ├── center-focus.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── chart.svg │ │ │ ├── chat-bubble.svg │ │ │ ├── check.svg │ │ │ ├── chevron-bottom.svg │ │ │ ├── chevron-circle-down-alt.svg │ │ │ ├── chevron-circle-left-alt.svg │ │ │ ├── chevron-circle-right-alt.svg │ │ │ ├── chevron-circle-up-alt.svg │ │ │ ├── chevron-double-down.svg │ │ │ ├── chevron-double-left.svg │ │ │ ├── chevron-double-right.svg │ │ │ ├── chevron-double-up-alt.svg │ │ │ ├── chevron-double-up.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-top.svg │ │ │ ├── child-friendly.svg │ │ │ ├── child.svg │ │ │ ├── circle.svg │ │ │ ├── clear-all.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download.svg │ │ │ ├── cloud-upload.svg │ │ │ ├── cloud.svg │ │ │ ├── cloudy.svg │ │ │ ├── code.svg │ │ │ ├── codepen.svg │ │ │ ├── coffee.svg │ │ │ ├── color-border.svg │ │ │ ├── color-fill.svg │ │ │ ├── color-palette.svg │ │ │ ├── columns.svg │ │ │ ├── comment-bubble.svg │ │ │ ├── comment-square.svg │ │ │ ├── compass.svg │ │ │ ├── compress.svg │ │ │ ├── contact.svg │ │ │ ├── contrast.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── coreui │ │ │ │ └── free-symbol-defs.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-rotate.svg │ │ │ ├── crop.svg │ │ │ ├── cursor-move.svg │ │ │ ├── cursor.svg │ │ │ ├── cut.svg │ │ │ ├── data-transfer-down.svg │ │ │ ├── data-transfer-up.svg │ │ │ ├── deaf.svg │ │ │ ├── delete.svg │ │ │ ├── description.svg │ │ │ ├── devices.svg │ │ │ ├── dialpad.svg │ │ │ ├── dinner.svg │ │ │ ├── dog.svg │ │ │ ├── dollar.svg │ │ │ ├── door.svg │ │ │ ├── double-quote-sans-left.svg │ │ │ ├── double-quote-sans-right.svg │ │ │ ├── drink-alcohol.svg │ │ │ ├── drink.svg │ │ │ ├── drop.svg │ │ │ ├── drop1.svg │ │ │ ├── elevator.svg │ │ │ ├── energy.svg │ │ │ ├── envelope-closed.svg │ │ │ ├── envelope-letter.svg │ │ │ ├── envelope-open.svg │ │ │ ├── equalizer.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro.svg │ │ │ ├── excerpt.svg │ │ │ ├── exit-to-app.svg │ │ │ ├── expand-down.svg │ │ │ ├── expand-left.svg │ │ │ ├── expand-right.svg │ │ │ ├── expand-up.svg │ │ │ ├── exposure.svg │ │ │ ├── external-link.svg │ │ │ ├── eye.svg │ │ │ ├── eyedropper.svg │ │ │ ├── face-dead.svg │ │ │ ├── face.svg │ │ │ ├── facebook.svg │ │ │ ├── fastfood.svg │ │ │ ├── fax.svg │ │ │ ├── featured-playlist.svg │ │ │ ├── file.svg │ │ │ ├── filter-frames.svg │ │ │ ├── filter-photo.svg │ │ │ ├── filter.svg │ │ │ ├── find-in-page.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire.svg │ │ │ ├── flag-alt.svg │ │ │ ├── flight-takeoff.svg │ │ │ ├── flip-to-back.svg │ │ │ ├── flip-to-front.svg │ │ │ ├── flip.svg │ │ │ ├── flower.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font.svg │ │ │ ├── football.svg │ │ │ ├── fork.svg │ │ │ ├── fridge.svg │ │ │ ├── frown.svg │ │ │ ├── fullscreen-exit.svg │ │ │ ├── fullscreen.svg │ │ │ ├── functions-alt.svg │ │ │ ├── functions.svg │ │ │ ├── gamepad.svg │ │ │ ├── garage.svg │ │ │ ├── gem.svg │ │ │ ├── gif.svg │ │ │ ├── gift.svg │ │ │ ├── git.svg │ │ │ ├── github-circle.svg │ │ │ ├── github.svg │ │ │ ├── gitlab.svg │ │ │ ├── globe-alt.svg │ │ │ ├── golf-alt.svg │ │ │ ├── golf.svg │ │ │ ├── gradient.svg │ │ │ ├── grain.svg │ │ │ ├── graph.svg │ │ │ ├── grid-slash.svg │ │ │ ├── grid.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hd.svg │ │ │ ├── hdr.svg │ │ │ ├── header.svg │ │ │ ├── headphones.svg │ │ │ ├── healing.svg │ │ │ ├── heart.svg │ │ │ ├── highlighter.svg │ │ │ ├── highligt.svg │ │ │ ├── history.svg │ │ │ ├── home.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── house.svg │ │ │ ├── https.svg │ │ │ ├── image-broken.svg │ │ │ ├── image-plus.svg │ │ │ ├── image1.svg │ │ │ ├── inbox.svg │ │ │ ├── indent-decrease.svg │ │ │ ├── indent-increase.svg │ │ │ ├── industry-slash.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info.svg │ │ │ ├── input-hdmi.svg │ │ │ ├── input-power.svg │ │ │ ├── input.svg │ │ │ ├── instagram.svg │ │ │ ├── institution.svg │ │ │ ├── italic.svg │ │ │ ├── justify-center.svg │ │ │ ├── justify-left.svg │ │ │ ├── justify-right.svg │ │ │ ├── keyboard.svg │ │ │ ├── lan.svg │ │ │ ├── language.svg │ │ │ ├── laptop.svg │ │ │ ├── layers.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── level-down.svg │ │ │ ├── level-up.svg │ │ │ ├── library-add.svg │ │ │ ├── library.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── line-spacing.svg │ │ │ ├── line-style.svg │ │ │ ├── line-weight.svg │ │ │ ├── link-alt.svg │ │ │ ├── link-broken.svg │ │ │ ├── link.svg │ │ │ ├── linkedin.svg │ │ │ ├── list-filter.svg │ │ │ ├── list-high-priority.svg │ │ │ ├── list-low-priority.svg │ │ │ ├── list-numbered.svg │ │ │ ├── list-rich.svg │ │ │ ├── list.svg │ │ │ ├── location-pin.svg │ │ │ ├── lock-locked.svg │ │ │ ├── lock-unlocked.svg │ │ │ ├── locomotive.svg │ │ │ ├── loop-1.svg │ │ │ ├── loop-circular.svg │ │ │ ├── loop.svg │ │ │ ├── low-vision.svg │ │ │ ├── magnifying-glass.svg │ │ │ ├── map.svg │ │ │ ├── media-eject.svg │ │ │ ├── media-pause.svg │ │ │ ├── media-play.svg │ │ │ ├── media-record.svg │ │ │ ├── media-skip-backward.svg │ │ │ ├── media-skip-forward.svg │ │ │ ├── media-step-backward.svg │ │ │ ├── media-step-forward.svg │ │ │ ├── media-stop.svg │ │ │ ├── medical-cross.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menu.svg │ │ │ ├── microphone.svg │ │ │ ├── minus.svg │ │ │ ├── mobile-landscape.svg │ │ │ ├── mobile.svg │ │ │ ├── money.svg │ │ │ ├── monitor.svg │ │ │ ├── mood-bad.svg │ │ │ ├── mood-good.svg │ │ │ ├── mood-very-bad.svg │ │ │ ├── mood-very-good.svg │ │ │ ├── moon.svg │ │ │ ├── mouse.svg │ │ │ ├── mouth-slash.svg │ │ │ ├── move.svg │ │ │ ├── movie.svg │ │ │ ├── mug-tea.svg │ │ │ ├── mug.svg │ │ │ ├── music-note.svg │ │ │ ├── newspaper.svg │ │ │ ├── notes.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── opacity.svg │ │ │ ├── options-horizontal.svg │ │ │ ├── options.svg │ │ │ ├── paint-bucket.svg │ │ │ ├── paint.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── paragraph.svg │ │ │ ├── paw.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pencil.svg │ │ │ ├── people.svg │ │ │ ├── phone.svg │ │ │ ├── pin.svg │ │ │ ├── pizza.svg │ │ │ ├── playlist-add.svg │ │ │ ├── plus.svg │ │ │ ├── polymer.svg │ │ │ ├── pool.svg │ │ │ ├── power-standby.svg │ │ │ ├── pregnant.svg │ │ │ ├── print.svg │ │ │ ├── puzzle.svg │ │ │ ├── qr-code.svg │ │ │ ├── rain.svg │ │ │ ├── react.svg │ │ │ ├── rectangle.svg │ │ │ ├── reddit.svg │ │ │ ├── registered.svg │ │ │ ├── reload.svg │ │ │ ├── resize-both.svg │ │ │ ├── resize-height.svg │ │ │ ├── resize-width.svg │ │ │ ├── restaurant.svg │ │ │ ├── room.svg │ │ │ ├── rowing.svg │ │ │ ├── rss.svg │ │ │ ├── running.svg │ │ │ ├── satelite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screen-desktop.svg │ │ │ ├── screen-smartphone.svg │ │ │ ├── scrubber.svg │ │ │ ├── settings.svg │ │ │ ├── share-all.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-boxed.svg │ │ │ ├── share.svg │ │ │ ├── shield-alt.svg │ │ │ ├── short-text.svg │ │ │ ├── shower.svg │ │ │ ├── sign-language.svg │ │ │ ├── signal-cellular-0.svg │ │ │ ├── signal-cellular-3.svg │ │ │ ├── signal-cellular-4.svg │ │ │ ├── sim.svg │ │ │ ├── sitemap.svg │ │ │ ├── skype.svg │ │ │ ├── smile-plus.svg │ │ │ ├── smile.svg │ │ │ ├── smoke-free.svg │ │ │ ├── smoking-room.svg │ │ │ ├── snowflake.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-ascending.svg │ │ │ ├── sort-descending.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── spa.svg │ │ │ ├── space-bar.svg │ │ │ ├── speaker.svg │ │ │ ├── speech.svg │ │ │ ├── speedometer.svg │ │ │ ├── spotify.svg │ │ │ ├── spreadsheet.svg │ │ │ ├── square.svg │ │ │ ├── stackoverflow.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── storage.svg │ │ │ ├── stream.svg │ │ │ ├── sun.svg │ │ │ ├── swap-horizontal.svg │ │ │ ├── swap-vertical.svg │ │ │ ├── swimming.svg │ │ │ ├── sync.svg │ │ │ ├── tablet.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── task.svg │ │ │ ├── taxi.svg │ │ │ ├── tennis-ball.svg │ │ │ ├── tennis.svg │ │ │ ├── terminal.svg │ │ │ ├── terrain.svg │ │ │ ├── text-shapes.svg │ │ │ ├── text-size.svg │ │ │ ├── text-square.svg │ │ │ ├── text-strike.svg │ │ │ ├── text.svg │ │ │ ├── thumb-down.svg │ │ │ ├── thumb-up.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toilet.svg │ │ │ ├── touch-app.svg │ │ │ ├── trademark.svg │ │ │ ├── transfer.svg │ │ │ ├── translate.svg │ │ │ ├── trash.svg │ │ │ ├── triangle.svg │ │ │ ├── truck.svg │ │ │ ├── tv.svg │ │ │ ├── twitter.svg │ │ │ ├── underline.svg │ │ │ ├── user-female.svg │ │ │ ├── user-follow.svg │ │ │ ├── user-unfollow.svg │ │ │ ├── user.svg │ │ │ ├── vector.svg │ │ │ ├── vertical-align-bottom.svg │ │ │ ├── vertical-align-bottom1.svg │ │ │ ├── vertical-align-center.svg │ │ │ ├── vertical-align-center1.svg │ │ │ ├── vertical-align-top.svg │ │ │ ├── vertical-align-top1.svg │ │ │ ├── video.svg │ │ │ ├── view-column.svg │ │ │ ├── view-module.svg │ │ │ ├── view-quilt.svg │ │ │ ├── view-stream.svg │ │ │ ├── voice-over-record.svg │ │ │ ├── volume-high.svg │ │ │ ├── volume-low.svg │ │ │ ├── volume-off.svg │ │ │ ├── vue.svg │ │ │ ├── walk.svg │ │ │ ├── wallet.svg │ │ │ ├── wallpaper.svg │ │ │ ├── warning.svg │ │ │ ├── watch.svg │ │ │ ├── wc.svg │ │ │ ├── weightlifitng.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi-signal-0.svg │ │ │ ├── wifi-signal-1.svg │ │ │ ├── wifi-signal-2.svg │ │ │ ├── wifi-signal-4.svg │ │ │ ├── wifi-signal-off.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── window.svg │ │ │ ├── wrap-text.svg │ │ │ ├── x-circle.svg │ │ │ ├── x.svg │ │ │ ├── yen.svg │ │ │ ├── zoom-in.svg │ │ │ └── zoom-out.svg │ │ └── img │ │ │ └── avatars │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── user.png │ ├── base │ │ ├── breadcrumb.html │ │ ├── cards.html │ │ ├── carousel.html │ │ ├── collapse.html │ │ ├── forms.html │ │ ├── jumbotron.html │ │ ├── list-group.html │ │ ├── navs.html │ │ ├── pagination.html │ │ ├── popovers.html │ │ ├── progress.html │ │ ├── scrollspy.html │ │ ├── switches.html │ │ ├── tables.html │ │ ├── tabs.html │ │ └── tooltips.html │ ├── blank.html │ ├── buttons │ │ ├── brand-buttons.html │ │ ├── button-group.html │ │ ├── buttons.html │ │ └── dropdowns.html │ ├── charts.html │ ├── colors.html │ ├── css │ │ ├── style.css │ │ ├── style.css.map │ │ ├── style.min.css │ │ └── style.min.css.map │ ├── icons │ │ ├── coreui-icons-brand.html │ │ ├── coreui-icons-flag.html │ │ └── coreui-icons-free.html │ ├── index.html │ ├── js │ │ ├── charts.js │ │ ├── charts.js.map │ │ ├── colors.js │ │ ├── colors.js.map │ │ ├── main.js │ │ ├── main.js.map │ │ ├── popovers.js │ │ ├── popovers.js.map │ │ ├── tooltips.js │ │ ├── tooltips.js.map │ │ ├── widgets.js │ │ └── widgets.js.map │ ├── login.html │ ├── notifications │ │ ├── alerts.html │ │ ├── badge.html │ │ └── modals.html │ ├── register.html │ ├── typography.html │ ├── vendors │ │ ├── @coreui │ │ │ ├── chartjs │ │ │ │ ├── css │ │ │ │ │ ├── coreui-chartjs.css │ │ │ │ │ └── coreui-chartjs.css.map │ │ │ │ └── js │ │ │ │ │ ├── coreui-chartjs.bundle.js │ │ │ │ │ └── coreui-chartjs.bundle.js.map │ │ │ ├── coreui │ │ │ │ └── js │ │ │ │ │ ├── coreui.bundle.min.js │ │ │ │ │ └── coreui.bundle.min.js.map │ │ │ ├── icons │ │ │ │ ├── css │ │ │ │ │ ├── brand.min.css │ │ │ │ │ ├── brand.min.css.map │ │ │ │ │ ├── flag.min.css │ │ │ │ │ ├── flag.min.css.map │ │ │ │ │ ├── free.min.css │ │ │ │ │ └── free.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── CoreUI-Icons-Brand.eot │ │ │ │ │ ├── CoreUI-Icons-Brand.svg │ │ │ │ │ ├── CoreUI-Icons-Brand.ttf │ │ │ │ │ ├── CoreUI-Icons-Brand.woff │ │ │ │ │ ├── CoreUI-Icons-Free.eot │ │ │ │ │ ├── CoreUI-Icons-Free.svg │ │ │ │ │ ├── CoreUI-Icons-Free.ttf │ │ │ │ │ └── CoreUI-Icons-Free.woff │ │ │ │ ├── js │ │ │ │ │ └── svgxuse.min.js │ │ │ │ └── svg │ │ │ │ │ ├── brand.svg │ │ │ │ │ ├── flag.svg │ │ │ │ │ ├── flag │ │ │ │ │ ├── cif-AD.svg │ │ │ │ │ ├── cif-AE.svg │ │ │ │ │ ├── cif-AF.svg │ │ │ │ │ ├── cif-AG.svg │ │ │ │ │ ├── cif-AL.svg │ │ │ │ │ ├── cif-AM.svg │ │ │ │ │ ├── cif-AO.svg │ │ │ │ │ ├── cif-AR.svg │ │ │ │ │ ├── cif-AT.svg │ │ │ │ │ ├── cif-AU.svg │ │ │ │ │ ├── cif-AZ.svg │ │ │ │ │ ├── cif-BA.svg │ │ │ │ │ ├── cif-BB.svg │ │ │ │ │ ├── cif-BD.svg │ │ │ │ │ ├── cif-BE.svg │ │ │ │ │ ├── cif-BF.svg │ │ │ │ │ ├── cif-BG.svg │ │ │ │ │ ├── cif-BH.svg │ │ │ │ │ ├── cif-BI.svg │ │ │ │ │ ├── cif-BJ.svg │ │ │ │ │ ├── cif-BN.svg │ │ │ │ │ ├── cif-BO.svg │ │ │ │ │ ├── cif-BR.svg │ │ │ │ │ ├── cif-BS.svg │ │ │ │ │ ├── cif-BT.svg │ │ │ │ │ ├── cif-BW.svg │ │ │ │ │ ├── cif-BY.svg │ │ │ │ │ ├── cif-BZ.svg │ │ │ │ │ ├── cif-CA.svg │ │ │ │ │ ├── cif-CD.svg │ │ │ │ │ ├── cif-CF.svg │ │ │ │ │ ├── cif-CG.svg │ │ │ │ │ ├── cif-CH.svg │ │ │ │ │ ├── cif-CI.svg │ │ │ │ │ ├── cif-CL.svg │ │ │ │ │ ├── cif-CM.svg │ │ │ │ │ ├── cif-CN.svg │ │ │ │ │ ├── cif-CO.svg │ │ │ │ │ ├── cif-CR.svg │ │ │ │ │ ├── cif-CU.svg │ │ │ │ │ ├── cif-CV.svg │ │ │ │ │ ├── cif-CY.svg │ │ │ │ │ ├── cif-CZ.svg │ │ │ │ │ ├── cif-DE.svg │ │ │ │ │ ├── cif-DJ.svg │ │ │ │ │ ├── cif-DK.svg │ │ │ │ │ ├── cif-DM.svg │ │ │ │ │ ├── cif-DO.svg │ │ │ │ │ ├── cif-DZ.svg │ │ │ │ │ ├── cif-EC.svg │ │ │ │ │ ├── cif-EE.svg │ │ │ │ │ ├── cif-EG.svg │ │ │ │ │ ├── cif-ER.svg │ │ │ │ │ ├── cif-ES.svg │ │ │ │ │ ├── cif-ET.svg │ │ │ │ │ ├── cif-FI.svg │ │ │ │ │ ├── cif-FJ.svg │ │ │ │ │ ├── cif-FM.svg │ │ │ │ │ ├── cif-FR.svg │ │ │ │ │ ├── cif-GA.svg │ │ │ │ │ ├── cif-GB.svg │ │ │ │ │ ├── cif-GD.svg │ │ │ │ │ ├── cif-GE.svg │ │ │ │ │ ├── cif-GH.svg │ │ │ │ │ ├── cif-GM.svg │ │ │ │ │ ├── cif-GN.svg │ │ │ │ │ ├── cif-GQ.svg │ │ │ │ │ ├── cif-GR.svg │ │ │ │ │ ├── cif-GT.svg │ │ │ │ │ ├── cif-GW.svg │ │ │ │ │ ├── cif-GY.svg │ │ │ │ │ ├── cif-HK.svg │ │ │ │ │ ├── cif-HN.svg │ │ │ │ │ ├── cif-HR.svg │ │ │ │ │ ├── cif-HT.svg │ │ │ │ │ ├── cif-HU.svg │ │ │ │ │ ├── cif-ID.svg │ │ │ │ │ ├── cif-IE.svg │ │ │ │ │ ├── cif-IL.svg │ │ │ │ │ ├── cif-IN.svg │ │ │ │ │ ├── cif-IQ.svg │ │ │ │ │ ├── cif-IR.svg │ │ │ │ │ ├── cif-IS.svg │ │ │ │ │ ├── cif-IT.svg │ │ │ │ │ ├── cif-JM.svg │ │ │ │ │ ├── cif-JO.svg │ │ │ │ │ ├── cif-JP.svg │ │ │ │ │ ├── cif-KE.svg │ │ │ │ │ ├── cif-KG.svg │ │ │ │ │ ├── cif-KH.svg │ │ │ │ │ ├── cif-KI.svg │ │ │ │ │ ├── cif-KM.svg │ │ │ │ │ ├── cif-KN.svg │ │ │ │ │ ├── cif-KP.svg │ │ │ │ │ ├── cif-KR.svg │ │ │ │ │ ├── cif-KW.svg │ │ │ │ │ ├── cif-KZ.svg │ │ │ │ │ ├── cif-LA.svg │ │ │ │ │ ├── cif-LB.svg │ │ │ │ │ ├── cif-LC.svg │ │ │ │ │ ├── cif-LI.svg │ │ │ │ │ ├── cif-LK.svg │ │ │ │ │ ├── cif-LR.svg │ │ │ │ │ ├── cif-LS.svg │ │ │ │ │ ├── cif-LT.svg │ │ │ │ │ ├── cif-LU.svg │ │ │ │ │ ├── cif-LV.svg │ │ │ │ │ ├── cif-LY.svg │ │ │ │ │ ├── cif-MA.svg │ │ │ │ │ ├── cif-MC.svg │ │ │ │ │ ├── cif-MD.svg │ │ │ │ │ ├── cif-ME.svg │ │ │ │ │ ├── cif-MG.svg │ │ │ │ │ ├── cif-MH.svg │ │ │ │ │ ├── cif-MK.svg │ │ │ │ │ ├── cif-ML.svg │ │ │ │ │ ├── cif-MM.svg │ │ │ │ │ ├── cif-MN.svg │ │ │ │ │ ├── cif-MR.svg │ │ │ │ │ ├── cif-MT.svg │ │ │ │ │ ├── cif-MU.svg │ │ │ │ │ ├── cif-MV.svg │ │ │ │ │ ├── cif-MW.svg │ │ │ │ │ ├── cif-MX.svg │ │ │ │ │ ├── cif-MY.svg │ │ │ │ │ ├── cif-MZ.svg │ │ │ │ │ ├── cif-NA.svg │ │ │ │ │ ├── cif-NE.svg │ │ │ │ │ ├── cif-NG.svg │ │ │ │ │ ├── cif-NI.svg │ │ │ │ │ ├── cif-NL.svg │ │ │ │ │ ├── cif-NO.svg │ │ │ │ │ ├── cif-NP.svg │ │ │ │ │ ├── cif-NR.svg │ │ │ │ │ ├── cif-NU.svg │ │ │ │ │ ├── cif-NZ.svg │ │ │ │ │ ├── cif-OM.svg │ │ │ │ │ ├── cif-PA.svg │ │ │ │ │ ├── cif-PE.svg │ │ │ │ │ ├── cif-PG.svg │ │ │ │ │ ├── cif-PH.svg │ │ │ │ │ ├── cif-PK.svg │ │ │ │ │ ├── cif-PL.svg │ │ │ │ │ ├── cif-PT.svg │ │ │ │ │ ├── cif-PW.svg │ │ │ │ │ ├── cif-PY.svg │ │ │ │ │ ├── cif-QA.svg │ │ │ │ │ ├── cif-RO.svg │ │ │ │ │ ├── cif-RS.svg │ │ │ │ │ ├── cif-RU.svg │ │ │ │ │ ├── cif-RW.svg │ │ │ │ │ ├── cif-SA.svg │ │ │ │ │ ├── cif-SB.svg │ │ │ │ │ ├── cif-SC.svg │ │ │ │ │ ├── cif-SD.svg │ │ │ │ │ ├── cif-SE.svg │ │ │ │ │ ├── cif-SG.svg │ │ │ │ │ ├── cif-SI.svg │ │ │ │ │ ├── cif-SK.svg │ │ │ │ │ ├── cif-SL.svg │ │ │ │ │ ├── cif-SM.svg │ │ │ │ │ ├── cif-SN.svg │ │ │ │ │ ├── cif-SO.svg │ │ │ │ │ ├── cif-SR.svg │ │ │ │ │ ├── cif-SS.svg │ │ │ │ │ ├── cif-ST.svg │ │ │ │ │ ├── cif-SV.svg │ │ │ │ │ ├── cif-SY.svg │ │ │ │ │ ├── cif-SZ.svg │ │ │ │ │ ├── cif-TD.svg │ │ │ │ │ ├── cif-TG.svg │ │ │ │ │ ├── cif-TH.svg │ │ │ │ │ ├── cif-TJ.svg │ │ │ │ │ ├── cif-TL.svg │ │ │ │ │ ├── cif-TM.svg │ │ │ │ │ ├── cif-TN.svg │ │ │ │ │ ├── cif-TO.svg │ │ │ │ │ ├── cif-TR.svg │ │ │ │ │ ├── cif-TT.svg │ │ │ │ │ ├── cif-TV.svg │ │ │ │ │ ├── cif-TW.svg │ │ │ │ │ ├── cif-TZ.svg │ │ │ │ │ ├── cif-UA.svg │ │ │ │ │ ├── cif-UG.svg │ │ │ │ │ ├── cif-US.svg │ │ │ │ │ ├── cif-UY.svg │ │ │ │ │ ├── cif-UZ.svg │ │ │ │ │ ├── cif-VA.svg │ │ │ │ │ ├── cif-VC.svg │ │ │ │ │ ├── cif-VE.svg │ │ │ │ │ ├── cif-VN.svg │ │ │ │ │ ├── cif-WS.svg │ │ │ │ │ ├── cif-XK.svg │ │ │ │ │ ├── cif-YE.svg │ │ │ │ │ ├── cif-ZA.svg │ │ │ │ │ ├── cif-ZM.svg │ │ │ │ │ └── cif-ZW.svg │ │ │ │ │ └── free.svg │ │ │ └── utils │ │ │ │ └── js │ │ │ │ └── coreui-utils.js │ │ └── pace-progress │ │ │ └── css │ │ │ ├── pace.css │ │ │ ├── pace.css.map │ │ │ ├── pace.min.css │ │ │ └── pace.min.css.map │ └── widgets.html ├── flatpickr │ ├── css │ │ └── fp.min.css │ └── js │ │ └── fp.min.js ├── fontawesome-free-5.15.2-web │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.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 │ │ │ ├── cloudflare.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 │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.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 │ │ │ ├── octopus-deploy.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 │ │ │ ├── perbyte.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 │ │ │ ├── uncharted.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 │ │ │ ├── watchman-monitoring.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 │ │ │ ├── wodu.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 │ │ │ ├── vest-patches.svg │ │ │ ├── vest.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 ├── jquery-3.5.1.min.js ├── select2-4.0.13 │ ├── css │ │ ├── select2.css │ │ └── select2.min.css │ └── js │ │ ├── i18n │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dsb.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hsb.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── ne.js │ │ ├── nl.js │ │ ├── pl.js │ │ ├── ps.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 │ │ ├── tk.js │ │ ├── tr.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-CN.js │ │ └── zh-TW.js │ │ ├── select2.full.js │ │ ├── select2.full.min.js │ │ ├── select2.js │ │ └── select2.min.js ├── select2-bootstrap4-theme.min.css ├── speed-admin │ ├── css │ │ ├── belongs_to.css │ │ └── main.css │ └── js │ │ ├── belongs_to.js │ │ ├── main.js │ │ └── model.js ├── sweetalert.min.js └── tinymce.min.js ├── resources ├── lang │ ├── en │ │ └── trans.php │ ├── ur.json │ └── ur │ │ └── trans.php └── views │ ├── add-new.blade.php │ ├── applications │ └── index.blade.php │ ├── auth │ ├── change-password.blade.php │ ├── forgot-password.blade.php │ ├── login.blade.php │ ├── profile.blade.php │ └── reset-password.blade.php │ ├── components │ ├── crud │ │ ├── form.blade.php │ │ ├── grid.blade.php │ │ └── grid_filters.blade.php │ ├── developer_options.blade.php │ ├── form_components │ │ ├── belongsTo.blade.php │ │ ├── belongsToBase.blade.php │ │ ├── belongsToButtons.blade.php │ │ ├── belongsToMany.blade.php │ │ ├── checkbox.blade.php │ │ ├── datetime.blade.php │ │ ├── decimal.blade.php │ │ ├── div.blade.php │ │ ├── form_items.blade.php │ │ ├── html.blade.php │ │ ├── html_attributes.blade.php │ │ ├── image.blade.php │ │ ├── password.blade.php │ │ ├── permissions.blade.php │ │ ├── repeater.blade.php │ │ ├── select.blade.php │ │ ├── text.blade.php │ │ ├── textarea.blade.php │ │ ├── tinymce.blade.php │ │ └── translations_form_items.blade.php │ ├── lang_selector.blade.php │ ├── sidebar │ │ ├── menu.blade.php │ │ ├── menu_item_with_children.blade.php │ │ └── menu_item_without_children.blade.php │ └── validation_errors.blade.php │ ├── crud │ ├── create-edit.blade.php │ └── index.blade.php │ └── layouts │ ├── auth.blade.php │ └── layout.blade.php ├── routes └── web.php └── src ├── Console └── CreateAdminUser.php ├── Facades ├── SpeedAdminHelpers.php └── SpeedAdminHelpersFacade.php ├── Http ├── Controllers │ ├── ApplicationController.php │ ├── AuthController.php │ ├── BelongsToController.php │ ├── GridController.php │ ├── LanguageController.php │ ├── RoleController.php │ ├── SettingController.php │ ├── SpeedAdminBaseController.php │ ├── TenantOrganizationController.php │ └── UserController.php └── Middleware │ ├── AdminAuth.php │ └── Language.php ├── Misc ├── FormHelper.php ├── FormInputProcessors │ ├── BaseInputProcessor.php │ ├── BelongsTo.php │ ├── BelongsToBase.php │ ├── BelongsToMany.php │ ├── Image.php │ ├── Password.php │ ├── Permission.php │ └── Repeater.php └── GridHelper.php ├── Models ├── PermissionRole.php ├── Role.php ├── Setting.php ├── TenantOrganization.php └── User.php ├── ServiceProvider.php ├── SpeedAdmin.php ├── SpeedAdminMenu.php ├── SpeedAdminModelsRegister.php ├── SpeedAdminPermissions.php ├── SpeedAdminSettings.php ├── Traits ├── Crud.php ├── TenantOrganization.php └── UsesUuid.php └── Tree.php /.gitbook.yaml: -------------------------------------------------------------------------------- 1 | root: ./docs/ -------------------------------------------------------------------------------- /.gitbook/assets/form_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/.gitbook/assets/form_pic.png -------------------------------------------------------------------------------- /.gitbook/assets/grid_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/.gitbook/assets/grid_pic.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/applications-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/applications-management.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/belongsto-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/belongsto-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/belongstomany-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/belongstomany-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/brand-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/brand-permissions.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/brands-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/brands-form.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/brands-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/brands-grid.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/brands-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/brands-menu.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/checkbox-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/checkbox-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/custom_actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/custom_actions.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/datetime-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/datetime-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/form_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/form_pic.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/grid.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/grid_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/grid_pic.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/html-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/html-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/image-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/image-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/orders_form.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/orders_form.gif -------------------------------------------------------------------------------- /docs/.gitbook/assets/products-form-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/products-form-fields.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/products-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/products-grid.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/repeater-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/repeater-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/repeater-inside-repeater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/repeater-inside-repeater.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/roles-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/roles-form.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/roles-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/roles-grid.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/settings.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/text-field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/text-field.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/textarea.png -------------------------------------------------------------------------------- /docs/.gitbook/assets/users-management.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/docs/.gitbook/assets/users-management.png -------------------------------------------------------------------------------- /docs/fields/checkbox.md: -------------------------------------------------------------------------------- 1 | # checkbox 2 | 3 | ![](../.gitbook/assets/checkbox-field.png) 4 | 5 | ```php 6 | $this->addFormItem([ 7 | 'id' => 'is_active', 8 | 'parent_id' => 'right-col', 9 | 'type' => 'checkbox', 10 | 'label' => __('Active'), 11 | 'name' => 'is_active', 12 | ]); 13 | ``` 14 | 15 | -------------------------------------------------------------------------------- /docs/fields/custom-field.md: -------------------------------------------------------------------------------- 1 | # Custom Field 2 | 3 | Documentation will be added soon 4 | 5 | -------------------------------------------------------------------------------- /docs/fields/datetime.md: -------------------------------------------------------------------------------- 1 | # datetime 2 | 3 | ![](../.gitbook/assets/datetime-field.png) 4 | 5 | ```php 6 | $this->addFormItem([ 7 | 'id' => 'date', 8 | 'parent_id' => 'left-col', 9 | 'type' => 'datetime', 10 | 'enable_time' => true, 11 | 'validation_rules' => [ 12 | 'date' => 'required|date' 13 | ], 14 | 'label' => __('Date'), 15 | 'name' => 'date' 16 | ]); 17 | ``` 18 | 19 | -------------------------------------------------------------------------------- /docs/fields/image.md: -------------------------------------------------------------------------------- 1 | # image 2 | 3 | ![](../.gitbook/assets/image-field.png) 4 | 5 | ```php 6 | $this->addFormItem([ 7 | 'id' => 'image', 8 | 'parent_id' => 'left-col', 9 | 'type' => 'image', 10 | 'label' => __('Image'), 11 | 'name' => 'image', 12 | 'upload_path' => 'brands', 13 | 'validation_rules' => ['image' => 'required|image|max:2048'], 14 | ]); 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /docs/fields/select.md: -------------------------------------------------------------------------------- 1 | # select 2 | 3 | Documentation will be added soon 4 | 5 | -------------------------------------------------------------------------------- /docs/fields/textarea.md: -------------------------------------------------------------------------------- 1 | # textarea 2 | 3 | ![](../.gitbook/assets/textarea.png) 4 | 5 | ```php 6 | $this->addFormItem([ 7 | 'id' => 'shipping_address', 8 | 'parent_id' => 'right-col', 9 | 'type' => 'textarea', 10 | 'validation_rules' => [ 11 | 'shipping_address' => 'required' 12 | ], 13 | 'label' => __('Shipping Address'), 14 | 'name' => 'shipping_address' 15 | ]); 16 | ``` 17 | 18 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-add-controller.md: -------------------------------------------------------------------------------- 1 | # How to add controller 2 | 3 | It has already been explained [here](../quick-start-tutorial/brands-crud.md#add-brandcontroller) in the Brands CRUD tutorial. 4 | 5 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-add-custom-actions.md: -------------------------------------------------------------------------------- 1 | # How to add custom actions 2 | 3 | Documentation will be added soon 4 | 5 | ![](../.gitbook/assets/custom_actions.png) 6 | 7 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-add-routes.md: -------------------------------------------------------------------------------- 1 | # How to add routes 2 | 3 | It has already been explained [here](../quick-start-tutorial/brands-crud.md#add-route-for-brands) in the Brands CRUD tutorial. 4 | 5 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-add-translatable-fields-to-forms.md: -------------------------------------------------------------------------------- 1 | # How to add translatable fields to forms 2 | 3 | Documentation will be added soon 4 | 5 | ![](../.gitbook/assets/form_pic.png) 6 | 7 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-override-model-and-add-remove-form-fields-or-grid-columns.md: -------------------------------------------------------------------------------- 1 | # How to override model and add / remove form fields or grid columns 2 | 3 | Documentation will be added soon 4 | 5 | -------------------------------------------------------------------------------- /docs/miscellaneous/how-to-use-multi-tenant-feature.md: -------------------------------------------------------------------------------- 1 | # How to use multi-tenant feature 2 | 3 | Documentation will be added soon 4 | 5 | -------------------------------------------------------------------------------- /docs/miscellaneous/settings-management.md: -------------------------------------------------------------------------------- 1 | # Settings Management 2 | 3 | Documentation will be added soon 4 | 5 | ![](../.gitbook/assets/settings.png) 6 | 7 | -------------------------------------------------------------------------------- /docs/quick-start-tutorial/README.md: -------------------------------------------------------------------------------- 1 | # quick-start-tutorial 2 | 3 | -------------------------------------------------------------------------------- /docs/quick-start-tutorial/about-this-tutorial.md: -------------------------------------------------------------------------------- 1 | # About this tutorial 2 | 3 | In this quick tutorial, we will build a Sales Orders Management application. We will create CRUD functionality for the following entities: 4 | 5 | * Brands 6 | * Categories 7 | * Products 8 | * Orders 9 | 10 | -------------------------------------------------------------------------------- /docs/quick-start-tutorial/categories-crud.md: -------------------------------------------------------------------------------- 1 | # Categories CRUD 2 | 3 | You can follow \([Brands CRUD](brands-crud.md)\) tutorial to create CRUD for "categories". It is the same. 4 | 5 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/apple-icon.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | #ffffff -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/account-logout.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | account-logout 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-bottom 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-left 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-right 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-bottom 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-from-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-from-bottom 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-from-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-from-left 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-from-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-from-right 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-from-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-from-top 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-left 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-right 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-to-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-to-bottom 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-to-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-to-left 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-to-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-to-right 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-to-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-to-top 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-thick-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-thick-top 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/arrow-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | arrow-top 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/asterisk.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | asterisk 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/bluetooth.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | bluetooth 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/bolt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | bolt 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | bookmark 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/affiliatetheme.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/creative-commons-nd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/digital-ocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/ello.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/erlang.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/get-pocket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gg-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gitlab.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gofore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/medium-m.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/medium.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/megaport.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/mizuni.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/neos.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/opencart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/pied-piper.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/quinscape.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/renren.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/rev.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/sketch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/speaker-deck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/stripe-s.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/superpowers.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/telegram-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/telegram.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/typo3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/caret-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | caret-bottom 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/caret-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | caret-left 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/caret-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | caret-right 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/caret-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | caret-top 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/chart-line.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | chart-line 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/chevron-double-up-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | chevron-double-up-alt 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | chevron-left 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | chevron-right 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/chevron-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | chevron-top 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/clear-all.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | clear-all 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/comment-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | comment-square 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/compress.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | compress 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | copy 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/cursor.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | cursor 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/data-transfer-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | data-transfer-down 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/data-transfer-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | data-transfer-up 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/description.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | description 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/dinner.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | dinner 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/door.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | door 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/double-quote-sans-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | double-quote-sans-left 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/double-quote-sans-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | double-quote-sans-right 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/drink-alcohol.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | drink-alcohol 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/elevator.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | elevator 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/energy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | energy 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/expand-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | expand-down 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/expand-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | expand-left 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/expand-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | expand-right 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/expand-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | expand-up 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/external-link.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | external-link 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/file.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | file 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | filter 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/flag-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | flag-alt 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/font.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | font 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/fullscreen-exit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | fullscreen-exit 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/fullscreen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | fullscreen 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/functions-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | functions-alt 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/header.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | header 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/image1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | image1 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/inbox.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | inbox 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/input-power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | input-power 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/italic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | italic 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/level-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | level-down 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/level-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | level-up 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/list-filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | list-filter 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/media-record.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | media-record 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/media-stop.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | media-stop 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/medical-cross.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | medical-cross 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | menu 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | minus 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/notes.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | notes 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/paragraph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | paragraph 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/playlist-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | playlist-add 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | plus 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/rectangle.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | rectangle 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/resize-both.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | resize-both 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/resize-height.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | resize-height 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/resize-width.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | resize-width 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/room.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | room 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/school.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | school 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/short-text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | short-text 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/signal-cellular-0.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | signal-cellular-0 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/signal-cellular-3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | signal-cellular-3 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/space-bar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | space-bar 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | square 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/stream.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | stream 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/swap-vertical.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | swap-vertical 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/terrain.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | terrain 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/text-size.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | text-size 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/text-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | text-square 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/text.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | text 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/trademark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | trademark 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/transfer.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | transfer 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/vertical-align-bottom.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | vertical-align-bottom 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/vertical-align-top.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | vertical-align-top 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/video.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | video 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/view-column.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | view-column 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/view-module.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | view-module 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/view-quilt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | view-quilt 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/view-stream.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | view-stream 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/vue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | vue 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | warning 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/window-minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | window-minimize 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/window.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | window 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/x.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | x 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/icons/yen.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | yen 4 | 5 | 6 | -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/1.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/2.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/3.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/4.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/5.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/6.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/7.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/8.jpg -------------------------------------------------------------------------------- /public/coreui3.4.0/assets/img/avatars/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/assets/img/avatars/user.png -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.eot -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.ttf -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Brand.woff -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.eot -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.ttf -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/coreui3.4.0/vendors/@coreui/icons/fonts/CoreUI-Icons-Free.woff -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-AE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-AM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-AT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BF.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BJ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-BW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-CZ.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-DE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-DK.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-EE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-FI.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-FR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-GA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-GH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-GM.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-GR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-GY.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-HU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-ID.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-IE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-IS.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-IT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-JP.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-KW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-LA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-LC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-LT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-LU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-LV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-MC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-MG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-ML.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-MU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-MV.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-NE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-NG.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-NL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-PE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-PL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-PW.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-RO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-RU.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SC.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SL.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-SR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-TD.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-TH.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-TO.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-TR.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-TT.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-UA.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-VN.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /public/coreui3.4.0/vendors/@coreui/icons/svg/flag/cif-YE.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/_animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .@{fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 100% { 17 | transform: rotate(360deg); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/_core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}, .fas, .far, .fal, .fad, .fab { 5 | -moz-osx-font-smoothing: grayscale; 6 | -webkit-font-smoothing: antialiased; 7 | display: inline-block; 8 | font-style: normal; 9 | font-variant: normal; 10 | text-rendering: auto; 11 | line-height: 1; 12 | } 13 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | text-align: center; 5 | width: (20em / 16); 6 | } 7 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/_list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: (@fa-li-width * 5/4); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: -@fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: @fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import '_variables.less'; 6 | @import '_shims.less'; 7 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | animation: fa-spin 2s infinite linear; 6 | } 7 | 8 | .#{$fa-css-prefix}-pulse { 9 | animation: fa-spin 1s infinite steps(8); 10 | } 11 | 12 | @keyframes fa-spin { 13 | 0% { 14 | transform: rotate(0deg); 15 | } 16 | 17 | 100% { 18 | transform: rotate(360deg); 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}, 5 | .fas, 6 | .far, 7 | .fal, 8 | .fad, 9 | .fab { 10 | -moz-osx-font-smoothing: grayscale; 11 | -webkit-font-smoothing: antialiased; 12 | display: inline-block; 13 | font-style: normal; 14 | font-variant: normal; 15 | text-rendering: auto; 16 | line-height: 1; 17 | } 18 | 19 | %fa-icon { 20 | @include fa-icon; 21 | } 22 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | text-align: center; 5 | width: $fa-fw-width; 6 | } 7 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: $fa-li-width * 5/4; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: -$fa-li-width; 14 | position: absolute; 15 | text-align: center; 16 | width: $fa-li-width; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only; } 5 | .sr-only-focusable { @include sr-only-focusable; } 6 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @import 'variables'; 6 | @import 'shims'; 7 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Muhammadinaam/speed-admin/d6a8683b7d9b58f09c9820cf798e086c11727dc0/public/fontawesome-free-5.15.2-web/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/speed-admin/css/belongs_to.css: -------------------------------------------------------------------------------- 1 | .select2-selection--single { 2 | min-height: 36px !important; 3 | border-color: lightgray !important; 4 | } 5 | 6 | .select2-selection--multiple { 7 | min-height: 36px !important; 8 | border-color: lightgray !important; 9 | } -------------------------------------------------------------------------------- /resources/lang/en/trans.php: -------------------------------------------------------------------------------- 1 | 'Welcome back!' 5 | ]; -------------------------------------------------------------------------------- /resources/lang/ur.json: -------------------------------------------------------------------------------- 1 | { 2 | "Welcome back": "خوش آمدید", 3 | "Language": "زبان", 4 | "English": "انگریزی", 5 | "Urdu": "اردو", 6 | "Login": "لاگ ان کریں", 7 | "Sign In to your account": "اپنے اکاؤنٹ میں سائن ان کریں", 8 | "Forgot password?": "پاسورڈ بھول گے؟", 9 | "Email": "ای میل", 10 | "Password": "پاس ورڈ" 11 | } -------------------------------------------------------------------------------- /resources/lang/ur/trans.php: -------------------------------------------------------------------------------- 1 | 'خوش آمدید' 5 | ]; -------------------------------------------------------------------------------- /resources/views/add-new.blade.php: -------------------------------------------------------------------------------- 1 | @component('speed-admin::components.crud.form', [ 2 | 'model' => $model, 3 | 'index_url' => $index_url, 4 | 'show_list_button' => isset($show_list_button) ? $show_list_button : true, // default true 5 | ]) 6 | @endcomponent() -------------------------------------------------------------------------------- /resources/views/components/form_components/belongsTo.blade.php: -------------------------------------------------------------------------------- 1 | @component('speed-admin::components.form_components.belongsToBase', [ 2 | 'form_item' => $form_item, 3 | 'model' => $model, 4 | 'obj' => $obj 5 | ]) 6 | @endcomponent -------------------------------------------------------------------------------- /resources/views/components/form_components/belongsToMany.blade.php: -------------------------------------------------------------------------------- 1 | @component('speed-admin::components.form_components.belongsToBase', [ 2 | 'form_item' => $form_item, 3 | 'model' => $model, 4 | 'obj' => $obj, 5 | 'multiple' => true 6 | ]) 7 | @endcomponent -------------------------------------------------------------------------------- /resources/views/components/form_components/html.blade.php: -------------------------------------------------------------------------------- 1 | {!! is_callable( $form_item['html'] ) ? $form_item['html']($model, $obj) : $form_item['html'] !!} -------------------------------------------------------------------------------- /resources/views/components/form_components/html_attributes.blade.php: -------------------------------------------------------------------------------- 1 | @if(isset($form_item['attributes'])) 2 | @foreach($form_item['attributes'] as $attribute_key => $attribute_value) 3 | {{$attribute_key}}="{{$attribute_value}}" 4 | @endforeach 5 | @endif -------------------------------------------------------------------------------- /resources/views/components/validation_errors.blade.php: -------------------------------------------------------------------------------- 1 | @if ($errors->any()) 2 |
3 | 8 |
9 | @endif -------------------------------------------------------------------------------- /resources/views/crud/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('speed-admin::layouts.layout') 2 | 3 | @section('content') 4 | @component('speed-admin::components.developer_options') 5 | @endcomponent 6 | 7 | @component('speed-admin::components.crud.grid', [ 8 | 'model' => $model, 9 | 'index_url' => $index_url, 10 | 'get_data_url' => $get_data_url, 11 | 'show_check_boxes' => true 12 | ]) 13 | @endcomponent() 14 | 15 | @endsection -------------------------------------------------------------------------------- /src/Facades/SpeedAdminHelpersFacade.php: -------------------------------------------------------------------------------- 1 |