├── .assets └── README │ ├── add-sign-up-and-sign-in-flow.png │ ├── image-20230323125434790.png │ └── overview.drawio.png ├── .editorconfig ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── documentation-request.md │ └── feature_request.md └── workflows │ ├── admin-service-api-deploy.yml │ ├── docs-build.yml │ ├── permissions-api-deploy.yml │ ├── saas-app-deploy.yml │ └── signup-administration-deploy.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── docs ├── azure-saas-docs │ ├── .gitmodule │ ├── Readme.md │ ├── archetypes │ │ └── default.md │ ├── config.toml │ ├── content │ │ └── en │ │ │ ├── _index.md │ │ │ ├── components │ │ │ ├── Identity │ │ │ │ ├── _index.md │ │ │ │ ├── caveats.md │ │ │ │ ├── identity-flows.md │ │ │ │ ├── identity-framework-setup-manual.md │ │ │ │ ├── identity-provider.md │ │ │ │ └── permissions-service.md │ │ │ ├── _index.md │ │ │ ├── admin-service.md │ │ │ ├── saas-application.md │ │ │ ├── saas-notifications.md │ │ │ └── signup-administration.md │ │ │ ├── diagrams.md │ │ │ ├── quick-start.md │ │ │ └── resources │ │ │ ├── _index.md │ │ │ ├── additional-recommended-resources.md │ │ │ ├── branding-considerations-for-saas.md │ │ │ ├── container-publishing.md │ │ │ ├── contoso-badgemeup.md │ │ │ ├── devops.md │ │ │ └── terminology.md │ ├── package-lock.json │ ├── package.json │ ├── static │ │ ├── diagrams │ │ │ ├── identity-diagram.drawio.png │ │ │ ├── old-architecture.drawio.png │ │ │ ├── overview.drawio.png │ │ │ └── user-types.drawio.png │ │ └── images │ │ │ ├── aad-enterprise-apps-users-groups.png │ │ │ ├── aad-enterprise-apps.png │ │ │ ├── azure-saas-multitenant-architecture.png │ │ │ ├── azure-saas-multitenant-deployment.png │ │ │ ├── azure-saas-production-service-subscriber.png │ │ │ ├── badgemeup-screenshot.png │ │ │ ├── identity-framework-manual-step-1-adding-service.png │ │ │ ├── identity-framework-manual-step-10-upload-policies.png │ │ │ ├── identity-framework-manual-step-2-switch-tenant-quicklink.png │ │ │ ├── identity-framework-manual-step-3-invite-collaborators.png │ │ │ ├── identity-framework-manual-step-4-app-expose-api.png │ │ │ ├── identity-framework-manual-step-4-app-registration.png │ │ │ ├── identity-framework-manual-step-4-module-client-secrets.png │ │ │ ├── identity-framework-manual-step-6-identity-experience-framework.png │ │ │ ├── identity-framework-manual-step-6-policy-keys.png │ │ │ ├── identity-framework-manual-step-9-vscode-ief-policies.png │ │ │ ├── logic-app-1.png │ │ │ └── logic-app-2.png │ └── themes │ │ └── docsy │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .gitmodules │ │ ├── .nvmrc │ │ ├── .prettierrc.json │ │ ├── .s3deploy.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ ├── icons │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── js │ │ │ ├── anchor.js │ │ │ ├── base.js │ │ │ ├── drawio.js │ │ │ ├── markmap.js │ │ │ ├── mermaid.js │ │ │ ├── offline-search.js │ │ │ ├── plantuml.js │ │ │ └── search.js │ │ ├── json │ │ │ └── offline-search-index.json │ │ ├── scss │ │ │ ├── _alerts.scss │ │ │ ├── _blog.scss │ │ │ ├── _boxes.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _buttons.scss │ │ │ ├── _code.scss │ │ │ ├── _colors.scss │ │ │ ├── _content.scss │ │ │ ├── _drawio.scss │ │ │ ├── _main-container.scss │ │ │ ├── _nav.scss │ │ │ ├── _pageinfo.scss │ │ │ ├── _search.scss │ │ │ ├── _sidebar-toc.scss │ │ │ ├── _sidebar-tree.scss │ │ │ ├── _styles_project.scss │ │ │ ├── _taxonomy.scss │ │ │ ├── _variables.scss │ │ │ ├── _variables_project.scss │ │ │ ├── blocks │ │ │ │ ├── _blocks.scss │ │ │ │ └── _cover.scss │ │ │ ├── main.scss │ │ │ ├── rtl │ │ │ │ ├── _main.scss │ │ │ │ └── _spacing.scss │ │ │ ├── section-index.scss │ │ │ └── support │ │ │ │ ├── _functions.scss │ │ │ │ ├── _mixins.scss │ │ │ │ └── _utilities.scss │ │ ├── stubs │ │ │ └── new-page-template.md │ │ └── vendor │ │ │ ├── Font-Awesome │ │ │ ├── .github │ │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ │ ├── bug_report.md │ │ │ │ │ ├── feature_request.md │ │ │ │ │ └── icon-request.md │ │ │ │ └── PULL_REQUEST_TEMPLATE.md │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── UPGRADING.md │ │ │ ├── composer.json │ │ │ ├── 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-packages │ │ │ │ └── @fortawesome │ │ │ │ │ ├── fontawesome-common-types │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── attribution.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── package.json │ │ │ │ │ ├── fontawesome-free │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── 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.yml │ │ │ │ │ │ ├── shims.yml │ │ │ │ │ │ └── sponsors.yml │ │ │ │ │ ├── package.json │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── adobe.svg │ │ │ │ │ │ │ ├── adversal.svg │ │ │ │ │ │ │ ├── affiliatetheme.svg │ │ │ │ │ │ │ ├── airbnb.svg │ │ │ │ │ │ │ ├── algolia.svg │ │ │ │ │ │ │ ├── alipay.svg │ │ │ │ │ │ │ ├── amazon-pay.svg │ │ │ │ │ │ │ ├── amazon.svg │ │ │ │ │ │ │ ├── amilia.svg │ │ │ │ │ │ │ ├── android.svg │ │ │ │ │ │ │ ├── angellist.svg │ │ │ │ │ │ │ ├── angrycreative.svg │ │ │ │ │ │ │ ├── angular.svg │ │ │ │ │ │ │ ├── app-store-ios.svg │ │ │ │ │ │ │ ├── app-store.svg │ │ │ │ │ │ │ ├── apper.svg │ │ │ │ │ │ │ ├── apple-pay.svg │ │ │ │ │ │ │ ├── apple.svg │ │ │ │ │ │ │ ├── artstation.svg │ │ │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ │ │ ├── atlassian.svg │ │ │ │ │ │ │ ├── audible.svg │ │ │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ │ │ ├── avianex.svg │ │ │ │ │ │ │ ├── aviato.svg │ │ │ │ │ │ │ ├── aws.svg │ │ │ │ │ │ │ ├── bandcamp.svg │ │ │ │ │ │ │ ├── battle-net.svg │ │ │ │ │ │ │ ├── behance-square.svg │ │ │ │ │ │ │ ├── behance.svg │ │ │ │ │ │ │ ├── bimobject.svg │ │ │ │ │ │ │ ├── bitbucket.svg │ │ │ │ │ │ │ ├── bitcoin.svg │ │ │ │ │ │ │ ├── bity.svg │ │ │ │ │ │ │ ├── black-tie.svg │ │ │ │ │ │ │ ├── blackberry.svg │ │ │ │ │ │ │ ├── blogger-b.svg │ │ │ │ │ │ │ ├── blogger.svg │ │ │ │ │ │ │ ├── bluetooth-b.svg │ │ │ │ │ │ │ ├── bluetooth.svg │ │ │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ │ │ ├── btc.svg │ │ │ │ │ │ │ ├── buffer.svg │ │ │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ │ │ ├── buy-n-large.svg │ │ │ │ │ │ │ ├── buysellads.svg │ │ │ │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ │ │ │ ├── cc-amex.svg │ │ │ │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ │ │ │ ├── cc-diners-club.svg │ │ │ │ │ │ │ ├── cc-discover.svg │ │ │ │ │ │ │ ├── cc-jcb.svg │ │ │ │ │ │ │ ├── cc-mastercard.svg │ │ │ │ │ │ │ ├── cc-paypal.svg │ │ │ │ │ │ │ ├── cc-stripe.svg │ │ │ │ │ │ │ ├── cc-visa.svg │ │ │ │ │ │ │ ├── centercode.svg │ │ │ │ │ │ │ ├── centos.svg │ │ │ │ │ │ │ ├── chrome.svg │ │ │ │ │ │ │ ├── chromecast.svg │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── nintendo-switch.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 │ │ │ │ │ │ │ ├── haykal.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 │ │ │ │ │ ├── fontawesome-svg-core │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── attribution.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.es.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── styles.css │ │ │ │ │ ├── free-brands-svg-icons │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── attribution.js │ │ │ │ │ ├── fa500px.d.ts │ │ │ │ │ ├── fa500px.js │ │ │ │ │ ├── faAccessibleIcon.d.ts │ │ │ │ │ ├── faAccessibleIcon.js │ │ │ │ │ ├── faAccusoft.d.ts │ │ │ │ │ ├── faAccusoft.js │ │ │ │ │ ├── faAcquisitionsIncorporated.d.ts │ │ │ │ │ ├── faAcquisitionsIncorporated.js │ │ │ │ │ ├── faAdn.d.ts │ │ │ │ │ ├── faAdn.js │ │ │ │ │ ├── faAdobe.d.ts │ │ │ │ │ ├── faAdobe.js │ │ │ │ │ ├── faAdversal.d.ts │ │ │ │ │ ├── faAdversal.js │ │ │ │ │ ├── faAffiliatetheme.d.ts │ │ │ │ │ ├── faAffiliatetheme.js │ │ │ │ │ ├── faAirbnb.d.ts │ │ │ │ │ ├── faAirbnb.js │ │ │ │ │ ├── faAlgolia.d.ts │ │ │ │ │ ├── faAlgolia.js │ │ │ │ │ ├── faAlipay.d.ts │ │ │ │ │ ├── faAlipay.js │ │ │ │ │ ├── faAmazon.d.ts │ │ │ │ │ ├── faAmazon.js │ │ │ │ │ ├── faAmazonPay.d.ts │ │ │ │ │ ├── faAmazonPay.js │ │ │ │ │ ├── faAmilia.d.ts │ │ │ │ │ ├── faAmilia.js │ │ │ │ │ ├── faAndroid.d.ts │ │ │ │ │ ├── faAndroid.js │ │ │ │ │ ├── faAngellist.d.ts │ │ │ │ │ ├── faAngellist.js │ │ │ │ │ ├── faAngrycreative.d.ts │ │ │ │ │ ├── faAngrycreative.js │ │ │ │ │ ├── faAngular.d.ts │ │ │ │ │ ├── faAngular.js │ │ │ │ │ ├── faAppStore.d.ts │ │ │ │ │ ├── faAppStore.js │ │ │ │ │ ├── faAppStoreIos.d.ts │ │ │ │ │ ├── faAppStoreIos.js │ │ │ │ │ ├── faApper.d.ts │ │ │ │ │ ├── faApper.js │ │ │ │ │ ├── faApple.d.ts │ │ │ │ │ ├── faApple.js │ │ │ │ │ ├── faApplePay.d.ts │ │ │ │ │ ├── faApplePay.js │ │ │ │ │ ├── faArtstation.d.ts │ │ │ │ │ ├── faArtstation.js │ │ │ │ │ ├── faAsymmetrik.d.ts │ │ │ │ │ ├── faAsymmetrik.js │ │ │ │ │ ├── faAtlassian.d.ts │ │ │ │ │ ├── faAtlassian.js │ │ │ │ │ ├── faAudible.d.ts │ │ │ │ │ ├── faAudible.js │ │ │ │ │ ├── faAutoprefixer.d.ts │ │ │ │ │ ├── faAutoprefixer.js │ │ │ │ │ ├── faAvianex.d.ts │ │ │ │ │ ├── faAvianex.js │ │ │ │ │ ├── faAviato.d.ts │ │ │ │ │ ├── faAviato.js │ │ │ │ │ ├── faAws.d.ts │ │ │ │ │ ├── faAws.js │ │ │ │ │ ├── faBandcamp.d.ts │ │ │ │ │ ├── faBandcamp.js │ │ │ │ │ ├── faBattleNet.d.ts │ │ │ │ │ ├── faBattleNet.js │ │ │ │ │ ├── faBehance.d.ts │ │ │ │ │ ├── faBehance.js │ │ │ │ │ ├── faBehanceSquare.d.ts │ │ │ │ │ ├── faBehanceSquare.js │ │ │ │ │ ├── faBimobject.d.ts │ │ │ │ │ ├── faBimobject.js │ │ │ │ │ ├── faBitbucket.d.ts │ │ │ │ │ ├── faBitbucket.js │ │ │ │ │ ├── faBitcoin.d.ts │ │ │ │ │ ├── faBitcoin.js │ │ │ │ │ ├── faBity.d.ts │ │ │ │ │ ├── faBity.js │ │ │ │ │ ├── faBlackTie.d.ts │ │ │ │ │ ├── faBlackTie.js │ │ │ │ │ ├── faBlackberry.d.ts │ │ │ │ │ ├── faBlackberry.js │ │ │ │ │ ├── faBlogger.d.ts │ │ │ │ │ ├── faBlogger.js │ │ │ │ │ ├── faBloggerB.d.ts │ │ │ │ │ ├── faBloggerB.js │ │ │ │ │ ├── faBluetooth.d.ts │ │ │ │ │ ├── faBluetooth.js │ │ │ │ │ ├── faBluetoothB.d.ts │ │ │ │ │ ├── faBluetoothB.js │ │ │ │ │ ├── faBootstrap.d.ts │ │ │ │ │ ├── faBootstrap.js │ │ │ │ │ ├── faBtc.d.ts │ │ │ │ │ ├── faBtc.js │ │ │ │ │ ├── faBuffer.d.ts │ │ │ │ │ ├── faBuffer.js │ │ │ │ │ ├── faBuromobelexperte.d.ts │ │ │ │ │ ├── faBuromobelexperte.js │ │ │ │ │ ├── faBuyNLarge.d.ts │ │ │ │ │ ├── faBuyNLarge.js │ │ │ │ │ ├── faBuysellads.d.ts │ │ │ │ │ ├── faBuysellads.js │ │ │ │ │ ├── faCanadianMapleLeaf.d.ts │ │ │ │ │ ├── faCanadianMapleLeaf.js │ │ │ │ │ ├── faCcAmazonPay.d.ts │ │ │ │ │ ├── faCcAmazonPay.js │ │ │ │ │ ├── faCcAmex.d.ts │ │ │ │ │ ├── faCcAmex.js │ │ │ │ │ ├── faCcApplePay.d.ts │ │ │ │ │ ├── faCcApplePay.js │ │ │ │ │ ├── faCcDinersClub.d.ts │ │ │ │ │ ├── faCcDinersClub.js │ │ │ │ │ ├── faCcDiscover.d.ts │ │ │ │ │ ├── faCcDiscover.js │ │ │ │ │ ├── faCcJcb.d.ts │ │ │ │ │ ├── faCcJcb.js │ │ │ │ │ ├── faCcMastercard.d.ts │ │ │ │ │ ├── faCcMastercard.js │ │ │ │ │ ├── faCcPaypal.d.ts │ │ │ │ │ ├── faCcPaypal.js │ │ │ │ │ ├── faCcStripe.d.ts │ │ │ │ │ ├── faCcStripe.js │ │ │ │ │ ├── faCcVisa.d.ts │ │ │ │ │ ├── faCcVisa.js │ │ │ │ │ ├── faCentercode.d.ts │ │ │ │ │ ├── faCentercode.js │ │ │ │ │ ├── faCentos.d.ts │ │ │ │ │ ├── faCentos.js │ │ │ │ │ ├── faChrome.d.ts │ │ │ │ │ ├── faChrome.js │ │ │ │ │ ├── faChromecast.d.ts │ │ │ │ │ ├── faChromecast.js │ │ │ │ │ ├── faCloudflare.d.ts │ │ │ │ │ ├── faCloudflare.js │ │ │ │ │ ├── faCloudscale.d.ts │ │ │ │ │ ├── faCloudscale.js │ │ │ │ │ ├── faCloudsmith.d.ts │ │ │ │ │ ├── faCloudsmith.js │ │ │ │ │ ├── faCloudversify.d.ts │ │ │ │ │ ├── faCloudversify.js │ │ │ │ │ ├── faCodepen.d.ts │ │ │ │ │ ├── faCodepen.js │ │ │ │ │ ├── faCodiepie.d.ts │ │ │ │ │ ├── faCodiepie.js │ │ │ │ │ ├── faConfluence.d.ts │ │ │ │ │ ├── faConfluence.js │ │ │ │ │ ├── faConnectdevelop.d.ts │ │ │ │ │ ├── faConnectdevelop.js │ │ │ │ │ ├── faContao.d.ts │ │ │ │ │ ├── faContao.js │ │ │ │ │ ├── faCottonBureau.d.ts │ │ │ │ │ ├── faCottonBureau.js │ │ │ │ │ ├── faCpanel.d.ts │ │ │ │ │ ├── faCpanel.js │ │ │ │ │ ├── faCreativeCommons.d.ts │ │ │ │ │ ├── faCreativeCommons.js │ │ │ │ │ ├── faCreativeCommonsBy.d.ts │ │ │ │ │ ├── faCreativeCommonsBy.js │ │ │ │ │ ├── faCreativeCommonsNc.d.ts │ │ │ │ │ ├── faCreativeCommonsNc.js │ │ │ │ │ ├── faCreativeCommonsNcEu.d.ts │ │ │ │ │ ├── faCreativeCommonsNcEu.js │ │ │ │ │ ├── faCreativeCommonsNcJp.d.ts │ │ │ │ │ ├── faCreativeCommonsNcJp.js │ │ │ │ │ ├── faCreativeCommonsNd.d.ts │ │ │ │ │ ├── faCreativeCommonsNd.js │ │ │ │ │ ├── faCreativeCommonsPd.d.ts │ │ │ │ │ ├── faCreativeCommonsPd.js │ │ │ │ │ ├── faCreativeCommonsPdAlt.d.ts │ │ │ │ │ ├── faCreativeCommonsPdAlt.js │ │ │ │ │ ├── faCreativeCommonsRemix.d.ts │ │ │ │ │ ├── faCreativeCommonsRemix.js │ │ │ │ │ ├── faCreativeCommonsSa.d.ts │ │ │ │ │ ├── faCreativeCommonsSa.js │ │ │ │ │ ├── faCreativeCommonsSampling.d.ts │ │ │ │ │ ├── faCreativeCommonsSampling.js │ │ │ │ │ ├── faCreativeCommonsSamplingPlus.d.ts │ │ │ │ │ ├── faCreativeCommonsSamplingPlus.js │ │ │ │ │ ├── faCreativeCommonsShare.d.ts │ │ │ │ │ ├── faCreativeCommonsShare.js │ │ │ │ │ ├── faCreativeCommonsZero.d.ts │ │ │ │ │ ├── faCreativeCommonsZero.js │ │ │ │ │ ├── faCriticalRole.d.ts │ │ │ │ │ ├── faCriticalRole.js │ │ │ │ │ ├── faCss3.d.ts │ │ │ │ │ ├── faCss3.js │ │ │ │ │ ├── faCss3Alt.d.ts │ │ │ │ │ ├── faCss3Alt.js │ │ │ │ │ ├── faCuttlefish.d.ts │ │ │ │ │ ├── faCuttlefish.js │ │ │ │ │ ├── faDAndD.d.ts │ │ │ │ │ ├── faDAndD.js │ │ │ │ │ ├── faDAndDBeyond.d.ts │ │ │ │ │ ├── faDAndDBeyond.js │ │ │ │ │ ├── faDailymotion.d.ts │ │ │ │ │ ├── faDailymotion.js │ │ │ │ │ ├── faDashcube.d.ts │ │ │ │ │ ├── faDashcube.js │ │ │ │ │ ├── faDeezer.d.ts │ │ │ │ │ ├── faDeezer.js │ │ │ │ │ ├── faDelicious.d.ts │ │ │ │ │ ├── faDelicious.js │ │ │ │ │ ├── faDeploydog.d.ts │ │ │ │ │ ├── faDeploydog.js │ │ │ │ │ ├── faDeskpro.d.ts │ │ │ │ │ ├── faDeskpro.js │ │ │ │ │ ├── faDev.d.ts │ │ │ │ │ ├── faDev.js │ │ │ │ │ ├── faDeviantart.d.ts │ │ │ │ │ ├── faDeviantart.js │ │ │ │ │ ├── faDhl.d.ts │ │ │ │ │ ├── faDhl.js │ │ │ │ │ ├── faDiaspora.d.ts │ │ │ │ │ ├── faDiaspora.js │ │ │ │ │ ├── faDigg.d.ts │ │ │ │ │ ├── faDigg.js │ │ │ │ │ ├── faDigitalOcean.d.ts │ │ │ │ │ ├── faDigitalOcean.js │ │ │ │ │ ├── faDiscord.d.ts │ │ │ │ │ ├── faDiscord.js │ │ │ │ │ ├── faDiscourse.d.ts │ │ │ │ │ ├── faDiscourse.js │ │ │ │ │ ├── faDochub.d.ts │ │ │ │ │ ├── faDochub.js │ │ │ │ │ ├── faDocker.d.ts │ │ │ │ │ ├── faDocker.js │ │ │ │ │ ├── faDraft2digital.d.ts │ │ │ │ │ ├── faDraft2digital.js │ │ │ │ │ ├── faDribbble.d.ts │ │ │ │ │ ├── faDribbble.js │ │ │ │ │ ├── faDribbbleSquare.d.ts │ │ │ │ │ ├── faDribbbleSquare.js │ │ │ │ │ ├── faDropbox.d.ts │ │ │ │ │ ├── faDropbox.js │ │ │ │ │ ├── faDrupal.d.ts │ │ │ │ │ ├── faDrupal.js │ │ │ │ │ ├── faDyalog.d.ts │ │ │ │ │ ├── faDyalog.js │ │ │ │ │ ├── faEarlybirds.d.ts │ │ │ │ │ ├── faEarlybirds.js │ │ │ │ │ ├── faEbay.d.ts │ │ │ │ │ ├── faEbay.js │ │ │ │ │ ├── faEdge.d.ts │ │ │ │ │ ├── faEdge.js │ │ │ │ │ ├── faEdgeLegacy.d.ts │ │ │ │ │ ├── faEdgeLegacy.js │ │ │ │ │ ├── faElementor.d.ts │ │ │ │ │ ├── faElementor.js │ │ │ │ │ ├── faEllo.d.ts │ │ │ │ │ ├── faEllo.js │ │ │ │ │ ├── faEmber.d.ts │ │ │ │ │ ├── faEmber.js │ │ │ │ │ ├── faEmpire.d.ts │ │ │ │ │ ├── faEmpire.js │ │ │ │ │ ├── faEnvira.d.ts │ │ │ │ │ ├── faEnvira.js │ │ │ │ │ ├── faErlang.d.ts │ │ │ │ │ ├── faErlang.js │ │ │ │ │ ├── faEthereum.d.ts │ │ │ │ │ ├── faEthereum.js │ │ │ │ │ ├── faEtsy.d.ts │ │ │ │ │ ├── faEtsy.js │ │ │ │ │ ├── faEvernote.d.ts │ │ │ │ │ ├── faEvernote.js │ │ │ │ │ ├── faExpeditedssl.d.ts │ │ │ │ │ ├── faExpeditedssl.js │ │ │ │ │ ├── faFacebook.d.ts │ │ │ │ │ ├── faFacebook.js │ │ │ │ │ ├── faFacebookF.d.ts │ │ │ │ │ ├── faFacebookF.js │ │ │ │ │ ├── faFacebookMessenger.d.ts │ │ │ │ │ ├── faFacebookMessenger.js │ │ │ │ │ ├── faFacebookSquare.d.ts │ │ │ │ │ ├── faFacebookSquare.js │ │ │ │ │ ├── faFantasyFlightGames.d.ts │ │ │ │ │ ├── faFantasyFlightGames.js │ │ │ │ │ ├── faFedex.d.ts │ │ │ │ │ ├── faFedex.js │ │ │ │ │ ├── faFedora.d.ts │ │ │ │ │ ├── faFedora.js │ │ │ │ │ ├── faFigma.d.ts │ │ │ │ │ ├── faFigma.js │ │ │ │ │ ├── faFirefox.d.ts │ │ │ │ │ ├── faFirefox.js │ │ │ │ │ ├── faFirefoxBrowser.d.ts │ │ │ │ │ ├── faFirefoxBrowser.js │ │ │ │ │ ├── faFirstOrder.d.ts │ │ │ │ │ ├── faFirstOrder.js │ │ │ │ │ ├── faFirstOrderAlt.d.ts │ │ │ │ │ ├── faFirstOrderAlt.js │ │ │ │ │ ├── faFirstdraft.d.ts │ │ │ │ │ ├── faFirstdraft.js │ │ │ │ │ ├── faFlickr.d.ts │ │ │ │ │ ├── faFlickr.js │ │ │ │ │ ├── faFlipboard.d.ts │ │ │ │ │ ├── faFlipboard.js │ │ │ │ │ ├── faFly.d.ts │ │ │ │ │ ├── faFly.js │ │ │ │ │ ├── faFontAwesome.d.ts │ │ │ │ │ ├── faFontAwesome.js │ │ │ │ │ ├── faFontAwesomeAlt.d.ts │ │ │ │ │ ├── faFontAwesomeAlt.js │ │ │ │ │ ├── faFontAwesomeFlag.d.ts │ │ │ │ │ ├── faFontAwesomeFlag.js │ │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ │ ├── faFonticons.d.ts │ │ │ │ │ ├── faFonticons.js │ │ │ │ │ ├── faFonticonsFi.d.ts │ │ │ │ │ ├── faFonticonsFi.js │ │ │ │ │ ├── faFortAwesome.d.ts │ │ │ │ │ ├── faFortAwesome.js │ │ │ │ │ ├── faFortAwesomeAlt.d.ts │ │ │ │ │ ├── faFortAwesomeAlt.js │ │ │ │ │ ├── faForumbee.d.ts │ │ │ │ │ ├── faForumbee.js │ │ │ │ │ ├── faFoursquare.d.ts │ │ │ │ │ ├── faFoursquare.js │ │ │ │ │ ├── faFreeCodeCamp.d.ts │ │ │ │ │ ├── faFreeCodeCamp.js │ │ │ │ │ ├── faFreebsd.d.ts │ │ │ │ │ ├── faFreebsd.js │ │ │ │ │ ├── faFulcrum.d.ts │ │ │ │ │ ├── faFulcrum.js │ │ │ │ │ ├── faGalacticRepublic.d.ts │ │ │ │ │ ├── faGalacticRepublic.js │ │ │ │ │ ├── faGalacticSenate.d.ts │ │ │ │ │ ├── faGalacticSenate.js │ │ │ │ │ ├── faGetPocket.d.ts │ │ │ │ │ ├── faGetPocket.js │ │ │ │ │ ├── faGg.d.ts │ │ │ │ │ ├── faGg.js │ │ │ │ │ ├── faGgCircle.d.ts │ │ │ │ │ ├── faGgCircle.js │ │ │ │ │ ├── faGit.d.ts │ │ │ │ │ ├── faGit.js │ │ │ │ │ ├── faGitAlt.d.ts │ │ │ │ │ ├── faGitAlt.js │ │ │ │ │ ├── faGitSquare.d.ts │ │ │ │ │ ├── faGitSquare.js │ │ │ │ │ ├── faGithub.d.ts │ │ │ │ │ ├── faGithub.js │ │ │ │ │ ├── faGithubAlt.d.ts │ │ │ │ │ ├── faGithubAlt.js │ │ │ │ │ ├── faGithubSquare.d.ts │ │ │ │ │ ├── faGithubSquare.js │ │ │ │ │ ├── faGitkraken.d.ts │ │ │ │ │ ├── faGitkraken.js │ │ │ │ │ ├── faGitlab.d.ts │ │ │ │ │ ├── faGitlab.js │ │ │ │ │ ├── faGitter.d.ts │ │ │ │ │ ├── faGitter.js │ │ │ │ │ ├── faGlide.d.ts │ │ │ │ │ ├── faGlide.js │ │ │ │ │ ├── faGlideG.d.ts │ │ │ │ │ ├── faGlideG.js │ │ │ │ │ ├── faGofore.d.ts │ │ │ │ │ ├── faGofore.js │ │ │ │ │ ├── faGoodreads.d.ts │ │ │ │ │ ├── faGoodreads.js │ │ │ │ │ ├── faGoodreadsG.d.ts │ │ │ │ │ ├── faGoodreadsG.js │ │ │ │ │ ├── faGoogle.d.ts │ │ │ │ │ ├── faGoogle.js │ │ │ │ │ ├── faGoogleDrive.d.ts │ │ │ │ │ ├── faGoogleDrive.js │ │ │ │ │ ├── faGooglePay.d.ts │ │ │ │ │ ├── faGooglePay.js │ │ │ │ │ ├── faGooglePlay.d.ts │ │ │ │ │ ├── faGooglePlay.js │ │ │ │ │ ├── faGooglePlus.d.ts │ │ │ │ │ ├── faGooglePlus.js │ │ │ │ │ ├── faGooglePlusG.d.ts │ │ │ │ │ ├── faGooglePlusG.js │ │ │ │ │ ├── faGooglePlusSquare.d.ts │ │ │ │ │ ├── faGooglePlusSquare.js │ │ │ │ │ ├── faGoogleWallet.d.ts │ │ │ │ │ ├── faGoogleWallet.js │ │ │ │ │ ├── faGratipay.d.ts │ │ │ │ │ ├── faGratipay.js │ │ │ │ │ ├── faGrav.d.ts │ │ │ │ │ ├── faGrav.js │ │ │ │ │ ├── faGripfire.d.ts │ │ │ │ │ ├── faGripfire.js │ │ │ │ │ ├── faGrunt.d.ts │ │ │ │ │ ├── faGrunt.js │ │ │ │ │ ├── faGuilded.d.ts │ │ │ │ │ ├── faGuilded.js │ │ │ │ │ ├── faGulp.d.ts │ │ │ │ │ ├── faGulp.js │ │ │ │ │ ├── faHackerNews.d.ts │ │ │ │ │ ├── faHackerNews.js │ │ │ │ │ ├── faHackerNewsSquare.d.ts │ │ │ │ │ ├── faHackerNewsSquare.js │ │ │ │ │ ├── faHackerrank.d.ts │ │ │ │ │ ├── faHackerrank.js │ │ │ │ │ ├── faHips.d.ts │ │ │ │ │ ├── faHips.js │ │ │ │ │ ├── faHireAHelper.d.ts │ │ │ │ │ ├── faHireAHelper.js │ │ │ │ │ ├── faHive.d.ts │ │ │ │ │ ├── faHive.js │ │ │ │ │ ├── faHooli.d.ts │ │ │ │ │ ├── faHooli.js │ │ │ │ │ ├── faHornbill.d.ts │ │ │ │ │ ├── faHornbill.js │ │ │ │ │ ├── faHotjar.d.ts │ │ │ │ │ ├── faHotjar.js │ │ │ │ │ ├── faHouzz.d.ts │ │ │ │ │ ├── faHouzz.js │ │ │ │ │ ├── faHtml5.d.ts │ │ │ │ │ ├── faHtml5.js │ │ │ │ │ ├── faHubspot.d.ts │ │ │ │ │ ├── faHubspot.js │ │ │ │ │ ├── faIdeal.d.ts │ │ │ │ │ ├── faIdeal.js │ │ │ │ │ ├── faImdb.d.ts │ │ │ │ │ ├── faImdb.js │ │ │ │ │ ├── faInnosoft.d.ts │ │ │ │ │ ├── faInnosoft.js │ │ │ │ │ ├── faInstagram.d.ts │ │ │ │ │ ├── faInstagram.js │ │ │ │ │ ├── faInstagramSquare.d.ts │ │ │ │ │ ├── faInstagramSquare.js │ │ │ │ │ ├── faInstalod.d.ts │ │ │ │ │ ├── faInstalod.js │ │ │ │ │ ├── faIntercom.d.ts │ │ │ │ │ ├── faIntercom.js │ │ │ │ │ ├── faInternetExplorer.d.ts │ │ │ │ │ ├── faInternetExplorer.js │ │ │ │ │ ├── faInvision.d.ts │ │ │ │ │ ├── faInvision.js │ │ │ │ │ ├── faIoxhost.d.ts │ │ │ │ │ ├── faIoxhost.js │ │ │ │ │ ├── faItchIo.d.ts │ │ │ │ │ ├── faItchIo.js │ │ │ │ │ ├── faItunes.d.ts │ │ │ │ │ ├── faItunes.js │ │ │ │ │ ├── faItunesNote.d.ts │ │ │ │ │ ├── faItunesNote.js │ │ │ │ │ ├── faJava.d.ts │ │ │ │ │ ├── faJava.js │ │ │ │ │ ├── faJediOrder.d.ts │ │ │ │ │ ├── faJediOrder.js │ │ │ │ │ ├── faJenkins.d.ts │ │ │ │ │ ├── faJenkins.js │ │ │ │ │ ├── faJira.d.ts │ │ │ │ │ ├── faJira.js │ │ │ │ │ ├── faJoget.d.ts │ │ │ │ │ ├── faJoget.js │ │ │ │ │ ├── faJoomla.d.ts │ │ │ │ │ ├── faJoomla.js │ │ │ │ │ ├── faJs.d.ts │ │ │ │ │ ├── faJs.js │ │ │ │ │ ├── faJsSquare.d.ts │ │ │ │ │ ├── faJsSquare.js │ │ │ │ │ ├── faJsfiddle.d.ts │ │ │ │ │ ├── faJsfiddle.js │ │ │ │ │ ├── faKaggle.d.ts │ │ │ │ │ ├── faKaggle.js │ │ │ │ │ ├── faKeybase.d.ts │ │ │ │ │ ├── faKeybase.js │ │ │ │ │ ├── faKeycdn.d.ts │ │ │ │ │ ├── faKeycdn.js │ │ │ │ │ ├── faKickstarter.d.ts │ │ │ │ │ ├── faKickstarter.js │ │ │ │ │ ├── faKickstarterK.d.ts │ │ │ │ │ ├── faKickstarterK.js │ │ │ │ │ ├── faKorvue.d.ts │ │ │ │ │ ├── faKorvue.js │ │ │ │ │ ├── faLaravel.d.ts │ │ │ │ │ ├── faLaravel.js │ │ │ │ │ ├── faLastfm.d.ts │ │ │ │ │ ├── faLastfm.js │ │ │ │ │ ├── faLastfmSquare.d.ts │ │ │ │ │ ├── faLastfmSquare.js │ │ │ │ │ ├── faLeanpub.d.ts │ │ │ │ │ ├── faLeanpub.js │ │ │ │ │ ├── faLess.d.ts │ │ │ │ │ ├── faLess.js │ │ │ │ │ ├── faLine.d.ts │ │ │ │ │ ├── faLine.js │ │ │ │ │ ├── faLinkedin.d.ts │ │ │ │ │ ├── faLinkedin.js │ │ │ │ │ ├── faLinkedinIn.d.ts │ │ │ │ │ ├── faLinkedinIn.js │ │ │ │ │ ├── faLinode.d.ts │ │ │ │ │ ├── faLinode.js │ │ │ │ │ ├── faLinux.d.ts │ │ │ │ │ ├── faLinux.js │ │ │ │ │ ├── faLyft.d.ts │ │ │ │ │ ├── faLyft.js │ │ │ │ │ ├── faMagento.d.ts │ │ │ │ │ ├── faMagento.js │ │ │ │ │ ├── faMailchimp.d.ts │ │ │ │ │ ├── faMailchimp.js │ │ │ │ │ ├── faMandalorian.d.ts │ │ │ │ │ ├── faMandalorian.js │ │ │ │ │ ├── faMarkdown.d.ts │ │ │ │ │ ├── faMarkdown.js │ │ │ │ │ ├── faMastodon.d.ts │ │ │ │ │ ├── faMastodon.js │ │ │ │ │ ├── faMaxcdn.d.ts │ │ │ │ │ ├── faMaxcdn.js │ │ │ │ │ ├── faMdb.d.ts │ │ │ │ │ ├── faMdb.js │ │ │ │ │ ├── faMedapps.d.ts │ │ │ │ │ ├── faMedapps.js │ │ │ │ │ ├── faMedium.d.ts │ │ │ │ │ ├── faMedium.js │ │ │ │ │ ├── faMediumM.d.ts │ │ │ │ │ ├── faMediumM.js │ │ │ │ │ ├── faMedrt.d.ts │ │ │ │ │ ├── faMedrt.js │ │ │ │ │ ├── faMeetup.d.ts │ │ │ │ │ ├── faMeetup.js │ │ │ │ │ ├── faMegaport.d.ts │ │ │ │ │ ├── faMegaport.js │ │ │ │ │ ├── faMendeley.d.ts │ │ │ │ │ ├── faMendeley.js │ │ │ │ │ ├── faMicroblog.d.ts │ │ │ │ │ ├── faMicroblog.js │ │ │ │ │ ├── faMicrosoft.d.ts │ │ │ │ │ ├── faMicrosoft.js │ │ │ │ │ ├── faMix.d.ts │ │ │ │ │ ├── faMix.js │ │ │ │ │ ├── faMixcloud.d.ts │ │ │ │ │ ├── faMixcloud.js │ │ │ │ │ ├── faMixer.d.ts │ │ │ │ │ ├── faMixer.js │ │ │ │ │ ├── faMizuni.d.ts │ │ │ │ │ ├── faMizuni.js │ │ │ │ │ ├── faModx.d.ts │ │ │ │ │ ├── faModx.js │ │ │ │ │ ├── faMonero.d.ts │ │ │ │ │ ├── faMonero.js │ │ │ │ │ ├── faNapster.d.ts │ │ │ │ │ ├── faNapster.js │ │ │ │ │ ├── faNeos.d.ts │ │ │ │ │ ├── faNeos.js │ │ │ │ │ ├── faNimblr.d.ts │ │ │ │ │ ├── faNimblr.js │ │ │ │ │ ├── faNintendoSwitch.d.ts │ │ │ │ │ ├── faNintendoSwitch.js │ │ │ │ │ ├── faNode.d.ts │ │ │ │ │ ├── faNode.js │ │ │ │ │ ├── faNodeJs.d.ts │ │ │ │ │ ├── faNodeJs.js │ │ │ │ │ ├── faNpm.d.ts │ │ │ │ │ ├── faNpm.js │ │ │ │ │ ├── faNs8.d.ts │ │ │ │ │ ├── faNs8.js │ │ │ │ │ ├── faNutritionix.d.ts │ │ │ │ │ ├── faNutritionix.js │ │ │ │ │ ├── faOctopusDeploy.d.ts │ │ │ │ │ ├── faOctopusDeploy.js │ │ │ │ │ ├── faOdnoklassniki.d.ts │ │ │ │ │ ├── faOdnoklassniki.js │ │ │ │ │ ├── faOdnoklassnikiSquare.d.ts │ │ │ │ │ ├── faOdnoklassnikiSquare.js │ │ │ │ │ ├── faOldRepublic.d.ts │ │ │ │ │ ├── faOldRepublic.js │ │ │ │ │ ├── faOpencart.d.ts │ │ │ │ │ ├── faOpencart.js │ │ │ │ │ ├── faOpenid.d.ts │ │ │ │ │ ├── faOpenid.js │ │ │ │ │ ├── faOpera.d.ts │ │ │ │ │ ├── faOpera.js │ │ │ │ │ ├── faOptinMonster.d.ts │ │ │ │ │ ├── faOptinMonster.js │ │ │ │ │ ├── faOrcid.d.ts │ │ │ │ │ ├── faOrcid.js │ │ │ │ │ ├── faOsi.d.ts │ │ │ │ │ ├── faOsi.js │ │ │ │ │ ├── faPage4.d.ts │ │ │ │ │ ├── faPage4.js │ │ │ │ │ ├── faPagelines.d.ts │ │ │ │ │ ├── faPagelines.js │ │ │ │ │ ├── faPalfed.d.ts │ │ │ │ │ ├── faPalfed.js │ │ │ │ │ ├── faPatreon.d.ts │ │ │ │ │ ├── faPatreon.js │ │ │ │ │ ├── faPaypal.d.ts │ │ │ │ │ ├── faPaypal.js │ │ │ │ │ ├── faPennyArcade.d.ts │ │ │ │ │ ├── faPennyArcade.js │ │ │ │ │ ├── faPerbyte.d.ts │ │ │ │ │ ├── faPerbyte.js │ │ │ │ │ ├── faPeriscope.d.ts │ │ │ │ │ ├── faPeriscope.js │ │ │ │ │ ├── faPhabricator.d.ts │ │ │ │ │ ├── faPhabricator.js │ │ │ │ │ ├── faPhoenixFramework.d.ts │ │ │ │ │ ├── faPhoenixFramework.js │ │ │ │ │ ├── faPhoenixSquadron.d.ts │ │ │ │ │ ├── faPhoenixSquadron.js │ │ │ │ │ ├── faPhp.d.ts │ │ │ │ │ ├── faPhp.js │ │ │ │ │ ├── faPiedPiper.d.ts │ │ │ │ │ ├── faPiedPiper.js │ │ │ │ │ ├── faPiedPiperAlt.d.ts │ │ │ │ │ ├── faPiedPiperAlt.js │ │ │ │ │ ├── faPiedPiperHat.d.ts │ │ │ │ │ ├── faPiedPiperHat.js │ │ │ │ │ ├── faPiedPiperPp.d.ts │ │ │ │ │ ├── faPiedPiperPp.js │ │ │ │ │ ├── faPiedPiperSquare.d.ts │ │ │ │ │ ├── faPiedPiperSquare.js │ │ │ │ │ ├── faPinterest.d.ts │ │ │ │ │ ├── faPinterest.js │ │ │ │ │ ├── faPinterestP.d.ts │ │ │ │ │ ├── faPinterestP.js │ │ │ │ │ ├── faPinterestSquare.d.ts │ │ │ │ │ ├── faPinterestSquare.js │ │ │ │ │ ├── faPlaystation.d.ts │ │ │ │ │ ├── faPlaystation.js │ │ │ │ │ ├── faProductHunt.d.ts │ │ │ │ │ ├── faProductHunt.js │ │ │ │ │ ├── faPushed.d.ts │ │ │ │ │ ├── faPushed.js │ │ │ │ │ ├── faPython.d.ts │ │ │ │ │ ├── faPython.js │ │ │ │ │ ├── faQq.d.ts │ │ │ │ │ ├── faQq.js │ │ │ │ │ ├── faQuinscape.d.ts │ │ │ │ │ ├── faQuinscape.js │ │ │ │ │ ├── faQuora.d.ts │ │ │ │ │ ├── faQuora.js │ │ │ │ │ ├── faRProject.d.ts │ │ │ │ │ ├── faRProject.js │ │ │ │ │ ├── faRaspberryPi.d.ts │ │ │ │ │ ├── faRaspberryPi.js │ │ │ │ │ ├── faRavelry.d.ts │ │ │ │ │ ├── faRavelry.js │ │ │ │ │ ├── faReact.d.ts │ │ │ │ │ ├── faReact.js │ │ │ │ │ ├── faReacteurope.d.ts │ │ │ │ │ ├── faReacteurope.js │ │ │ │ │ ├── faReadme.d.ts │ │ │ │ │ ├── faReadme.js │ │ │ │ │ ├── faRebel.d.ts │ │ │ │ │ ├── faRebel.js │ │ │ │ │ ├── faRedRiver.d.ts │ │ │ │ │ ├── faRedRiver.js │ │ │ │ │ ├── faReddit.d.ts │ │ │ │ │ ├── faReddit.js │ │ │ │ │ ├── faRedditAlien.d.ts │ │ │ │ │ ├── faRedditAlien.js │ │ │ │ │ ├── faRedditSquare.d.ts │ │ │ │ │ ├── faRedditSquare.js │ │ │ │ │ ├── faRedhat.d.ts │ │ │ │ │ ├── faRedhat.js │ │ │ │ │ ├── faRenren.d.ts │ │ │ │ │ ├── faRenren.js │ │ │ │ │ ├── faReplyd.d.ts │ │ │ │ │ ├── faReplyd.js │ │ │ │ │ ├── faResearchgate.d.ts │ │ │ │ │ ├── faResearchgate.js │ │ │ │ │ ├── faResolving.d.ts │ │ │ │ │ ├── faResolving.js │ │ │ │ │ ├── faRev.d.ts │ │ │ │ │ ├── faRev.js │ │ │ │ │ ├── faRocketchat.d.ts │ │ │ │ │ ├── faRocketchat.js │ │ │ │ │ ├── faRockrms.d.ts │ │ │ │ │ ├── faRockrms.js │ │ │ │ │ ├── faRust.d.ts │ │ │ │ │ ├── faRust.js │ │ │ │ │ ├── faSafari.d.ts │ │ │ │ │ ├── faSafari.js │ │ │ │ │ ├── faSalesforce.d.ts │ │ │ │ │ ├── faSalesforce.js │ │ │ │ │ ├── faSass.d.ts │ │ │ │ │ ├── faSass.js │ │ │ │ │ ├── faSchlix.d.ts │ │ │ │ │ ├── faSchlix.js │ │ │ │ │ ├── faScribd.d.ts │ │ │ │ │ ├── faScribd.js │ │ │ │ │ ├── faSearchengin.d.ts │ │ │ │ │ ├── faSearchengin.js │ │ │ │ │ ├── faSellcast.d.ts │ │ │ │ │ ├── faSellcast.js │ │ │ │ │ ├── faSellsy.d.ts │ │ │ │ │ ├── faSellsy.js │ │ │ │ │ ├── faServicestack.d.ts │ │ │ │ │ ├── faServicestack.js │ │ │ │ │ ├── faShirtsinbulk.d.ts │ │ │ │ │ ├── faShirtsinbulk.js │ │ │ │ │ ├── faShopify.d.ts │ │ │ │ │ ├── faShopify.js │ │ │ │ │ ├── faShopware.d.ts │ │ │ │ │ ├── faShopware.js │ │ │ │ │ ├── faSimplybuilt.d.ts │ │ │ │ │ ├── faSimplybuilt.js │ │ │ │ │ ├── faSistrix.d.ts │ │ │ │ │ ├── faSistrix.js │ │ │ │ │ ├── faSith.d.ts │ │ │ │ │ ├── faSith.js │ │ │ │ │ ├── faSketch.d.ts │ │ │ │ │ ├── faSketch.js │ │ │ │ │ ├── faSkyatlas.d.ts │ │ │ │ │ ├── faSkyatlas.js │ │ │ │ │ ├── faSkype.d.ts │ │ │ │ │ ├── faSkype.js │ │ │ │ │ ├── faSlack.d.ts │ │ │ │ │ ├── faSlack.js │ │ │ │ │ ├── faSlackHash.d.ts │ │ │ │ │ ├── faSlackHash.js │ │ │ │ │ ├── faSlideshare.d.ts │ │ │ │ │ ├── faSlideshare.js │ │ │ │ │ ├── faSnapchat.d.ts │ │ │ │ │ ├── faSnapchat.js │ │ │ │ │ ├── faSnapchatGhost.d.ts │ │ │ │ │ ├── faSnapchatGhost.js │ │ │ │ │ ├── faSnapchatSquare.d.ts │ │ │ │ │ ├── faSnapchatSquare.js │ │ │ │ │ ├── faSoundcloud.d.ts │ │ │ │ │ ├── faSoundcloud.js │ │ │ │ │ ├── faSourcetree.d.ts │ │ │ │ │ ├── faSourcetree.js │ │ │ │ │ ├── faSpeakap.d.ts │ │ │ │ │ ├── faSpeakap.js │ │ │ │ │ ├── faSpeakerDeck.d.ts │ │ │ │ │ ├── faSpeakerDeck.js │ │ │ │ │ ├── faSpotify.d.ts │ │ │ │ │ ├── faSpotify.js │ │ │ │ │ ├── faSquarespace.d.ts │ │ │ │ │ ├── faSquarespace.js │ │ │ │ │ ├── faStackExchange.d.ts │ │ │ │ │ ├── faStackExchange.js │ │ │ │ │ ├── faStackOverflow.d.ts │ │ │ │ │ ├── faStackOverflow.js │ │ │ │ │ ├── faStackpath.d.ts │ │ │ │ │ ├── faStackpath.js │ │ │ │ │ ├── faStaylinked.d.ts │ │ │ │ │ ├── faStaylinked.js │ │ │ │ │ ├── faSteam.d.ts │ │ │ │ │ ├── faSteam.js │ │ │ │ │ ├── faSteamSquare.d.ts │ │ │ │ │ ├── faSteamSquare.js │ │ │ │ │ ├── faSteamSymbol.d.ts │ │ │ │ │ ├── faSteamSymbol.js │ │ │ │ │ ├── faStickerMule.d.ts │ │ │ │ │ ├── faStickerMule.js │ │ │ │ │ ├── faStrava.d.ts │ │ │ │ │ ├── faStrava.js │ │ │ │ │ ├── faStripe.d.ts │ │ │ │ │ ├── faStripe.js │ │ │ │ │ ├── faStripeS.d.ts │ │ │ │ │ ├── faStripeS.js │ │ │ │ │ ├── faStudiovinari.d.ts │ │ │ │ │ ├── faStudiovinari.js │ │ │ │ │ ├── faStumbleupon.d.ts │ │ │ │ │ ├── faStumbleupon.js │ │ │ │ │ ├── faStumbleuponCircle.d.ts │ │ │ │ │ ├── faStumbleuponCircle.js │ │ │ │ │ ├── faSuperpowers.d.ts │ │ │ │ │ ├── faSuperpowers.js │ │ │ │ │ ├── faSupple.d.ts │ │ │ │ │ ├── faSupple.js │ │ │ │ │ ├── faSuse.d.ts │ │ │ │ │ ├── faSuse.js │ │ │ │ │ ├── faSwift.d.ts │ │ │ │ │ ├── faSwift.js │ │ │ │ │ ├── faSymfony.d.ts │ │ │ │ │ ├── faSymfony.js │ │ │ │ │ ├── faTeamspeak.d.ts │ │ │ │ │ ├── faTeamspeak.js │ │ │ │ │ ├── faTelegram.d.ts │ │ │ │ │ ├── faTelegram.js │ │ │ │ │ ├── faTelegramPlane.d.ts │ │ │ │ │ ├── faTelegramPlane.js │ │ │ │ │ ├── faTencentWeibo.d.ts │ │ │ │ │ ├── faTencentWeibo.js │ │ │ │ │ ├── faTheRedYeti.d.ts │ │ │ │ │ ├── faTheRedYeti.js │ │ │ │ │ ├── faThemeco.d.ts │ │ │ │ │ ├── faThemeco.js │ │ │ │ │ ├── faThemeisle.d.ts │ │ │ │ │ ├── faThemeisle.js │ │ │ │ │ ├── faThinkPeaks.d.ts │ │ │ │ │ ├── faThinkPeaks.js │ │ │ │ │ ├── faTiktok.d.ts │ │ │ │ │ ├── faTiktok.js │ │ │ │ │ ├── faTradeFederation.d.ts │ │ │ │ │ ├── faTradeFederation.js │ │ │ │ │ ├── faTrello.d.ts │ │ │ │ │ ├── faTrello.js │ │ │ │ │ ├── faTripadvisor.d.ts │ │ │ │ │ ├── faTripadvisor.js │ │ │ │ │ ├── faTumblr.d.ts │ │ │ │ │ ├── faTumblr.js │ │ │ │ │ ├── faTumblrSquare.d.ts │ │ │ │ │ ├── faTumblrSquare.js │ │ │ │ │ ├── faTwitch.d.ts │ │ │ │ │ ├── faTwitch.js │ │ │ │ │ ├── faTwitter.d.ts │ │ │ │ │ ├── faTwitter.js │ │ │ │ │ ├── faTwitterSquare.d.ts │ │ │ │ │ ├── faTwitterSquare.js │ │ │ │ │ ├── faTypo3.d.ts │ │ │ │ │ ├── faTypo3.js │ │ │ │ │ ├── faUber.d.ts │ │ │ │ │ ├── faUber.js │ │ │ │ │ ├── faUbuntu.d.ts │ │ │ │ │ ├── faUbuntu.js │ │ │ │ │ ├── faUikit.d.ts │ │ │ │ │ ├── faUikit.js │ │ │ │ │ ├── faUmbraco.d.ts │ │ │ │ │ ├── faUmbraco.js │ │ │ │ │ ├── faUncharted.d.ts │ │ │ │ │ ├── faUncharted.js │ │ │ │ │ ├── faUniregistry.d.ts │ │ │ │ │ ├── faUniregistry.js │ │ │ │ │ ├── faUnity.d.ts │ │ │ │ │ ├── faUnity.js │ │ │ │ │ ├── faUnsplash.d.ts │ │ │ │ │ ├── faUnsplash.js │ │ │ │ │ ├── faUntappd.d.ts │ │ │ │ │ ├── faUntappd.js │ │ │ │ │ ├── faUps.d.ts │ │ │ │ │ ├── faUps.js │ │ │ │ │ ├── faUsb.d.ts │ │ │ │ │ ├── faUsb.js │ │ │ │ │ ├── faUsps.d.ts │ │ │ │ │ ├── faUsps.js │ │ │ │ │ ├── faUssunnah.d.ts │ │ │ │ │ ├── faUssunnah.js │ │ │ │ │ ├── faVaadin.d.ts │ │ │ │ │ ├── faVaadin.js │ │ │ │ │ ├── faViacoin.d.ts │ │ │ │ │ ├── faViacoin.js │ │ │ │ │ ├── faViadeo.d.ts │ │ │ │ │ ├── faViadeo.js │ │ │ │ │ ├── faViadeoSquare.d.ts │ │ │ │ │ ├── faViadeoSquare.js │ │ │ │ │ ├── faViber.d.ts │ │ │ │ │ ├── faViber.js │ │ │ │ │ ├── faVimeo.d.ts │ │ │ │ │ ├── faVimeo.js │ │ │ │ │ ├── faVimeoSquare.d.ts │ │ │ │ │ ├── faVimeoSquare.js │ │ │ │ │ ├── faVimeoV.d.ts │ │ │ │ │ ├── faVimeoV.js │ │ │ │ │ ├── faVine.d.ts │ │ │ │ │ ├── faVine.js │ │ │ │ │ ├── faVk.d.ts │ │ │ │ │ ├── faVk.js │ │ │ │ │ ├── faVnv.d.ts │ │ │ │ │ ├── faVnv.js │ │ │ │ │ ├── faVuejs.d.ts │ │ │ │ │ ├── faVuejs.js │ │ │ │ │ ├── faWatchmanMonitoring.d.ts │ │ │ │ │ ├── faWatchmanMonitoring.js │ │ │ │ │ ├── faWaze.d.ts │ │ │ │ │ ├── faWaze.js │ │ │ │ │ ├── faWeebly.d.ts │ │ │ │ │ ├── faWeebly.js │ │ │ │ │ ├── faWeibo.d.ts │ │ │ │ │ ├── faWeibo.js │ │ │ │ │ ├── faWeixin.d.ts │ │ │ │ │ ├── faWeixin.js │ │ │ │ │ ├── faWhatsapp.d.ts │ │ │ │ │ ├── faWhatsapp.js │ │ │ │ │ ├── faWhatsappSquare.d.ts │ │ │ │ │ ├── faWhatsappSquare.js │ │ │ │ │ ├── faWhmcs.d.ts │ │ │ │ │ ├── faWhmcs.js │ │ │ │ │ ├── faWikipediaW.d.ts │ │ │ │ │ ├── faWikipediaW.js │ │ │ │ │ ├── faWindows.d.ts │ │ │ │ │ ├── faWindows.js │ │ │ │ │ ├── faWix.d.ts │ │ │ │ │ ├── faWix.js │ │ │ │ │ ├── faWizardsOfTheCoast.d.ts │ │ │ │ │ ├── faWizardsOfTheCoast.js │ │ │ │ │ ├── faWodu.d.ts │ │ │ │ │ ├── faWodu.js │ │ │ │ │ ├── faWolfPackBattalion.d.ts │ │ │ │ │ ├── faWolfPackBattalion.js │ │ │ │ │ ├── faWordpress.d.ts │ │ │ │ │ ├── faWordpress.js │ │ │ │ │ ├── faWordpressSimple.d.ts │ │ │ │ │ ├── faWordpressSimple.js │ │ │ │ │ ├── faWpbeginner.d.ts │ │ │ │ │ ├── faWpbeginner.js │ │ │ │ │ ├── faWpexplorer.d.ts │ │ │ │ │ ├── faWpexplorer.js │ │ │ │ │ ├── faWpforms.d.ts │ │ │ │ │ ├── faWpforms.js │ │ │ │ │ ├── faWpressr.d.ts │ │ │ │ │ ├── faWpressr.js │ │ │ │ │ ├── faXbox.d.ts │ │ │ │ │ ├── faXbox.js │ │ │ │ │ ├── faXing.d.ts │ │ │ │ │ ├── faXing.js │ │ │ │ │ ├── faXingSquare.d.ts │ │ │ │ │ ├── faXingSquare.js │ │ │ │ │ ├── faYCombinator.d.ts │ │ │ │ │ ├── faYCombinator.js │ │ │ │ │ ├── faYahoo.d.ts │ │ │ │ │ ├── faYahoo.js │ │ │ │ │ ├── faYammer.d.ts │ │ │ │ │ ├── faYammer.js │ │ │ │ │ ├── faYandex.d.ts │ │ │ │ │ ├── faYandex.js │ │ │ │ │ ├── faYandexInternational.d.ts │ │ │ │ │ ├── faYandexInternational.js │ │ │ │ │ ├── faYarn.d.ts │ │ │ │ │ ├── faYarn.js │ │ │ │ │ ├── faYelp.d.ts │ │ │ │ │ ├── faYelp.js │ │ │ │ │ ├── faYoast.d.ts │ │ │ │ │ ├── faYoast.js │ │ │ │ │ ├── faYoutube.d.ts │ │ │ │ │ ├── faYoutube.js │ │ │ │ │ ├── faYoutubeSquare.d.ts │ │ │ │ │ ├── faYoutubeSquare.js │ │ │ │ │ ├── faZhihu.d.ts │ │ │ │ │ ├── faZhihu.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.es.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ │ ├── free-regular-svg-icons │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── attribution.js │ │ │ │ │ ├── faAddressBook.d.ts │ │ │ │ │ ├── faAddressBook.js │ │ │ │ │ ├── faAddressCard.d.ts │ │ │ │ │ ├── faAddressCard.js │ │ │ │ │ ├── faAngry.d.ts │ │ │ │ │ ├── faAngry.js │ │ │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ │ │ ├── faArrowAltCircleDown.js │ │ │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ │ │ ├── faArrowAltCircleLeft.js │ │ │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ │ │ ├── faArrowAltCircleRight.js │ │ │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ │ │ ├── faArrowAltCircleUp.js │ │ │ │ │ ├── faBell.d.ts │ │ │ │ │ ├── faBell.js │ │ │ │ │ ├── faBellSlash.d.ts │ │ │ │ │ ├── faBellSlash.js │ │ │ │ │ ├── faBookmark.d.ts │ │ │ │ │ ├── faBookmark.js │ │ │ │ │ ├── faBuilding.d.ts │ │ │ │ │ ├── faBuilding.js │ │ │ │ │ ├── faCalendar.d.ts │ │ │ │ │ ├── faCalendar.js │ │ │ │ │ ├── faCalendarAlt.d.ts │ │ │ │ │ ├── faCalendarAlt.js │ │ │ │ │ ├── faCalendarCheck.d.ts │ │ │ │ │ ├── faCalendarCheck.js │ │ │ │ │ ├── faCalendarMinus.d.ts │ │ │ │ │ ├── faCalendarMinus.js │ │ │ │ │ ├── faCalendarPlus.d.ts │ │ │ │ │ ├── faCalendarPlus.js │ │ │ │ │ ├── faCalendarTimes.d.ts │ │ │ │ │ ├── faCalendarTimes.js │ │ │ │ │ ├── faCaretSquareDown.d.ts │ │ │ │ │ ├── faCaretSquareDown.js │ │ │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ │ │ ├── faCaretSquareLeft.js │ │ │ │ │ ├── faCaretSquareRight.d.ts │ │ │ │ │ ├── faCaretSquareRight.js │ │ │ │ │ ├── faCaretSquareUp.d.ts │ │ │ │ │ ├── faCaretSquareUp.js │ │ │ │ │ ├── faChartBar.d.ts │ │ │ │ │ ├── faChartBar.js │ │ │ │ │ ├── faCheckCircle.d.ts │ │ │ │ │ ├── faCheckCircle.js │ │ │ │ │ ├── faCheckSquare.d.ts │ │ │ │ │ ├── faCheckSquare.js │ │ │ │ │ ├── faCircle.d.ts │ │ │ │ │ ├── faCircle.js │ │ │ │ │ ├── faClipboard.d.ts │ │ │ │ │ ├── faClipboard.js │ │ │ │ │ ├── faClock.d.ts │ │ │ │ │ ├── faClock.js │ │ │ │ │ ├── faClone.d.ts │ │ │ │ │ ├── faClone.js │ │ │ │ │ ├── faClosedCaptioning.d.ts │ │ │ │ │ ├── faClosedCaptioning.js │ │ │ │ │ ├── faComment.d.ts │ │ │ │ │ ├── faComment.js │ │ │ │ │ ├── faCommentAlt.d.ts │ │ │ │ │ ├── faCommentAlt.js │ │ │ │ │ ├── faCommentDots.d.ts │ │ │ │ │ ├── faCommentDots.js │ │ │ │ │ ├── faComments.d.ts │ │ │ │ │ ├── faComments.js │ │ │ │ │ ├── faCompass.d.ts │ │ │ │ │ ├── faCompass.js │ │ │ │ │ ├── faCopy.d.ts │ │ │ │ │ ├── faCopy.js │ │ │ │ │ ├── faCopyright.d.ts │ │ │ │ │ ├── faCopyright.js │ │ │ │ │ ├── faCreditCard.d.ts │ │ │ │ │ ├── faCreditCard.js │ │ │ │ │ ├── faDizzy.d.ts │ │ │ │ │ ├── faDizzy.js │ │ │ │ │ ├── faDotCircle.d.ts │ │ │ │ │ ├── faDotCircle.js │ │ │ │ │ ├── faEdit.d.ts │ │ │ │ │ ├── faEdit.js │ │ │ │ │ ├── faEnvelope.d.ts │ │ │ │ │ ├── faEnvelope.js │ │ │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ │ │ ├── faEnvelopeOpen.js │ │ │ │ │ ├── faEye.d.ts │ │ │ │ │ ├── faEye.js │ │ │ │ │ ├── faEyeSlash.d.ts │ │ │ │ │ ├── faEyeSlash.js │ │ │ │ │ ├── faFile.d.ts │ │ │ │ │ ├── faFile.js │ │ │ │ │ ├── faFileAlt.d.ts │ │ │ │ │ ├── faFileAlt.js │ │ │ │ │ ├── faFileArchive.d.ts │ │ │ │ │ ├── faFileArchive.js │ │ │ │ │ ├── faFileAudio.d.ts │ │ │ │ │ ├── faFileAudio.js │ │ │ │ │ ├── faFileCode.d.ts │ │ │ │ │ ├── faFileCode.js │ │ │ │ │ ├── faFileExcel.d.ts │ │ │ │ │ ├── faFileExcel.js │ │ │ │ │ ├── faFileImage.d.ts │ │ │ │ │ ├── faFileImage.js │ │ │ │ │ ├── faFilePdf.d.ts │ │ │ │ │ ├── faFilePdf.js │ │ │ │ │ ├── faFilePowerpoint.d.ts │ │ │ │ │ ├── faFilePowerpoint.js │ │ │ │ │ ├── faFileVideo.d.ts │ │ │ │ │ ├── faFileVideo.js │ │ │ │ │ ├── faFileWord.d.ts │ │ │ │ │ ├── faFileWord.js │ │ │ │ │ ├── faFlag.d.ts │ │ │ │ │ ├── faFlag.js │ │ │ │ │ ├── faFlushed.d.ts │ │ │ │ │ ├── faFlushed.js │ │ │ │ │ ├── faFolder.d.ts │ │ │ │ │ ├── faFolder.js │ │ │ │ │ ├── faFolderOpen.d.ts │ │ │ │ │ ├── faFolderOpen.js │ │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ │ ├── faFrown.d.ts │ │ │ │ │ ├── faFrown.js │ │ │ │ │ ├── faFrownOpen.d.ts │ │ │ │ │ ├── faFrownOpen.js │ │ │ │ │ ├── faFutbol.d.ts │ │ │ │ │ ├── faFutbol.js │ │ │ │ │ ├── faGem.d.ts │ │ │ │ │ ├── faGem.js │ │ │ │ │ ├── faGrimace.d.ts │ │ │ │ │ ├── faGrimace.js │ │ │ │ │ ├── faGrin.d.ts │ │ │ │ │ ├── faGrin.js │ │ │ │ │ ├── faGrinAlt.d.ts │ │ │ │ │ ├── faGrinAlt.js │ │ │ │ │ ├── faGrinBeam.d.ts │ │ │ │ │ ├── faGrinBeam.js │ │ │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ │ │ ├── faGrinBeamSweat.js │ │ │ │ │ ├── faGrinHearts.d.ts │ │ │ │ │ ├── faGrinHearts.js │ │ │ │ │ ├── faGrinSquint.d.ts │ │ │ │ │ ├── faGrinSquint.js │ │ │ │ │ ├── faGrinSquintTears.d.ts │ │ │ │ │ ├── faGrinSquintTears.js │ │ │ │ │ ├── faGrinStars.d.ts │ │ │ │ │ ├── faGrinStars.js │ │ │ │ │ ├── faGrinTears.d.ts │ │ │ │ │ ├── faGrinTears.js │ │ │ │ │ ├── faGrinTongue.d.ts │ │ │ │ │ ├── faGrinTongue.js │ │ │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ │ │ ├── faGrinTongueSquint.js │ │ │ │ │ ├── faGrinTongueWink.d.ts │ │ │ │ │ ├── faGrinTongueWink.js │ │ │ │ │ ├── faGrinWink.d.ts │ │ │ │ │ ├── faGrinWink.js │ │ │ │ │ ├── faHandLizard.d.ts │ │ │ │ │ ├── faHandLizard.js │ │ │ │ │ ├── faHandPaper.d.ts │ │ │ │ │ ├── faHandPaper.js │ │ │ │ │ ├── faHandPeace.d.ts │ │ │ │ │ ├── faHandPeace.js │ │ │ │ │ ├── faHandPointDown.d.ts │ │ │ │ │ ├── faHandPointDown.js │ │ │ │ │ ├── faHandPointLeft.d.ts │ │ │ │ │ ├── faHandPointLeft.js │ │ │ │ │ ├── faHandPointRight.d.ts │ │ │ │ │ ├── faHandPointRight.js │ │ │ │ │ ├── faHandPointUp.d.ts │ │ │ │ │ ├── faHandPointUp.js │ │ │ │ │ ├── faHandPointer.d.ts │ │ │ │ │ ├── faHandPointer.js │ │ │ │ │ ├── faHandRock.d.ts │ │ │ │ │ ├── faHandRock.js │ │ │ │ │ ├── faHandScissors.d.ts │ │ │ │ │ ├── faHandScissors.js │ │ │ │ │ ├── faHandSpock.d.ts │ │ │ │ │ ├── faHandSpock.js │ │ │ │ │ ├── faHandshake.d.ts │ │ │ │ │ ├── faHandshake.js │ │ │ │ │ ├── faHdd.d.ts │ │ │ │ │ ├── faHdd.js │ │ │ │ │ ├── faHeart.d.ts │ │ │ │ │ ├── faHeart.js │ │ │ │ │ ├── faHospital.d.ts │ │ │ │ │ ├── faHospital.js │ │ │ │ │ ├── faHourglass.d.ts │ │ │ │ │ ├── faHourglass.js │ │ │ │ │ ├── faIdBadge.d.ts │ │ │ │ │ ├── faIdBadge.js │ │ │ │ │ ├── faIdCard.d.ts │ │ │ │ │ ├── faIdCard.js │ │ │ │ │ ├── faImage.d.ts │ │ │ │ │ ├── faImage.js │ │ │ │ │ ├── faImages.d.ts │ │ │ │ │ ├── faImages.js │ │ │ │ │ ├── faKeyboard.d.ts │ │ │ │ │ ├── faKeyboard.js │ │ │ │ │ ├── faKiss.d.ts │ │ │ │ │ ├── faKiss.js │ │ │ │ │ ├── faKissBeam.d.ts │ │ │ │ │ ├── faKissBeam.js │ │ │ │ │ ├── faKissWinkHeart.d.ts │ │ │ │ │ ├── faKissWinkHeart.js │ │ │ │ │ ├── faLaugh.d.ts │ │ │ │ │ ├── faLaugh.js │ │ │ │ │ ├── faLaughBeam.d.ts │ │ │ │ │ ├── faLaughBeam.js │ │ │ │ │ ├── faLaughSquint.d.ts │ │ │ │ │ ├── faLaughSquint.js │ │ │ │ │ ├── faLaughWink.d.ts │ │ │ │ │ ├── faLaughWink.js │ │ │ │ │ ├── faLemon.d.ts │ │ │ │ │ ├── faLemon.js │ │ │ │ │ ├── faLifeRing.d.ts │ │ │ │ │ ├── faLifeRing.js │ │ │ │ │ ├── faLightbulb.d.ts │ │ │ │ │ ├── faLightbulb.js │ │ │ │ │ ├── faListAlt.d.ts │ │ │ │ │ ├── faListAlt.js │ │ │ │ │ ├── faMap.d.ts │ │ │ │ │ ├── faMap.js │ │ │ │ │ ├── faMeh.d.ts │ │ │ │ │ ├── faMeh.js │ │ │ │ │ ├── faMehBlank.d.ts │ │ │ │ │ ├── faMehBlank.js │ │ │ │ │ ├── faMehRollingEyes.d.ts │ │ │ │ │ ├── faMehRollingEyes.js │ │ │ │ │ ├── faMinusSquare.d.ts │ │ │ │ │ ├── faMinusSquare.js │ │ │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ │ │ ├── faMoneyBillAlt.js │ │ │ │ │ ├── faMoon.d.ts │ │ │ │ │ ├── faMoon.js │ │ │ │ │ ├── faNewspaper.d.ts │ │ │ │ │ ├── faNewspaper.js │ │ │ │ │ ├── faObjectGroup.d.ts │ │ │ │ │ ├── faObjectGroup.js │ │ │ │ │ ├── faObjectUngroup.d.ts │ │ │ │ │ ├── faObjectUngroup.js │ │ │ │ │ ├── faPaperPlane.d.ts │ │ │ │ │ ├── faPaperPlane.js │ │ │ │ │ ├── faPauseCircle.d.ts │ │ │ │ │ ├── faPauseCircle.js │ │ │ │ │ ├── faPlayCircle.d.ts │ │ │ │ │ ├── faPlayCircle.js │ │ │ │ │ ├── faPlusSquare.d.ts │ │ │ │ │ ├── faPlusSquare.js │ │ │ │ │ ├── faQuestionCircle.d.ts │ │ │ │ │ ├── faQuestionCircle.js │ │ │ │ │ ├── faRegistered.d.ts │ │ │ │ │ ├── faRegistered.js │ │ │ │ │ ├── faSadCry.d.ts │ │ │ │ │ ├── faSadCry.js │ │ │ │ │ ├── faSadTear.d.ts │ │ │ │ │ ├── faSadTear.js │ │ │ │ │ ├── faSave.d.ts │ │ │ │ │ ├── faSave.js │ │ │ │ │ ├── faShareSquare.d.ts │ │ │ │ │ ├── faShareSquare.js │ │ │ │ │ ├── faSmile.d.ts │ │ │ │ │ ├── faSmile.js │ │ │ │ │ ├── faSmileBeam.d.ts │ │ │ │ │ ├── faSmileBeam.js │ │ │ │ │ ├── faSmileWink.d.ts │ │ │ │ │ ├── faSmileWink.js │ │ │ │ │ ├── faSnowflake.d.ts │ │ │ │ │ ├── faSnowflake.js │ │ │ │ │ ├── faSquare.d.ts │ │ │ │ │ ├── faSquare.js │ │ │ │ │ ├── faStar.d.ts │ │ │ │ │ ├── faStar.js │ │ │ │ │ ├── faStarHalf.d.ts │ │ │ │ │ ├── faStarHalf.js │ │ │ │ │ ├── faStickyNote.d.ts │ │ │ │ │ ├── faStickyNote.js │ │ │ │ │ ├── faStopCircle.d.ts │ │ │ │ │ ├── faStopCircle.js │ │ │ │ │ ├── faSun.d.ts │ │ │ │ │ ├── faSun.js │ │ │ │ │ ├── faSurprise.d.ts │ │ │ │ │ ├── faSurprise.js │ │ │ │ │ ├── faThumbsDown.d.ts │ │ │ │ │ ├── faThumbsDown.js │ │ │ │ │ ├── faThumbsUp.d.ts │ │ │ │ │ ├── faThumbsUp.js │ │ │ │ │ ├── faTimesCircle.d.ts │ │ │ │ │ ├── faTimesCircle.js │ │ │ │ │ ├── faTired.d.ts │ │ │ │ │ ├── faTired.js │ │ │ │ │ ├── faTrashAlt.d.ts │ │ │ │ │ ├── faTrashAlt.js │ │ │ │ │ ├── faUser.d.ts │ │ │ │ │ ├── faUser.js │ │ │ │ │ ├── faUserCircle.d.ts │ │ │ │ │ ├── faUserCircle.js │ │ │ │ │ ├── faWindowClose.d.ts │ │ │ │ │ ├── faWindowClose.js │ │ │ │ │ ├── faWindowMaximize.d.ts │ │ │ │ │ ├── faWindowMaximize.js │ │ │ │ │ ├── faWindowMinimize.d.ts │ │ │ │ │ ├── faWindowMinimize.js │ │ │ │ │ ├── faWindowRestore.d.ts │ │ │ │ │ ├── faWindowRestore.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.es.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ │ └── free-solid-svg-icons │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── attribution.js │ │ │ │ │ ├── faAd.d.ts │ │ │ │ │ ├── faAd.js │ │ │ │ │ ├── faAddressBook.d.ts │ │ │ │ │ ├── faAddressBook.js │ │ │ │ │ ├── faAddressCard.d.ts │ │ │ │ │ ├── faAddressCard.js │ │ │ │ │ ├── faAdjust.d.ts │ │ │ │ │ ├── faAdjust.js │ │ │ │ │ ├── faAirFreshener.d.ts │ │ │ │ │ ├── faAirFreshener.js │ │ │ │ │ ├── faAlignCenter.d.ts │ │ │ │ │ ├── faAlignCenter.js │ │ │ │ │ ├── faAlignJustify.d.ts │ │ │ │ │ ├── faAlignJustify.js │ │ │ │ │ ├── faAlignLeft.d.ts │ │ │ │ │ ├── faAlignLeft.js │ │ │ │ │ ├── faAlignRight.d.ts │ │ │ │ │ ├── faAlignRight.js │ │ │ │ │ ├── faAllergies.d.ts │ │ │ │ │ ├── faAllergies.js │ │ │ │ │ ├── faAmbulance.d.ts │ │ │ │ │ ├── faAmbulance.js │ │ │ │ │ ├── faAmericanSignLanguageInterpreting.d.ts │ │ │ │ │ ├── faAmericanSignLanguageInterpreting.js │ │ │ │ │ ├── faAnchor.d.ts │ │ │ │ │ ├── faAnchor.js │ │ │ │ │ ├── faAngleDoubleDown.d.ts │ │ │ │ │ ├── faAngleDoubleDown.js │ │ │ │ │ ├── faAngleDoubleLeft.d.ts │ │ │ │ │ ├── faAngleDoubleLeft.js │ │ │ │ │ ├── faAngleDoubleRight.d.ts │ │ │ │ │ ├── faAngleDoubleRight.js │ │ │ │ │ ├── faAngleDoubleUp.d.ts │ │ │ │ │ ├── faAngleDoubleUp.js │ │ │ │ │ ├── faAngleDown.d.ts │ │ │ │ │ ├── faAngleDown.js │ │ │ │ │ ├── faAngleLeft.d.ts │ │ │ │ │ ├── faAngleLeft.js │ │ │ │ │ ├── faAngleRight.d.ts │ │ │ │ │ ├── faAngleRight.js │ │ │ │ │ ├── faAngleUp.d.ts │ │ │ │ │ ├── faAngleUp.js │ │ │ │ │ ├── faAngry.d.ts │ │ │ │ │ ├── faAngry.js │ │ │ │ │ ├── faAnkh.d.ts │ │ │ │ │ ├── faAnkh.js │ │ │ │ │ ├── faAppleAlt.d.ts │ │ │ │ │ ├── faAppleAlt.js │ │ │ │ │ ├── faArchive.d.ts │ │ │ │ │ ├── faArchive.js │ │ │ │ │ ├── faArchway.d.ts │ │ │ │ │ ├── faArchway.js │ │ │ │ │ ├── faArrowAltCircleDown.d.ts │ │ │ │ │ ├── faArrowAltCircleDown.js │ │ │ │ │ ├── faArrowAltCircleLeft.d.ts │ │ │ │ │ ├── faArrowAltCircleLeft.js │ │ │ │ │ ├── faArrowAltCircleRight.d.ts │ │ │ │ │ ├── faArrowAltCircleRight.js │ │ │ │ │ ├── faArrowAltCircleUp.d.ts │ │ │ │ │ ├── faArrowAltCircleUp.js │ │ │ │ │ ├── faArrowCircleDown.d.ts │ │ │ │ │ ├── faArrowCircleDown.js │ │ │ │ │ ├── faArrowCircleLeft.d.ts │ │ │ │ │ ├── faArrowCircleLeft.js │ │ │ │ │ ├── faArrowCircleRight.d.ts │ │ │ │ │ ├── faArrowCircleRight.js │ │ │ │ │ ├── faArrowCircleUp.d.ts │ │ │ │ │ ├── faArrowCircleUp.js │ │ │ │ │ ├── faArrowDown.d.ts │ │ │ │ │ ├── faArrowDown.js │ │ │ │ │ ├── faArrowLeft.d.ts │ │ │ │ │ ├── faArrowLeft.js │ │ │ │ │ ├── faArrowRight.d.ts │ │ │ │ │ ├── faArrowRight.js │ │ │ │ │ ├── faArrowUp.d.ts │ │ │ │ │ ├── faArrowUp.js │ │ │ │ │ ├── faArrowsAlt.d.ts │ │ │ │ │ ├── faArrowsAlt.js │ │ │ │ │ ├── faArrowsAltH.d.ts │ │ │ │ │ ├── faArrowsAltH.js │ │ │ │ │ ├── faArrowsAltV.d.ts │ │ │ │ │ ├── faArrowsAltV.js │ │ │ │ │ ├── faAssistiveListeningSystems.d.ts │ │ │ │ │ ├── faAssistiveListeningSystems.js │ │ │ │ │ ├── faAsterisk.d.ts │ │ │ │ │ ├── faAsterisk.js │ │ │ │ │ ├── faAt.d.ts │ │ │ │ │ ├── faAt.js │ │ │ │ │ ├── faAtlas.d.ts │ │ │ │ │ ├── faAtlas.js │ │ │ │ │ ├── faAtom.d.ts │ │ │ │ │ ├── faAtom.js │ │ │ │ │ ├── faAudioDescription.d.ts │ │ │ │ │ ├── faAudioDescription.js │ │ │ │ │ ├── faAward.d.ts │ │ │ │ │ ├── faAward.js │ │ │ │ │ ├── faBaby.d.ts │ │ │ │ │ ├── faBaby.js │ │ │ │ │ ├── faBabyCarriage.d.ts │ │ │ │ │ ├── faBabyCarriage.js │ │ │ │ │ ├── faBackspace.d.ts │ │ │ │ │ ├── faBackspace.js │ │ │ │ │ ├── faBackward.d.ts │ │ │ │ │ ├── faBackward.js │ │ │ │ │ ├── faBacon.d.ts │ │ │ │ │ ├── faBacon.js │ │ │ │ │ ├── faBacteria.d.ts │ │ │ │ │ ├── faBacteria.js │ │ │ │ │ ├── faBacterium.d.ts │ │ │ │ │ ├── faBacterium.js │ │ │ │ │ ├── faBahai.d.ts │ │ │ │ │ ├── faBahai.js │ │ │ │ │ ├── faBalanceScale.d.ts │ │ │ │ │ ├── faBalanceScale.js │ │ │ │ │ ├── faBalanceScaleLeft.d.ts │ │ │ │ │ ├── faBalanceScaleLeft.js │ │ │ │ │ ├── faBalanceScaleRight.d.ts │ │ │ │ │ ├── faBalanceScaleRight.js │ │ │ │ │ ├── faBan.d.ts │ │ │ │ │ ├── faBan.js │ │ │ │ │ ├── faBandAid.d.ts │ │ │ │ │ ├── faBandAid.js │ │ │ │ │ ├── faBarcode.d.ts │ │ │ │ │ ├── faBarcode.js │ │ │ │ │ ├── faBars.d.ts │ │ │ │ │ ├── faBars.js │ │ │ │ │ ├── faBaseballBall.d.ts │ │ │ │ │ ├── faBaseballBall.js │ │ │ │ │ ├── faBasketballBall.d.ts │ │ │ │ │ ├── faBasketballBall.js │ │ │ │ │ ├── faBath.d.ts │ │ │ │ │ ├── faBath.js │ │ │ │ │ ├── faBatteryEmpty.d.ts │ │ │ │ │ ├── faBatteryEmpty.js │ │ │ │ │ ├── faBatteryFull.d.ts │ │ │ │ │ ├── faBatteryFull.js │ │ │ │ │ ├── faBatteryHalf.d.ts │ │ │ │ │ ├── faBatteryHalf.js │ │ │ │ │ ├── faBatteryQuarter.d.ts │ │ │ │ │ ├── faBatteryQuarter.js │ │ │ │ │ ├── faBatteryThreeQuarters.d.ts │ │ │ │ │ ├── faBatteryThreeQuarters.js │ │ │ │ │ ├── faBed.d.ts │ │ │ │ │ ├── faBed.js │ │ │ │ │ ├── faBeer.d.ts │ │ │ │ │ ├── faBeer.js │ │ │ │ │ ├── faBell.d.ts │ │ │ │ │ ├── faBell.js │ │ │ │ │ ├── faBellSlash.d.ts │ │ │ │ │ ├── faBellSlash.js │ │ │ │ │ ├── faBezierCurve.d.ts │ │ │ │ │ ├── faBezierCurve.js │ │ │ │ │ ├── faBible.d.ts │ │ │ │ │ ├── faBible.js │ │ │ │ │ ├── faBicycle.d.ts │ │ │ │ │ ├── faBicycle.js │ │ │ │ │ ├── faBiking.d.ts │ │ │ │ │ ├── faBiking.js │ │ │ │ │ ├── faBinoculars.d.ts │ │ │ │ │ ├── faBinoculars.js │ │ │ │ │ ├── faBiohazard.d.ts │ │ │ │ │ ├── faBiohazard.js │ │ │ │ │ ├── faBirthdayCake.d.ts │ │ │ │ │ ├── faBirthdayCake.js │ │ │ │ │ ├── faBlender.d.ts │ │ │ │ │ ├── faBlender.js │ │ │ │ │ ├── faBlenderPhone.d.ts │ │ │ │ │ ├── faBlenderPhone.js │ │ │ │ │ ├── faBlind.d.ts │ │ │ │ │ ├── faBlind.js │ │ │ │ │ ├── faBlog.d.ts │ │ │ │ │ ├── faBlog.js │ │ │ │ │ ├── faBold.d.ts │ │ │ │ │ ├── faBold.js │ │ │ │ │ ├── faBolt.d.ts │ │ │ │ │ ├── faBolt.js │ │ │ │ │ ├── faBomb.d.ts │ │ │ │ │ ├── faBomb.js │ │ │ │ │ ├── faBone.d.ts │ │ │ │ │ ├── faBone.js │ │ │ │ │ ├── faBong.d.ts │ │ │ │ │ ├── faBong.js │ │ │ │ │ ├── faBook.d.ts │ │ │ │ │ ├── faBook.js │ │ │ │ │ ├── faBookDead.d.ts │ │ │ │ │ ├── faBookDead.js │ │ │ │ │ ├── faBookMedical.d.ts │ │ │ │ │ ├── faBookMedical.js │ │ │ │ │ ├── faBookOpen.d.ts │ │ │ │ │ ├── faBookOpen.js │ │ │ │ │ ├── faBookReader.d.ts │ │ │ │ │ ├── faBookReader.js │ │ │ │ │ ├── faBookmark.d.ts │ │ │ │ │ ├── faBookmark.js │ │ │ │ │ ├── faBorderAll.d.ts │ │ │ │ │ ├── faBorderAll.js │ │ │ │ │ ├── faBorderNone.d.ts │ │ │ │ │ ├── faBorderNone.js │ │ │ │ │ ├── faBorderStyle.d.ts │ │ │ │ │ ├── faBorderStyle.js │ │ │ │ │ ├── faBowlingBall.d.ts │ │ │ │ │ ├── faBowlingBall.js │ │ │ │ │ ├── faBox.d.ts │ │ │ │ │ ├── faBox.js │ │ │ │ │ ├── faBoxOpen.d.ts │ │ │ │ │ ├── faBoxOpen.js │ │ │ │ │ ├── faBoxTissue.d.ts │ │ │ │ │ ├── faBoxTissue.js │ │ │ │ │ ├── faBoxes.d.ts │ │ │ │ │ ├── faBoxes.js │ │ │ │ │ ├── faBraille.d.ts │ │ │ │ │ ├── faBraille.js │ │ │ │ │ ├── faBrain.d.ts │ │ │ │ │ ├── faBrain.js │ │ │ │ │ ├── faBreadSlice.d.ts │ │ │ │ │ ├── faBreadSlice.js │ │ │ │ │ ├── faBriefcase.d.ts │ │ │ │ │ ├── faBriefcase.js │ │ │ │ │ ├── faBriefcaseMedical.d.ts │ │ │ │ │ ├── faBriefcaseMedical.js │ │ │ │ │ ├── faBroadcastTower.d.ts │ │ │ │ │ ├── faBroadcastTower.js │ │ │ │ │ ├── faBroom.d.ts │ │ │ │ │ ├── faBroom.js │ │ │ │ │ ├── faBrush.d.ts │ │ │ │ │ ├── faBrush.js │ │ │ │ │ ├── faBug.d.ts │ │ │ │ │ ├── faBug.js │ │ │ │ │ ├── faBuilding.d.ts │ │ │ │ │ ├── faBuilding.js │ │ │ │ │ ├── faBullhorn.d.ts │ │ │ │ │ ├── faBullhorn.js │ │ │ │ │ ├── faBullseye.d.ts │ │ │ │ │ ├── faBullseye.js │ │ │ │ │ ├── faBurn.d.ts │ │ │ │ │ ├── faBurn.js │ │ │ │ │ ├── faBus.d.ts │ │ │ │ │ ├── faBus.js │ │ │ │ │ ├── faBusAlt.d.ts │ │ │ │ │ ├── faBusAlt.js │ │ │ │ │ ├── faBusinessTime.d.ts │ │ │ │ │ ├── faBusinessTime.js │ │ │ │ │ ├── faCalculator.d.ts │ │ │ │ │ ├── faCalculator.js │ │ │ │ │ ├── faCalendar.d.ts │ │ │ │ │ ├── faCalendar.js │ │ │ │ │ ├── faCalendarAlt.d.ts │ │ │ │ │ ├── faCalendarAlt.js │ │ │ │ │ ├── faCalendarCheck.d.ts │ │ │ │ │ ├── faCalendarCheck.js │ │ │ │ │ ├── faCalendarDay.d.ts │ │ │ │ │ ├── faCalendarDay.js │ │ │ │ │ ├── faCalendarMinus.d.ts │ │ │ │ │ ├── faCalendarMinus.js │ │ │ │ │ ├── faCalendarPlus.d.ts │ │ │ │ │ ├── faCalendarPlus.js │ │ │ │ │ ├── faCalendarTimes.d.ts │ │ │ │ │ ├── faCalendarTimes.js │ │ │ │ │ ├── faCalendarWeek.d.ts │ │ │ │ │ ├── faCalendarWeek.js │ │ │ │ │ ├── faCamera.d.ts │ │ │ │ │ ├── faCamera.js │ │ │ │ │ ├── faCameraRetro.d.ts │ │ │ │ │ ├── faCameraRetro.js │ │ │ │ │ ├── faCampground.d.ts │ │ │ │ │ ├── faCampground.js │ │ │ │ │ ├── faCandyCane.d.ts │ │ │ │ │ ├── faCandyCane.js │ │ │ │ │ ├── faCannabis.d.ts │ │ │ │ │ ├── faCannabis.js │ │ │ │ │ ├── faCapsules.d.ts │ │ │ │ │ ├── faCapsules.js │ │ │ │ │ ├── faCar.d.ts │ │ │ │ │ ├── faCar.js │ │ │ │ │ ├── faCarAlt.d.ts │ │ │ │ │ ├── faCarAlt.js │ │ │ │ │ ├── faCarBattery.d.ts │ │ │ │ │ ├── faCarBattery.js │ │ │ │ │ ├── faCarCrash.d.ts │ │ │ │ │ ├── faCarCrash.js │ │ │ │ │ ├── faCarSide.d.ts │ │ │ │ │ ├── faCarSide.js │ │ │ │ │ ├── faCaravan.d.ts │ │ │ │ │ ├── faCaravan.js │ │ │ │ │ ├── faCaretDown.d.ts │ │ │ │ │ ├── faCaretDown.js │ │ │ │ │ ├── faCaretLeft.d.ts │ │ │ │ │ ├── faCaretLeft.js │ │ │ │ │ ├── faCaretRight.d.ts │ │ │ │ │ ├── faCaretRight.js │ │ │ │ │ ├── faCaretSquareDown.d.ts │ │ │ │ │ ├── faCaretSquareDown.js │ │ │ │ │ ├── faCaretSquareLeft.d.ts │ │ │ │ │ ├── faCaretSquareLeft.js │ │ │ │ │ ├── faCaretSquareRight.d.ts │ │ │ │ │ ├── faCaretSquareRight.js │ │ │ │ │ ├── faCaretSquareUp.d.ts │ │ │ │ │ ├── faCaretSquareUp.js │ │ │ │ │ ├── faCaretUp.d.ts │ │ │ │ │ ├── faCaretUp.js │ │ │ │ │ ├── faCarrot.d.ts │ │ │ │ │ ├── faCarrot.js │ │ │ │ │ ├── faCartArrowDown.d.ts │ │ │ │ │ ├── faCartArrowDown.js │ │ │ │ │ ├── faCartPlus.d.ts │ │ │ │ │ ├── faCartPlus.js │ │ │ │ │ ├── faCashRegister.d.ts │ │ │ │ │ ├── faCashRegister.js │ │ │ │ │ ├── faCat.d.ts │ │ │ │ │ ├── faCat.js │ │ │ │ │ ├── faCertificate.d.ts │ │ │ │ │ ├── faCertificate.js │ │ │ │ │ ├── faChair.d.ts │ │ │ │ │ ├── faChair.js │ │ │ │ │ ├── faChalkboard.d.ts │ │ │ │ │ ├── faChalkboard.js │ │ │ │ │ ├── faChalkboardTeacher.d.ts │ │ │ │ │ ├── faChalkboardTeacher.js │ │ │ │ │ ├── faChargingStation.d.ts │ │ │ │ │ ├── faChargingStation.js │ │ │ │ │ ├── faChartArea.d.ts │ │ │ │ │ ├── faChartArea.js │ │ │ │ │ ├── faChartBar.d.ts │ │ │ │ │ ├── faChartBar.js │ │ │ │ │ ├── faChartLine.d.ts │ │ │ │ │ ├── faChartLine.js │ │ │ │ │ ├── faChartPie.d.ts │ │ │ │ │ ├── faChartPie.js │ │ │ │ │ ├── faCheck.d.ts │ │ │ │ │ ├── faCheck.js │ │ │ │ │ ├── faCheckCircle.d.ts │ │ │ │ │ ├── faCheckCircle.js │ │ │ │ │ ├── faCheckDouble.d.ts │ │ │ │ │ ├── faCheckDouble.js │ │ │ │ │ ├── faCheckSquare.d.ts │ │ │ │ │ ├── faCheckSquare.js │ │ │ │ │ ├── faCheese.d.ts │ │ │ │ │ ├── faCheese.js │ │ │ │ │ ├── faChess.d.ts │ │ │ │ │ ├── faChess.js │ │ │ │ │ ├── faChessBishop.d.ts │ │ │ │ │ ├── faChessBishop.js │ │ │ │ │ ├── faChessBoard.d.ts │ │ │ │ │ ├── faChessBoard.js │ │ │ │ │ ├── faChessKing.d.ts │ │ │ │ │ ├── faChessKing.js │ │ │ │ │ ├── faChessKnight.d.ts │ │ │ │ │ ├── faChessKnight.js │ │ │ │ │ ├── faChessPawn.d.ts │ │ │ │ │ ├── faChessPawn.js │ │ │ │ │ ├── faChessQueen.d.ts │ │ │ │ │ ├── faChessQueen.js │ │ │ │ │ ├── faChessRook.d.ts │ │ │ │ │ ├── faChessRook.js │ │ │ │ │ ├── faChevronCircleDown.d.ts │ │ │ │ │ ├── faChevronCircleDown.js │ │ │ │ │ ├── faChevronCircleLeft.d.ts │ │ │ │ │ ├── faChevronCircleLeft.js │ │ │ │ │ ├── faChevronCircleRight.d.ts │ │ │ │ │ ├── faChevronCircleRight.js │ │ │ │ │ ├── faChevronCircleUp.d.ts │ │ │ │ │ ├── faChevronCircleUp.js │ │ │ │ │ ├── faChevronDown.d.ts │ │ │ │ │ ├── faChevronDown.js │ │ │ │ │ ├── faChevronLeft.d.ts │ │ │ │ │ ├── faChevronLeft.js │ │ │ │ │ ├── faChevronRight.d.ts │ │ │ │ │ ├── faChevronRight.js │ │ │ │ │ ├── faChevronUp.d.ts │ │ │ │ │ ├── faChevronUp.js │ │ │ │ │ ├── faChild.d.ts │ │ │ │ │ ├── faChild.js │ │ │ │ │ ├── faChurch.d.ts │ │ │ │ │ ├── faChurch.js │ │ │ │ │ ├── faCircle.d.ts │ │ │ │ │ ├── faCircle.js │ │ │ │ │ ├── faCircleNotch.d.ts │ │ │ │ │ ├── faCircleNotch.js │ │ │ │ │ ├── faCity.d.ts │ │ │ │ │ ├── faCity.js │ │ │ │ │ ├── faClinicMedical.d.ts │ │ │ │ │ ├── faClinicMedical.js │ │ │ │ │ ├── faClipboard.d.ts │ │ │ │ │ ├── faClipboard.js │ │ │ │ │ ├── faClipboardCheck.d.ts │ │ │ │ │ ├── faClipboardCheck.js │ │ │ │ │ ├── faClipboardList.d.ts │ │ │ │ │ ├── faClipboardList.js │ │ │ │ │ ├── faClock.d.ts │ │ │ │ │ ├── faClock.js │ │ │ │ │ ├── faClone.d.ts │ │ │ │ │ ├── faClone.js │ │ │ │ │ ├── faClosedCaptioning.d.ts │ │ │ │ │ ├── faClosedCaptioning.js │ │ │ │ │ ├── faCloud.d.ts │ │ │ │ │ ├── faCloud.js │ │ │ │ │ ├── faCloudDownloadAlt.d.ts │ │ │ │ │ ├── faCloudDownloadAlt.js │ │ │ │ │ ├── faCloudMeatball.d.ts │ │ │ │ │ ├── faCloudMeatball.js │ │ │ │ │ ├── faCloudMoon.d.ts │ │ │ │ │ ├── faCloudMoon.js │ │ │ │ │ ├── faCloudMoonRain.d.ts │ │ │ │ │ ├── faCloudMoonRain.js │ │ │ │ │ ├── faCloudRain.d.ts │ │ │ │ │ ├── faCloudRain.js │ │ │ │ │ ├── faCloudShowersHeavy.d.ts │ │ │ │ │ ├── faCloudShowersHeavy.js │ │ │ │ │ ├── faCloudSun.d.ts │ │ │ │ │ ├── faCloudSun.js │ │ │ │ │ ├── faCloudSunRain.d.ts │ │ │ │ │ ├── faCloudSunRain.js │ │ │ │ │ ├── faCloudUploadAlt.d.ts │ │ │ │ │ ├── faCloudUploadAlt.js │ │ │ │ │ ├── faCocktail.d.ts │ │ │ │ │ ├── faCocktail.js │ │ │ │ │ ├── faCode.d.ts │ │ │ │ │ ├── faCode.js │ │ │ │ │ ├── faCodeBranch.d.ts │ │ │ │ │ ├── faCodeBranch.js │ │ │ │ │ ├── faCoffee.d.ts │ │ │ │ │ ├── faCoffee.js │ │ │ │ │ ├── faCog.d.ts │ │ │ │ │ ├── faCog.js │ │ │ │ │ ├── faCogs.d.ts │ │ │ │ │ ├── faCogs.js │ │ │ │ │ ├── faCoins.d.ts │ │ │ │ │ ├── faCoins.js │ │ │ │ │ ├── faColumns.d.ts │ │ │ │ │ ├── faColumns.js │ │ │ │ │ ├── faComment.d.ts │ │ │ │ │ ├── faComment.js │ │ │ │ │ ├── faCommentAlt.d.ts │ │ │ │ │ ├── faCommentAlt.js │ │ │ │ │ ├── faCommentDollar.d.ts │ │ │ │ │ ├── faCommentDollar.js │ │ │ │ │ ├── faCommentDots.d.ts │ │ │ │ │ ├── faCommentDots.js │ │ │ │ │ ├── faCommentMedical.d.ts │ │ │ │ │ ├── faCommentMedical.js │ │ │ │ │ ├── faCommentSlash.d.ts │ │ │ │ │ ├── faCommentSlash.js │ │ │ │ │ ├── faComments.d.ts │ │ │ │ │ ├── faComments.js │ │ │ │ │ ├── faCommentsDollar.d.ts │ │ │ │ │ ├── faCommentsDollar.js │ │ │ │ │ ├── faCompactDisc.d.ts │ │ │ │ │ ├── faCompactDisc.js │ │ │ │ │ ├── faCompass.d.ts │ │ │ │ │ ├── faCompass.js │ │ │ │ │ ├── faCompress.d.ts │ │ │ │ │ ├── faCompress.js │ │ │ │ │ ├── faCompressAlt.d.ts │ │ │ │ │ ├── faCompressAlt.js │ │ │ │ │ ├── faCompressArrowsAlt.d.ts │ │ │ │ │ ├── faCompressArrowsAlt.js │ │ │ │ │ ├── faConciergeBell.d.ts │ │ │ │ │ ├── faConciergeBell.js │ │ │ │ │ ├── faCookie.d.ts │ │ │ │ │ ├── faCookie.js │ │ │ │ │ ├── faCookieBite.d.ts │ │ │ │ │ ├── faCookieBite.js │ │ │ │ │ ├── faCopy.d.ts │ │ │ │ │ ├── faCopy.js │ │ │ │ │ ├── faCopyright.d.ts │ │ │ │ │ ├── faCopyright.js │ │ │ │ │ ├── faCouch.d.ts │ │ │ │ │ ├── faCouch.js │ │ │ │ │ ├── faCreditCard.d.ts │ │ │ │ │ ├── faCreditCard.js │ │ │ │ │ ├── faCrop.d.ts │ │ │ │ │ ├── faCrop.js │ │ │ │ │ ├── faCropAlt.d.ts │ │ │ │ │ ├── faCropAlt.js │ │ │ │ │ ├── faCross.d.ts │ │ │ │ │ ├── faCross.js │ │ │ │ │ ├── faCrosshairs.d.ts │ │ │ │ │ ├── faCrosshairs.js │ │ │ │ │ ├── faCrow.d.ts │ │ │ │ │ ├── faCrow.js │ │ │ │ │ ├── faCrown.d.ts │ │ │ │ │ ├── faCrown.js │ │ │ │ │ ├── faCrutch.d.ts │ │ │ │ │ ├── faCrutch.js │ │ │ │ │ ├── faCube.d.ts │ │ │ │ │ ├── faCube.js │ │ │ │ │ ├── faCubes.d.ts │ │ │ │ │ ├── faCubes.js │ │ │ │ │ ├── faCut.d.ts │ │ │ │ │ ├── faCut.js │ │ │ │ │ ├── faDatabase.d.ts │ │ │ │ │ ├── faDatabase.js │ │ │ │ │ ├── faDeaf.d.ts │ │ │ │ │ ├── faDeaf.js │ │ │ │ │ ├── faDemocrat.d.ts │ │ │ │ │ ├── faDemocrat.js │ │ │ │ │ ├── faDesktop.d.ts │ │ │ │ │ ├── faDesktop.js │ │ │ │ │ ├── faDharmachakra.d.ts │ │ │ │ │ ├── faDharmachakra.js │ │ │ │ │ ├── faDiagnoses.d.ts │ │ │ │ │ ├── faDiagnoses.js │ │ │ │ │ ├── faDice.d.ts │ │ │ │ │ ├── faDice.js │ │ │ │ │ ├── faDiceD20.d.ts │ │ │ │ │ ├── faDiceD20.js │ │ │ │ │ ├── faDiceD6.d.ts │ │ │ │ │ ├── faDiceD6.js │ │ │ │ │ ├── faDiceFive.d.ts │ │ │ │ │ ├── faDiceFive.js │ │ │ │ │ ├── faDiceFour.d.ts │ │ │ │ │ ├── faDiceFour.js │ │ │ │ │ ├── faDiceOne.d.ts │ │ │ │ │ ├── faDiceOne.js │ │ │ │ │ ├── faDiceSix.d.ts │ │ │ │ │ ├── faDiceSix.js │ │ │ │ │ ├── faDiceThree.d.ts │ │ │ │ │ ├── faDiceThree.js │ │ │ │ │ ├── faDiceTwo.d.ts │ │ │ │ │ ├── faDiceTwo.js │ │ │ │ │ ├── faDigitalTachograph.d.ts │ │ │ │ │ ├── faDigitalTachograph.js │ │ │ │ │ ├── faDirections.d.ts │ │ │ │ │ ├── faDirections.js │ │ │ │ │ ├── faDisease.d.ts │ │ │ │ │ ├── faDisease.js │ │ │ │ │ ├── faDivide.d.ts │ │ │ │ │ ├── faDivide.js │ │ │ │ │ ├── faDizzy.d.ts │ │ │ │ │ ├── faDizzy.js │ │ │ │ │ ├── faDna.d.ts │ │ │ │ │ ├── faDna.js │ │ │ │ │ ├── faDog.d.ts │ │ │ │ │ ├── faDog.js │ │ │ │ │ ├── faDollarSign.d.ts │ │ │ │ │ ├── faDollarSign.js │ │ │ │ │ ├── faDolly.d.ts │ │ │ │ │ ├── faDolly.js │ │ │ │ │ ├── faDollyFlatbed.d.ts │ │ │ │ │ ├── faDollyFlatbed.js │ │ │ │ │ ├── faDonate.d.ts │ │ │ │ │ ├── faDonate.js │ │ │ │ │ ├── faDoorClosed.d.ts │ │ │ │ │ ├── faDoorClosed.js │ │ │ │ │ ├── faDoorOpen.d.ts │ │ │ │ │ ├── faDoorOpen.js │ │ │ │ │ ├── faDotCircle.d.ts │ │ │ │ │ ├── faDotCircle.js │ │ │ │ │ ├── faDove.d.ts │ │ │ │ │ ├── faDove.js │ │ │ │ │ ├── faDownload.d.ts │ │ │ │ │ ├── faDownload.js │ │ │ │ │ ├── faDraftingCompass.d.ts │ │ │ │ │ ├── faDraftingCompass.js │ │ │ │ │ ├── faDragon.d.ts │ │ │ │ │ ├── faDragon.js │ │ │ │ │ ├── faDrawPolygon.d.ts │ │ │ │ │ ├── faDrawPolygon.js │ │ │ │ │ ├── faDrum.d.ts │ │ │ │ │ ├── faDrum.js │ │ │ │ │ ├── faDrumSteelpan.d.ts │ │ │ │ │ ├── faDrumSteelpan.js │ │ │ │ │ ├── faDrumstickBite.d.ts │ │ │ │ │ ├── faDrumstickBite.js │ │ │ │ │ ├── faDumbbell.d.ts │ │ │ │ │ ├── faDumbbell.js │ │ │ │ │ ├── faDumpster.d.ts │ │ │ │ │ ├── faDumpster.js │ │ │ │ │ ├── faDumpsterFire.d.ts │ │ │ │ │ ├── faDumpsterFire.js │ │ │ │ │ ├── faDungeon.d.ts │ │ │ │ │ ├── faDungeon.js │ │ │ │ │ ├── faEdit.d.ts │ │ │ │ │ ├── faEdit.js │ │ │ │ │ ├── faEgg.d.ts │ │ │ │ │ ├── faEgg.js │ │ │ │ │ ├── faEject.d.ts │ │ │ │ │ ├── faEject.js │ │ │ │ │ ├── faEllipsisH.d.ts │ │ │ │ │ ├── faEllipsisH.js │ │ │ │ │ ├── faEllipsisV.d.ts │ │ │ │ │ ├── faEllipsisV.js │ │ │ │ │ ├── faEnvelope.d.ts │ │ │ │ │ ├── faEnvelope.js │ │ │ │ │ ├── faEnvelopeOpen.d.ts │ │ │ │ │ ├── faEnvelopeOpen.js │ │ │ │ │ ├── faEnvelopeOpenText.d.ts │ │ │ │ │ ├── faEnvelopeOpenText.js │ │ │ │ │ ├── faEnvelopeSquare.d.ts │ │ │ │ │ ├── faEnvelopeSquare.js │ │ │ │ │ ├── faEquals.d.ts │ │ │ │ │ ├── faEquals.js │ │ │ │ │ ├── faEraser.d.ts │ │ │ │ │ ├── faEraser.js │ │ │ │ │ ├── faEthernet.d.ts │ │ │ │ │ ├── faEthernet.js │ │ │ │ │ ├── faEuroSign.d.ts │ │ │ │ │ ├── faEuroSign.js │ │ │ │ │ ├── faExchangeAlt.d.ts │ │ │ │ │ ├── faExchangeAlt.js │ │ │ │ │ ├── faExclamation.d.ts │ │ │ │ │ ├── faExclamation.js │ │ │ │ │ ├── faExclamationCircle.d.ts │ │ │ │ │ ├── faExclamationCircle.js │ │ │ │ │ ├── faExclamationTriangle.d.ts │ │ │ │ │ ├── faExclamationTriangle.js │ │ │ │ │ ├── faExpand.d.ts │ │ │ │ │ ├── faExpand.js │ │ │ │ │ ├── faExpandAlt.d.ts │ │ │ │ │ ├── faExpandAlt.js │ │ │ │ │ ├── faExpandArrowsAlt.d.ts │ │ │ │ │ ├── faExpandArrowsAlt.js │ │ │ │ │ ├── faExternalLinkAlt.d.ts │ │ │ │ │ ├── faExternalLinkAlt.js │ │ │ │ │ ├── faExternalLinkSquareAlt.d.ts │ │ │ │ │ ├── faExternalLinkSquareAlt.js │ │ │ │ │ ├── faEye.d.ts │ │ │ │ │ ├── faEye.js │ │ │ │ │ ├── faEyeDropper.d.ts │ │ │ │ │ ├── faEyeDropper.js │ │ │ │ │ ├── faEyeSlash.d.ts │ │ │ │ │ ├── faEyeSlash.js │ │ │ │ │ ├── faFan.d.ts │ │ │ │ │ ├── faFan.js │ │ │ │ │ ├── faFastBackward.d.ts │ │ │ │ │ ├── faFastBackward.js │ │ │ │ │ ├── faFastForward.d.ts │ │ │ │ │ ├── faFastForward.js │ │ │ │ │ ├── faFaucet.d.ts │ │ │ │ │ ├── faFaucet.js │ │ │ │ │ ├── faFax.d.ts │ │ │ │ │ ├── faFax.js │ │ │ │ │ ├── faFeather.d.ts │ │ │ │ │ ├── faFeather.js │ │ │ │ │ ├── faFeatherAlt.d.ts │ │ │ │ │ ├── faFeatherAlt.js │ │ │ │ │ ├── faFemale.d.ts │ │ │ │ │ ├── faFemale.js │ │ │ │ │ ├── faFighterJet.d.ts │ │ │ │ │ ├── faFighterJet.js │ │ │ │ │ ├── faFile.d.ts │ │ │ │ │ ├── faFile.js │ │ │ │ │ ├── faFileAlt.d.ts │ │ │ │ │ ├── faFileAlt.js │ │ │ │ │ ├── faFileArchive.d.ts │ │ │ │ │ ├── faFileArchive.js │ │ │ │ │ ├── faFileAudio.d.ts │ │ │ │ │ ├── faFileAudio.js │ │ │ │ │ ├── faFileCode.d.ts │ │ │ │ │ ├── faFileCode.js │ │ │ │ │ ├── faFileContract.d.ts │ │ │ │ │ ├── faFileContract.js │ │ │ │ │ ├── faFileCsv.d.ts │ │ │ │ │ ├── faFileCsv.js │ │ │ │ │ ├── faFileDownload.d.ts │ │ │ │ │ ├── faFileDownload.js │ │ │ │ │ ├── faFileExcel.d.ts │ │ │ │ │ ├── faFileExcel.js │ │ │ │ │ ├── faFileExport.d.ts │ │ │ │ │ ├── faFileExport.js │ │ │ │ │ ├── faFileImage.d.ts │ │ │ │ │ ├── faFileImage.js │ │ │ │ │ ├── faFileImport.d.ts │ │ │ │ │ ├── faFileImport.js │ │ │ │ │ ├── faFileInvoice.d.ts │ │ │ │ │ ├── faFileInvoice.js │ │ │ │ │ ├── faFileInvoiceDollar.d.ts │ │ │ │ │ ├── faFileInvoiceDollar.js │ │ │ │ │ ├── faFileMedical.d.ts │ │ │ │ │ ├── faFileMedical.js │ │ │ │ │ ├── faFileMedicalAlt.d.ts │ │ │ │ │ ├── faFileMedicalAlt.js │ │ │ │ │ ├── faFilePdf.d.ts │ │ │ │ │ ├── faFilePdf.js │ │ │ │ │ ├── faFilePowerpoint.d.ts │ │ │ │ │ ├── faFilePowerpoint.js │ │ │ │ │ ├── faFilePrescription.d.ts │ │ │ │ │ ├── faFilePrescription.js │ │ │ │ │ ├── faFileSignature.d.ts │ │ │ │ │ ├── faFileSignature.js │ │ │ │ │ ├── faFileUpload.d.ts │ │ │ │ │ ├── faFileUpload.js │ │ │ │ │ ├── faFileVideo.d.ts │ │ │ │ │ ├── faFileVideo.js │ │ │ │ │ ├── faFileWord.d.ts │ │ │ │ │ ├── faFileWord.js │ │ │ │ │ ├── faFill.d.ts │ │ │ │ │ ├── faFill.js │ │ │ │ │ ├── faFillDrip.d.ts │ │ │ │ │ ├── faFillDrip.js │ │ │ │ │ ├── faFilm.d.ts │ │ │ │ │ ├── faFilm.js │ │ │ │ │ ├── faFilter.d.ts │ │ │ │ │ ├── faFilter.js │ │ │ │ │ ├── faFingerprint.d.ts │ │ │ │ │ ├── faFingerprint.js │ │ │ │ │ ├── faFire.d.ts │ │ │ │ │ ├── faFire.js │ │ │ │ │ ├── faFireAlt.d.ts │ │ │ │ │ ├── faFireAlt.js │ │ │ │ │ ├── faFireExtinguisher.d.ts │ │ │ │ │ ├── faFireExtinguisher.js │ │ │ │ │ ├── faFirstAid.d.ts │ │ │ │ │ ├── faFirstAid.js │ │ │ │ │ ├── faFish.d.ts │ │ │ │ │ ├── faFish.js │ │ │ │ │ ├── faFistRaised.d.ts │ │ │ │ │ ├── faFistRaised.js │ │ │ │ │ ├── faFlag.d.ts │ │ │ │ │ ├── faFlag.js │ │ │ │ │ ├── faFlagCheckered.d.ts │ │ │ │ │ ├── faFlagCheckered.js │ │ │ │ │ ├── faFlagUsa.d.ts │ │ │ │ │ ├── faFlagUsa.js │ │ │ │ │ ├── faFlask.d.ts │ │ │ │ │ ├── faFlask.js │ │ │ │ │ ├── faFlushed.d.ts │ │ │ │ │ ├── faFlushed.js │ │ │ │ │ ├── faFolder.d.ts │ │ │ │ │ ├── faFolder.js │ │ │ │ │ ├── faFolderMinus.d.ts │ │ │ │ │ ├── faFolderMinus.js │ │ │ │ │ ├── faFolderOpen.d.ts │ │ │ │ │ ├── faFolderOpen.js │ │ │ │ │ ├── faFolderPlus.d.ts │ │ │ │ │ ├── faFolderPlus.js │ │ │ │ │ ├── faFont.d.ts │ │ │ │ │ ├── faFont.js │ │ │ │ │ ├── faFontAwesomeLogoFull.d.ts │ │ │ │ │ ├── faFontAwesomeLogoFull.js │ │ │ │ │ ├── faFootballBall.d.ts │ │ │ │ │ ├── faFootballBall.js │ │ │ │ │ ├── faForward.d.ts │ │ │ │ │ ├── faForward.js │ │ │ │ │ ├── faFrog.d.ts │ │ │ │ │ ├── faFrog.js │ │ │ │ │ ├── faFrown.d.ts │ │ │ │ │ ├── faFrown.js │ │ │ │ │ ├── faFrownOpen.d.ts │ │ │ │ │ ├── faFrownOpen.js │ │ │ │ │ ├── faFunnelDollar.d.ts │ │ │ │ │ ├── faFunnelDollar.js │ │ │ │ │ ├── faFutbol.d.ts │ │ │ │ │ ├── faFutbol.js │ │ │ │ │ ├── faGamepad.d.ts │ │ │ │ │ ├── faGamepad.js │ │ │ │ │ ├── faGasPump.d.ts │ │ │ │ │ ├── faGasPump.js │ │ │ │ │ ├── faGavel.d.ts │ │ │ │ │ ├── faGavel.js │ │ │ │ │ ├── faGem.d.ts │ │ │ │ │ ├── faGem.js │ │ │ │ │ ├── faGenderless.d.ts │ │ │ │ │ ├── faGenderless.js │ │ │ │ │ ├── faGhost.d.ts │ │ │ │ │ ├── faGhost.js │ │ │ │ │ ├── faGift.d.ts │ │ │ │ │ ├── faGift.js │ │ │ │ │ ├── faGifts.d.ts │ │ │ │ │ ├── faGifts.js │ │ │ │ │ ├── faGlassCheers.d.ts │ │ │ │ │ ├── faGlassCheers.js │ │ │ │ │ ├── faGlassMartini.d.ts │ │ │ │ │ ├── faGlassMartini.js │ │ │ │ │ ├── faGlassMartiniAlt.d.ts │ │ │ │ │ ├── faGlassMartiniAlt.js │ │ │ │ │ ├── faGlassWhiskey.d.ts │ │ │ │ │ ├── faGlassWhiskey.js │ │ │ │ │ ├── faGlasses.d.ts │ │ │ │ │ ├── faGlasses.js │ │ │ │ │ ├── faGlobe.d.ts │ │ │ │ │ ├── faGlobe.js │ │ │ │ │ ├── faGlobeAfrica.d.ts │ │ │ │ │ ├── faGlobeAfrica.js │ │ │ │ │ ├── faGlobeAmericas.d.ts │ │ │ │ │ ├── faGlobeAmericas.js │ │ │ │ │ ├── faGlobeAsia.d.ts │ │ │ │ │ ├── faGlobeAsia.js │ │ │ │ │ ├── faGlobeEurope.d.ts │ │ │ │ │ ├── faGlobeEurope.js │ │ │ │ │ ├── faGolfBall.d.ts │ │ │ │ │ ├── faGolfBall.js │ │ │ │ │ ├── faGopuram.d.ts │ │ │ │ │ ├── faGopuram.js │ │ │ │ │ ├── faGraduationCap.d.ts │ │ │ │ │ ├── faGraduationCap.js │ │ │ │ │ ├── faGreaterThan.d.ts │ │ │ │ │ ├── faGreaterThan.js │ │ │ │ │ ├── faGreaterThanEqual.d.ts │ │ │ │ │ ├── faGreaterThanEqual.js │ │ │ │ │ ├── faGrimace.d.ts │ │ │ │ │ ├── faGrimace.js │ │ │ │ │ ├── faGrin.d.ts │ │ │ │ │ ├── faGrin.js │ │ │ │ │ ├── faGrinAlt.d.ts │ │ │ │ │ ├── faGrinAlt.js │ │ │ │ │ ├── faGrinBeam.d.ts │ │ │ │ │ ├── faGrinBeam.js │ │ │ │ │ ├── faGrinBeamSweat.d.ts │ │ │ │ │ ├── faGrinBeamSweat.js │ │ │ │ │ ├── faGrinHearts.d.ts │ │ │ │ │ ├── faGrinHearts.js │ │ │ │ │ ├── faGrinSquint.d.ts │ │ │ │ │ ├── faGrinSquint.js │ │ │ │ │ ├── faGrinSquintTears.d.ts │ │ │ │ │ ├── faGrinSquintTears.js │ │ │ │ │ ├── faGrinStars.d.ts │ │ │ │ │ ├── faGrinStars.js │ │ │ │ │ ├── faGrinTears.d.ts │ │ │ │ │ ├── faGrinTears.js │ │ │ │ │ ├── faGrinTongue.d.ts │ │ │ │ │ ├── faGrinTongue.js │ │ │ │ │ ├── faGrinTongueSquint.d.ts │ │ │ │ │ ├── faGrinTongueSquint.js │ │ │ │ │ ├── faGrinTongueWink.d.ts │ │ │ │ │ ├── faGrinTongueWink.js │ │ │ │ │ ├── faGrinWink.d.ts │ │ │ │ │ ├── faGrinWink.js │ │ │ │ │ ├── faGripHorizontal.d.ts │ │ │ │ │ ├── faGripHorizontal.js │ │ │ │ │ ├── faGripLines.d.ts │ │ │ │ │ ├── faGripLines.js │ │ │ │ │ ├── faGripLinesVertical.d.ts │ │ │ │ │ ├── faGripLinesVertical.js │ │ │ │ │ ├── faGripVertical.d.ts │ │ │ │ │ ├── faGripVertical.js │ │ │ │ │ ├── faGuitar.d.ts │ │ │ │ │ ├── faGuitar.js │ │ │ │ │ ├── faHSquare.d.ts │ │ │ │ │ ├── faHSquare.js │ │ │ │ │ ├── faHamburger.d.ts │ │ │ │ │ ├── faHamburger.js │ │ │ │ │ ├── faHammer.d.ts │ │ │ │ │ ├── faHammer.js │ │ │ │ │ ├── faHamsa.d.ts │ │ │ │ │ ├── faHamsa.js │ │ │ │ │ ├── faHandHolding.d.ts │ │ │ │ │ ├── faHandHolding.js │ │ │ │ │ ├── faHandHoldingHeart.d.ts │ │ │ │ │ ├── faHandHoldingHeart.js │ │ │ │ │ ├── faHandHoldingMedical.d.ts │ │ │ │ │ ├── faHandHoldingMedical.js │ │ │ │ │ ├── faHandHoldingUsd.d.ts │ │ │ │ │ ├── faHandHoldingUsd.js │ │ │ │ │ ├── faHandHoldingWater.d.ts │ │ │ │ │ ├── faHandHoldingWater.js │ │ │ │ │ ├── faHandLizard.d.ts │ │ │ │ │ ├── faHandLizard.js │ │ │ │ │ ├── faHandMiddleFinger.d.ts │ │ │ │ │ ├── faHandMiddleFinger.js │ │ │ │ │ ├── faHandPaper.d.ts │ │ │ │ │ ├── faHandPaper.js │ │ │ │ │ ├── faHandPeace.d.ts │ │ │ │ │ ├── faHandPeace.js │ │ │ │ │ ├── faHandPointDown.d.ts │ │ │ │ │ ├── faHandPointDown.js │ │ │ │ │ ├── faHandPointLeft.d.ts │ │ │ │ │ ├── faHandPointLeft.js │ │ │ │ │ ├── faHandPointRight.d.ts │ │ │ │ │ ├── faHandPointRight.js │ │ │ │ │ ├── faHandPointUp.d.ts │ │ │ │ │ ├── faHandPointUp.js │ │ │ │ │ ├── faHandPointer.d.ts │ │ │ │ │ ├── faHandPointer.js │ │ │ │ │ ├── faHandRock.d.ts │ │ │ │ │ ├── faHandRock.js │ │ │ │ │ ├── faHandScissors.d.ts │ │ │ │ │ ├── faHandScissors.js │ │ │ │ │ ├── faHandSparkles.d.ts │ │ │ │ │ ├── faHandSparkles.js │ │ │ │ │ ├── faHandSpock.d.ts │ │ │ │ │ ├── faHandSpock.js │ │ │ │ │ ├── faHands.d.ts │ │ │ │ │ ├── faHands.js │ │ │ │ │ ├── faHandsHelping.d.ts │ │ │ │ │ ├── faHandsHelping.js │ │ │ │ │ ├── faHandsWash.d.ts │ │ │ │ │ ├── faHandsWash.js │ │ │ │ │ ├── faHandshake.d.ts │ │ │ │ │ ├── faHandshake.js │ │ │ │ │ ├── faHandshakeAltSlash.d.ts │ │ │ │ │ ├── faHandshakeAltSlash.js │ │ │ │ │ ├── faHandshakeSlash.d.ts │ │ │ │ │ ├── faHandshakeSlash.js │ │ │ │ │ ├── faHanukiah.d.ts │ │ │ │ │ ├── faHanukiah.js │ │ │ │ │ ├── faHardHat.d.ts │ │ │ │ │ ├── faHardHat.js │ │ │ │ │ ├── faHashtag.d.ts │ │ │ │ │ ├── faHashtag.js │ │ │ │ │ ├── faHatCowboy.d.ts │ │ │ │ │ ├── faHatCowboy.js │ │ │ │ │ ├── faHatCowboySide.d.ts │ │ │ │ │ ├── faHatCowboySide.js │ │ │ │ │ ├── faHatWizard.d.ts │ │ │ │ │ ├── faHatWizard.js │ │ │ │ │ ├── faHaykal.d.ts │ │ │ │ │ ├── faHaykal.js │ │ │ │ │ ├── faHdd.d.ts │ │ │ │ │ ├── faHdd.js │ │ │ │ │ ├── faHeadSideCough.d.ts │ │ │ │ │ ├── faHeadSideCough.js │ │ │ │ │ ├── faHeadSideCoughSlash.d.ts │ │ │ │ │ ├── faHeadSideCoughSlash.js │ │ │ │ │ ├── faHeadSideMask.d.ts │ │ │ │ │ ├── faHeadSideMask.js │ │ │ │ │ ├── faHeadSideVirus.d.ts │ │ │ │ │ ├── faHeadSideVirus.js │ │ │ │ │ ├── faHeading.d.ts │ │ │ │ │ ├── faHeading.js │ │ │ │ │ ├── faHeadphones.d.ts │ │ │ │ │ ├── faHeadphones.js │ │ │ │ │ ├── faHeadphonesAlt.d.ts │ │ │ │ │ ├── faHeadphonesAlt.js │ │ │ │ │ ├── faHeadset.d.ts │ │ │ │ │ ├── faHeadset.js │ │ │ │ │ ├── faHeart.d.ts │ │ │ │ │ ├── faHeart.js │ │ │ │ │ ├── faHeartBroken.d.ts │ │ │ │ │ ├── faHeartBroken.js │ │ │ │ │ ├── faHeartbeat.d.ts │ │ │ │ │ ├── faHeartbeat.js │ │ │ │ │ ├── faHelicopter.d.ts │ │ │ │ │ ├── faHelicopter.js │ │ │ │ │ ├── faHighlighter.d.ts │ │ │ │ │ ├── faHighlighter.js │ │ │ │ │ ├── faHiking.d.ts │ │ │ │ │ ├── faHiking.js │ │ │ │ │ ├── faHippo.d.ts │ │ │ │ │ ├── faHippo.js │ │ │ │ │ ├── faHistory.d.ts │ │ │ │ │ ├── faHistory.js │ │ │ │ │ ├── faHockeyPuck.d.ts │ │ │ │ │ ├── faHockeyPuck.js │ │ │ │ │ ├── faHollyBerry.d.ts │ │ │ │ │ ├── faHollyBerry.js │ │ │ │ │ ├── faHome.d.ts │ │ │ │ │ ├── faHome.js │ │ │ │ │ ├── faHorse.d.ts │ │ │ │ │ ├── faHorse.js │ │ │ │ │ ├── faHorseHead.d.ts │ │ │ │ │ ├── faHorseHead.js │ │ │ │ │ ├── faHospital.d.ts │ │ │ │ │ ├── faHospital.js │ │ │ │ │ ├── faHospitalAlt.d.ts │ │ │ │ │ ├── faHospitalAlt.js │ │ │ │ │ ├── faHospitalSymbol.d.ts │ │ │ │ │ ├── faHospitalSymbol.js │ │ │ │ │ ├── faHospitalUser.d.ts │ │ │ │ │ ├── faHospitalUser.js │ │ │ │ │ ├── faHotTub.d.ts │ │ │ │ │ ├── faHotTub.js │ │ │ │ │ ├── faHotdog.d.ts │ │ │ │ │ ├── faHotdog.js │ │ │ │ │ ├── faHotel.d.ts │ │ │ │ │ ├── faHotel.js │ │ │ │ │ ├── faHourglass.d.ts │ │ │ │ │ ├── faHourglass.js │ │ │ │ │ ├── faHourglassEnd.d.ts │ │ │ │ │ ├── faHourglassEnd.js │ │ │ │ │ ├── faHourglassHalf.d.ts │ │ │ │ │ ├── faHourglassHalf.js │ │ │ │ │ ├── faHourglassStart.d.ts │ │ │ │ │ ├── faHourglassStart.js │ │ │ │ │ ├── faHouseDamage.d.ts │ │ │ │ │ ├── faHouseDamage.js │ │ │ │ │ ├── faHouseUser.d.ts │ │ │ │ │ ├── faHouseUser.js │ │ │ │ │ ├── faHryvnia.d.ts │ │ │ │ │ ├── faHryvnia.js │ │ │ │ │ ├── faICursor.d.ts │ │ │ │ │ ├── faICursor.js │ │ │ │ │ ├── faIceCream.d.ts │ │ │ │ │ ├── faIceCream.js │ │ │ │ │ ├── faIcicles.d.ts │ │ │ │ │ ├── faIcicles.js │ │ │ │ │ ├── faIcons.d.ts │ │ │ │ │ ├── faIcons.js │ │ │ │ │ ├── faIdBadge.d.ts │ │ │ │ │ ├── faIdBadge.js │ │ │ │ │ ├── faIdCard.d.ts │ │ │ │ │ ├── faIdCard.js │ │ │ │ │ ├── faIdCardAlt.d.ts │ │ │ │ │ ├── faIdCardAlt.js │ │ │ │ │ ├── faIgloo.d.ts │ │ │ │ │ ├── faIgloo.js │ │ │ │ │ ├── faImage.d.ts │ │ │ │ │ ├── faImage.js │ │ │ │ │ ├── faImages.d.ts │ │ │ │ │ ├── faImages.js │ │ │ │ │ ├── faInbox.d.ts │ │ │ │ │ ├── faInbox.js │ │ │ │ │ ├── faIndent.d.ts │ │ │ │ │ ├── faIndent.js │ │ │ │ │ ├── faIndustry.d.ts │ │ │ │ │ ├── faIndustry.js │ │ │ │ │ ├── faInfinity.d.ts │ │ │ │ │ ├── faInfinity.js │ │ │ │ │ ├── faInfo.d.ts │ │ │ │ │ ├── faInfo.js │ │ │ │ │ ├── faInfoCircle.d.ts │ │ │ │ │ ├── faInfoCircle.js │ │ │ │ │ ├── faItalic.d.ts │ │ │ │ │ ├── faItalic.js │ │ │ │ │ ├── faJedi.d.ts │ │ │ │ │ ├── faJedi.js │ │ │ │ │ ├── faJoint.d.ts │ │ │ │ │ ├── faJoint.js │ │ │ │ │ ├── faJournalWhills.d.ts │ │ │ │ │ ├── faJournalWhills.js │ │ │ │ │ ├── faKaaba.d.ts │ │ │ │ │ ├── faKaaba.js │ │ │ │ │ ├── faKey.d.ts │ │ │ │ │ ├── faKey.js │ │ │ │ │ ├── faKeyboard.d.ts │ │ │ │ │ ├── faKeyboard.js │ │ │ │ │ ├── faKhanda.d.ts │ │ │ │ │ ├── faKhanda.js │ │ │ │ │ ├── faKiss.d.ts │ │ │ │ │ ├── faKiss.js │ │ │ │ │ ├── faKissBeam.d.ts │ │ │ │ │ ├── faKissBeam.js │ │ │ │ │ ├── faKissWinkHeart.d.ts │ │ │ │ │ ├── faKissWinkHeart.js │ │ │ │ │ ├── faKiwiBird.d.ts │ │ │ │ │ ├── faKiwiBird.js │ │ │ │ │ ├── faLandmark.d.ts │ │ │ │ │ ├── faLandmark.js │ │ │ │ │ ├── faLanguage.d.ts │ │ │ │ │ ├── faLanguage.js │ │ │ │ │ ├── faLaptop.d.ts │ │ │ │ │ ├── faLaptop.js │ │ │ │ │ ├── faLaptopCode.d.ts │ │ │ │ │ ├── faLaptopCode.js │ │ │ │ │ ├── faLaptopHouse.d.ts │ │ │ │ │ ├── faLaptopHouse.js │ │ │ │ │ ├── faLaptopMedical.d.ts │ │ │ │ │ ├── faLaptopMedical.js │ │ │ │ │ ├── faLaugh.d.ts │ │ │ │ │ ├── faLaugh.js │ │ │ │ │ ├── faLaughBeam.d.ts │ │ │ │ │ ├── faLaughBeam.js │ │ │ │ │ ├── faLaughSquint.d.ts │ │ │ │ │ ├── faLaughSquint.js │ │ │ │ │ ├── faLaughWink.d.ts │ │ │ │ │ ├── faLaughWink.js │ │ │ │ │ ├── faLayerGroup.d.ts │ │ │ │ │ ├── faLayerGroup.js │ │ │ │ │ ├── faLeaf.d.ts │ │ │ │ │ ├── faLeaf.js │ │ │ │ │ ├── faLemon.d.ts │ │ │ │ │ ├── faLemon.js │ │ │ │ │ ├── faLessThan.d.ts │ │ │ │ │ ├── faLessThan.js │ │ │ │ │ ├── faLessThanEqual.d.ts │ │ │ │ │ ├── faLessThanEqual.js │ │ │ │ │ ├── faLevelDownAlt.d.ts │ │ │ │ │ ├── faLevelDownAlt.js │ │ │ │ │ ├── faLevelUpAlt.d.ts │ │ │ │ │ ├── faLevelUpAlt.js │ │ │ │ │ ├── faLifeRing.d.ts │ │ │ │ │ ├── faLifeRing.js │ │ │ │ │ ├── faLightbulb.d.ts │ │ │ │ │ ├── faLightbulb.js │ │ │ │ │ ├── faLink.d.ts │ │ │ │ │ ├── faLink.js │ │ │ │ │ ├── faLiraSign.d.ts │ │ │ │ │ ├── faLiraSign.js │ │ │ │ │ ├── faList.d.ts │ │ │ │ │ ├── faList.js │ │ │ │ │ ├── faListAlt.d.ts │ │ │ │ │ ├── faListAlt.js │ │ │ │ │ ├── faListOl.d.ts │ │ │ │ │ ├── faListOl.js │ │ │ │ │ ├── faListUl.d.ts │ │ │ │ │ ├── faListUl.js │ │ │ │ │ ├── faLocationArrow.d.ts │ │ │ │ │ ├── faLocationArrow.js │ │ │ │ │ ├── faLock.d.ts │ │ │ │ │ ├── faLock.js │ │ │ │ │ ├── faLockOpen.d.ts │ │ │ │ │ ├── faLockOpen.js │ │ │ │ │ ├── faLongArrowAltDown.d.ts │ │ │ │ │ ├── faLongArrowAltDown.js │ │ │ │ │ ├── faLongArrowAltLeft.d.ts │ │ │ │ │ ├── faLongArrowAltLeft.js │ │ │ │ │ ├── faLongArrowAltRight.d.ts │ │ │ │ │ ├── faLongArrowAltRight.js │ │ │ │ │ ├── faLongArrowAltUp.d.ts │ │ │ │ │ ├── faLongArrowAltUp.js │ │ │ │ │ ├── faLowVision.d.ts │ │ │ │ │ ├── faLowVision.js │ │ │ │ │ ├── faLuggageCart.d.ts │ │ │ │ │ ├── faLuggageCart.js │ │ │ │ │ ├── faLungs.d.ts │ │ │ │ │ ├── faLungs.js │ │ │ │ │ ├── faLungsVirus.d.ts │ │ │ │ │ ├── faLungsVirus.js │ │ │ │ │ ├── faMagic.d.ts │ │ │ │ │ ├── faMagic.js │ │ │ │ │ ├── faMagnet.d.ts │ │ │ │ │ ├── faMagnet.js │ │ │ │ │ ├── faMailBulk.d.ts │ │ │ │ │ ├── faMailBulk.js │ │ │ │ │ ├── faMale.d.ts │ │ │ │ │ ├── faMale.js │ │ │ │ │ ├── faMap.d.ts │ │ │ │ │ ├── faMap.js │ │ │ │ │ ├── faMapMarked.d.ts │ │ │ │ │ ├── faMapMarked.js │ │ │ │ │ ├── faMapMarkedAlt.d.ts │ │ │ │ │ ├── faMapMarkedAlt.js │ │ │ │ │ ├── faMapMarker.d.ts │ │ │ │ │ ├── faMapMarker.js │ │ │ │ │ ├── faMapMarkerAlt.d.ts │ │ │ │ │ ├── faMapMarkerAlt.js │ │ │ │ │ ├── faMapPin.d.ts │ │ │ │ │ ├── faMapPin.js │ │ │ │ │ ├── faMapSigns.d.ts │ │ │ │ │ ├── faMapSigns.js │ │ │ │ │ ├── faMarker.d.ts │ │ │ │ │ ├── faMarker.js │ │ │ │ │ ├── faMars.d.ts │ │ │ │ │ ├── faMars.js │ │ │ │ │ ├── faMarsDouble.d.ts │ │ │ │ │ ├── faMarsDouble.js │ │ │ │ │ ├── faMarsStroke.d.ts │ │ │ │ │ ├── faMarsStroke.js │ │ │ │ │ ├── faMarsStrokeH.d.ts │ │ │ │ │ ├── faMarsStrokeH.js │ │ │ │ │ ├── faMarsStrokeV.d.ts │ │ │ │ │ ├── faMarsStrokeV.js │ │ │ │ │ ├── faMask.d.ts │ │ │ │ │ ├── faMask.js │ │ │ │ │ ├── faMedal.d.ts │ │ │ │ │ ├── faMedal.js │ │ │ │ │ ├── faMedkit.d.ts │ │ │ │ │ ├── faMedkit.js │ │ │ │ │ ├── faMeh.d.ts │ │ │ │ │ ├── faMeh.js │ │ │ │ │ ├── faMehBlank.d.ts │ │ │ │ │ ├── faMehBlank.js │ │ │ │ │ ├── faMehRollingEyes.d.ts │ │ │ │ │ ├── faMehRollingEyes.js │ │ │ │ │ ├── faMemory.d.ts │ │ │ │ │ ├── faMemory.js │ │ │ │ │ ├── faMenorah.d.ts │ │ │ │ │ ├── faMenorah.js │ │ │ │ │ ├── faMercury.d.ts │ │ │ │ │ ├── faMercury.js │ │ │ │ │ ├── faMeteor.d.ts │ │ │ │ │ ├── faMeteor.js │ │ │ │ │ ├── faMicrochip.d.ts │ │ │ │ │ ├── faMicrochip.js │ │ │ │ │ ├── faMicrophone.d.ts │ │ │ │ │ ├── faMicrophone.js │ │ │ │ │ ├── faMicrophoneAlt.d.ts │ │ │ │ │ ├── faMicrophoneAlt.js │ │ │ │ │ ├── faMicrophoneAltSlash.d.ts │ │ │ │ │ ├── faMicrophoneAltSlash.js │ │ │ │ │ ├── faMicrophoneSlash.d.ts │ │ │ │ │ ├── faMicrophoneSlash.js │ │ │ │ │ ├── faMicroscope.d.ts │ │ │ │ │ ├── faMicroscope.js │ │ │ │ │ ├── faMinus.d.ts │ │ │ │ │ ├── faMinus.js │ │ │ │ │ ├── faMinusCircle.d.ts │ │ │ │ │ ├── faMinusCircle.js │ │ │ │ │ ├── faMinusSquare.d.ts │ │ │ │ │ ├── faMinusSquare.js │ │ │ │ │ ├── faMitten.d.ts │ │ │ │ │ ├── faMitten.js │ │ │ │ │ ├── faMobile.d.ts │ │ │ │ │ ├── faMobile.js │ │ │ │ │ ├── faMobileAlt.d.ts │ │ │ │ │ ├── faMobileAlt.js │ │ │ │ │ ├── faMoneyBill.d.ts │ │ │ │ │ ├── faMoneyBill.js │ │ │ │ │ ├── faMoneyBillAlt.d.ts │ │ │ │ │ ├── faMoneyBillAlt.js │ │ │ │ │ ├── faMoneyBillWave.d.ts │ │ │ │ │ ├── faMoneyBillWave.js │ │ │ │ │ ├── faMoneyBillWaveAlt.d.ts │ │ │ │ │ ├── faMoneyBillWaveAlt.js │ │ │ │ │ ├── faMoneyCheck.d.ts │ │ │ │ │ ├── faMoneyCheck.js │ │ │ │ │ ├── faMoneyCheckAlt.d.ts │ │ │ │ │ ├── faMoneyCheckAlt.js │ │ │ │ │ ├── faMonument.d.ts │ │ │ │ │ ├── faMonument.js │ │ │ │ │ ├── faMoon.d.ts │ │ │ │ │ ├── faMoon.js │ │ │ │ │ ├── faMortarPestle.d.ts │ │ │ │ │ ├── faMortarPestle.js │ │ │ │ │ ├── faMosque.d.ts │ │ │ │ │ ├── faMosque.js │ │ │ │ │ ├── faMotorcycle.d.ts │ │ │ │ │ ├── faMotorcycle.js │ │ │ │ │ ├── faMountain.d.ts │ │ │ │ │ ├── faMountain.js │ │ │ │ │ ├── faMouse.d.ts │ │ │ │ │ ├── faMouse.js │ │ │ │ │ ├── faMousePointer.d.ts │ │ │ │ │ ├── faMousePointer.js │ │ │ │ │ ├── faMugHot.d.ts │ │ │ │ │ ├── faMugHot.js │ │ │ │ │ ├── faMusic.d.ts │ │ │ │ │ ├── faMusic.js │ │ │ │ │ ├── faNetworkWired.d.ts │ │ │ │ │ ├── faNetworkWired.js │ │ │ │ │ ├── faNeuter.d.ts │ │ │ │ │ ├── faNeuter.js │ │ │ │ │ ├── faNewspaper.d.ts │ │ │ │ │ ├── faNewspaper.js │ │ │ │ │ ├── faNotEqual.d.ts │ │ │ │ │ ├── faNotEqual.js │ │ │ │ │ ├── faNotesMedical.d.ts │ │ │ │ │ ├── faNotesMedical.js │ │ │ │ │ ├── faObjectGroup.d.ts │ │ │ │ │ ├── faObjectGroup.js │ │ │ │ │ ├── faObjectUngroup.d.ts │ │ │ │ │ ├── faObjectUngroup.js │ │ │ │ │ ├── faOilCan.d.ts │ │ │ │ │ ├── faOilCan.js │ │ │ │ │ ├── faOm.d.ts │ │ │ │ │ ├── faOm.js │ │ │ │ │ ├── faOtter.d.ts │ │ │ │ │ ├── faOtter.js │ │ │ │ │ ├── faOutdent.d.ts │ │ │ │ │ ├── faOutdent.js │ │ │ │ │ ├── faPager.d.ts │ │ │ │ │ ├── faPager.js │ │ │ │ │ ├── faPaintBrush.d.ts │ │ │ │ │ ├── faPaintBrush.js │ │ │ │ │ ├── faPaintRoller.d.ts │ │ │ │ │ ├── faPaintRoller.js │ │ │ │ │ ├── faPalette.d.ts │ │ │ │ │ ├── faPalette.js │ │ │ │ │ ├── faPallet.d.ts │ │ │ │ │ ├── faPallet.js │ │ │ │ │ ├── faPaperPlane.d.ts │ │ │ │ │ ├── faPaperPlane.js │ │ │ │ │ ├── faPaperclip.d.ts │ │ │ │ │ ├── faPaperclip.js │ │ │ │ │ ├── faParachuteBox.d.ts │ │ │ │ │ ├── faParachuteBox.js │ │ │ │ │ ├── faParagraph.d.ts │ │ │ │ │ ├── faParagraph.js │ │ │ │ │ ├── faParking.d.ts │ │ │ │ │ ├── faParking.js │ │ │ │ │ ├── faPassport.d.ts │ │ │ │ │ ├── faPassport.js │ │ │ │ │ ├── faPastafarianism.d.ts │ │ │ │ │ ├── faPastafarianism.js │ │ │ │ │ ├── faPaste.d.ts │ │ │ │ │ ├── faPaste.js │ │ │ │ │ ├── faPause.d.ts │ │ │ │ │ ├── faPause.js │ │ │ │ │ ├── faPauseCircle.d.ts │ │ │ │ │ ├── faPauseCircle.js │ │ │ │ │ ├── faPaw.d.ts │ │ │ │ │ ├── faPaw.js │ │ │ │ │ ├── faPeace.d.ts │ │ │ │ │ ├── faPeace.js │ │ │ │ │ ├── faPen.d.ts │ │ │ │ │ ├── faPen.js │ │ │ │ │ ├── faPenAlt.d.ts │ │ │ │ │ ├── faPenAlt.js │ │ │ │ │ ├── faPenFancy.d.ts │ │ │ │ │ ├── faPenFancy.js │ │ │ │ │ ├── faPenNib.d.ts │ │ │ │ │ ├── faPenNib.js │ │ │ │ │ ├── faPenSquare.d.ts │ │ │ │ │ ├── faPenSquare.js │ │ │ │ │ ├── faPencilAlt.d.ts │ │ │ │ │ ├── faPencilAlt.js │ │ │ │ │ ├── faPencilRuler.d.ts │ │ │ │ │ ├── faPencilRuler.js │ │ │ │ │ ├── faPeopleArrows.d.ts │ │ │ │ │ ├── faPeopleArrows.js │ │ │ │ │ ├── faPeopleCarry.d.ts │ │ │ │ │ ├── faPeopleCarry.js │ │ │ │ │ ├── faPepperHot.d.ts │ │ │ │ │ ├── faPepperHot.js │ │ │ │ │ ├── faPercent.d.ts │ │ │ │ │ ├── faPercent.js │ │ │ │ │ ├── faPercentage.d.ts │ │ │ │ │ ├── faPercentage.js │ │ │ │ │ ├── faPersonBooth.d.ts │ │ │ │ │ ├── faPersonBooth.js │ │ │ │ │ ├── faPhone.d.ts │ │ │ │ │ ├── faPhone.js │ │ │ │ │ ├── faPhoneAlt.d.ts │ │ │ │ │ ├── faPhoneAlt.js │ │ │ │ │ ├── faPhoneSlash.d.ts │ │ │ │ │ ├── faPhoneSlash.js │ │ │ │ │ ├── faPhoneSquare.d.ts │ │ │ │ │ ├── faPhoneSquare.js │ │ │ │ │ ├── faPhoneSquareAlt.d.ts │ │ │ │ │ ├── faPhoneSquareAlt.js │ │ │ │ │ ├── faPhoneVolume.d.ts │ │ │ │ │ ├── faPhoneVolume.js │ │ │ │ │ ├── faPhotoVideo.d.ts │ │ │ │ │ ├── faPhotoVideo.js │ │ │ │ │ ├── faPiggyBank.d.ts │ │ │ │ │ ├── faPiggyBank.js │ │ │ │ │ ├── faPills.d.ts │ │ │ │ │ ├── faPills.js │ │ │ │ │ ├── faPizzaSlice.d.ts │ │ │ │ │ ├── faPizzaSlice.js │ │ │ │ │ ├── faPlaceOfWorship.d.ts │ │ │ │ │ ├── faPlaceOfWorship.js │ │ │ │ │ ├── faPlane.d.ts │ │ │ │ │ ├── faPlane.js │ │ │ │ │ ├── faPlaneArrival.d.ts │ │ │ │ │ ├── faPlaneArrival.js │ │ │ │ │ ├── faPlaneDeparture.d.ts │ │ │ │ │ ├── faPlaneDeparture.js │ │ │ │ │ ├── faPlaneSlash.d.ts │ │ │ │ │ ├── faPlaneSlash.js │ │ │ │ │ ├── faPlay.d.ts │ │ │ │ │ ├── faPlay.js │ │ │ │ │ ├── faPlayCircle.d.ts │ │ │ │ │ ├── faPlayCircle.js │ │ │ │ │ ├── faPlug.d.ts │ │ │ │ │ ├── faPlug.js │ │ │ │ │ ├── faPlus.d.ts │ │ │ │ │ ├── faPlus.js │ │ │ │ │ ├── faPlusCircle.d.ts │ │ │ │ │ ├── faPlusCircle.js │ │ │ │ │ ├── faPlusSquare.d.ts │ │ │ │ │ ├── faPlusSquare.js │ │ │ │ │ ├── faPodcast.d.ts │ │ │ │ │ ├── faPodcast.js │ │ │ │ │ ├── faPoll.d.ts │ │ │ │ │ ├── faPoll.js │ │ │ │ │ ├── faPollH.d.ts │ │ │ │ │ ├── faPollH.js │ │ │ │ │ ├── faPoo.d.ts │ │ │ │ │ ├── faPoo.js │ │ │ │ │ ├── faPooStorm.d.ts │ │ │ │ │ ├── faPooStorm.js │ │ │ │ │ ├── faPoop.d.ts │ │ │ │ │ ├── faPoop.js │ │ │ │ │ ├── faPortrait.d.ts │ │ │ │ │ ├── faPortrait.js │ │ │ │ │ ├── faPoundSign.d.ts │ │ │ │ │ ├── faPoundSign.js │ │ │ │ │ ├── faPowerOff.d.ts │ │ │ │ │ ├── faPowerOff.js │ │ │ │ │ ├── faPray.d.ts │ │ │ │ │ ├── faPray.js │ │ │ │ │ ├── faPrayingHands.d.ts │ │ │ │ │ ├── faPrayingHands.js │ │ │ │ │ ├── faPrescription.d.ts │ │ │ │ │ ├── faPrescription.js │ │ │ │ │ ├── faPrescriptionBottle.d.ts │ │ │ │ │ ├── faPrescriptionBottle.js │ │ │ │ │ ├── faPrescriptionBottleAlt.d.ts │ │ │ │ │ ├── faPrescriptionBottleAlt.js │ │ │ │ │ ├── faPrint.d.ts │ │ │ │ │ ├── faPrint.js │ │ │ │ │ ├── faProcedures.d.ts │ │ │ │ │ ├── faProcedures.js │ │ │ │ │ ├── faProjectDiagram.d.ts │ │ │ │ │ ├── faProjectDiagram.js │ │ │ │ │ ├── faPumpMedical.d.ts │ │ │ │ │ ├── faPumpMedical.js │ │ │ │ │ ├── faPumpSoap.d.ts │ │ │ │ │ ├── faPumpSoap.js │ │ │ │ │ ├── faPuzzlePiece.d.ts │ │ │ │ │ ├── faPuzzlePiece.js │ │ │ │ │ ├── faQrcode.d.ts │ │ │ │ │ ├── faQrcode.js │ │ │ │ │ ├── faQuestion.d.ts │ │ │ │ │ ├── faQuestion.js │ │ │ │ │ ├── faQuestionCircle.d.ts │ │ │ │ │ ├── faQuestionCircle.js │ │ │ │ │ ├── faQuidditch.d.ts │ │ │ │ │ ├── faQuidditch.js │ │ │ │ │ ├── faQuoteLeft.d.ts │ │ │ │ │ ├── faQuoteLeft.js │ │ │ │ │ ├── faQuoteRight.d.ts │ │ │ │ │ ├── faQuoteRight.js │ │ │ │ │ ├── faQuran.d.ts │ │ │ │ │ ├── faQuran.js │ │ │ │ │ ├── faRadiation.d.ts │ │ │ │ │ ├── faRadiation.js │ │ │ │ │ ├── faRadiationAlt.d.ts │ │ │ │ │ ├── faRadiationAlt.js │ │ │ │ │ ├── faRainbow.d.ts │ │ │ │ │ ├── faRainbow.js │ │ │ │ │ ├── faRandom.d.ts │ │ │ │ │ ├── faRandom.js │ │ │ │ │ ├── faReceipt.d.ts │ │ │ │ │ ├── faReceipt.js │ │ │ │ │ ├── faRecordVinyl.d.ts │ │ │ │ │ ├── faRecordVinyl.js │ │ │ │ │ ├── faRecycle.d.ts │ │ │ │ │ ├── faRecycle.js │ │ │ │ │ ├── faRedo.d.ts │ │ │ │ │ ├── faRedo.js │ │ │ │ │ ├── faRedoAlt.d.ts │ │ │ │ │ ├── faRedoAlt.js │ │ │ │ │ ├── faRegistered.d.ts │ │ │ │ │ ├── faRegistered.js │ │ │ │ │ ├── faRemoveFormat.d.ts │ │ │ │ │ ├── faRemoveFormat.js │ │ │ │ │ ├── faReply.d.ts │ │ │ │ │ ├── faReply.js │ │ │ │ │ ├── faReplyAll.d.ts │ │ │ │ │ ├── faReplyAll.js │ │ │ │ │ ├── faRepublican.d.ts │ │ │ │ │ ├── faRepublican.js │ │ │ │ │ ├── faRestroom.d.ts │ │ │ │ │ ├── faRestroom.js │ │ │ │ │ ├── faRetweet.d.ts │ │ │ │ │ ├── faRetweet.js │ │ │ │ │ ├── faRibbon.d.ts │ │ │ │ │ ├── faRibbon.js │ │ │ │ │ ├── faRing.d.ts │ │ │ │ │ ├── faRing.js │ │ │ │ │ ├── faRoad.d.ts │ │ │ │ │ ├── faRoad.js │ │ │ │ │ ├── faRobot.d.ts │ │ │ │ │ ├── faRobot.js │ │ │ │ │ ├── faRocket.d.ts │ │ │ │ │ ├── faRocket.js │ │ │ │ │ ├── faRoute.d.ts │ │ │ │ │ ├── faRoute.js │ │ │ │ │ ├── faRss.d.ts │ │ │ │ │ ├── faRss.js │ │ │ │ │ ├── faRssSquare.d.ts │ │ │ │ │ ├── faRssSquare.js │ │ │ │ │ ├── faRubleSign.d.ts │ │ │ │ │ ├── faRubleSign.js │ │ │ │ │ ├── faRuler.d.ts │ │ │ │ │ ├── faRuler.js │ │ │ │ │ ├── faRulerCombined.d.ts │ │ │ │ │ ├── faRulerCombined.js │ │ │ │ │ ├── faRulerHorizontal.d.ts │ │ │ │ │ ├── faRulerHorizontal.js │ │ │ │ │ ├── faRulerVertical.d.ts │ │ │ │ │ ├── faRulerVertical.js │ │ │ │ │ ├── faRunning.d.ts │ │ │ │ │ ├── faRunning.js │ │ │ │ │ ├── faRupeeSign.d.ts │ │ │ │ │ ├── faRupeeSign.js │ │ │ │ │ ├── faSadCry.d.ts │ │ │ │ │ ├── faSadCry.js │ │ │ │ │ ├── faSadTear.d.ts │ │ │ │ │ ├── faSadTear.js │ │ │ │ │ ├── faSatellite.d.ts │ │ │ │ │ ├── faSatellite.js │ │ │ │ │ ├── faSatelliteDish.d.ts │ │ │ │ │ ├── faSatelliteDish.js │ │ │ │ │ ├── faSave.d.ts │ │ │ │ │ ├── faSave.js │ │ │ │ │ ├── faSchool.d.ts │ │ │ │ │ ├── faSchool.js │ │ │ │ │ ├── faScrewdriver.d.ts │ │ │ │ │ ├── faScrewdriver.js │ │ │ │ │ ├── faScroll.d.ts │ │ │ │ │ ├── faScroll.js │ │ │ │ │ ├── faSdCard.d.ts │ │ │ │ │ ├── faSdCard.js │ │ │ │ │ ├── faSearch.d.ts │ │ │ │ │ ├── faSearch.js │ │ │ │ │ ├── faSearchDollar.d.ts │ │ │ │ │ ├── faSearchDollar.js │ │ │ │ │ ├── faSearchLocation.d.ts │ │ │ │ │ ├── faSearchLocation.js │ │ │ │ │ ├── faSearchMinus.d.ts │ │ │ │ │ ├── faSearchMinus.js │ │ │ │ │ ├── faSearchPlus.d.ts │ │ │ │ │ ├── faSearchPlus.js │ │ │ │ │ ├── faSeedling.d.ts │ │ │ │ │ ├── faSeedling.js │ │ │ │ │ ├── faServer.d.ts │ │ │ │ │ ├── faServer.js │ │ │ │ │ ├── faShapes.d.ts │ │ │ │ │ ├── faShapes.js │ │ │ │ │ ├── faShare.d.ts │ │ │ │ │ ├── faShare.js │ │ │ │ │ ├── faShareAlt.d.ts │ │ │ │ │ ├── faShareAlt.js │ │ │ │ │ ├── faShareAltSquare.d.ts │ │ │ │ │ ├── faShareAltSquare.js │ │ │ │ │ ├── faShareSquare.d.ts │ │ │ │ │ ├── faShareSquare.js │ │ │ │ │ ├── faShekelSign.d.ts │ │ │ │ │ ├── faShekelSign.js │ │ │ │ │ ├── faShieldAlt.d.ts │ │ │ │ │ ├── faShieldAlt.js │ │ │ │ │ ├── faShieldVirus.d.ts │ │ │ │ │ ├── faShieldVirus.js │ │ │ │ │ ├── faShip.d.ts │ │ │ │ │ ├── faShip.js │ │ │ │ │ ├── faShippingFast.d.ts │ │ │ │ │ ├── faShippingFast.js │ │ │ │ │ ├── faShoePrints.d.ts │ │ │ │ │ ├── faShoePrints.js │ │ │ │ │ ├── faShoppingBag.d.ts │ │ │ │ │ ├── faShoppingBag.js │ │ │ │ │ ├── faShoppingBasket.d.ts │ │ │ │ │ ├── faShoppingBasket.js │ │ │ │ │ ├── faShoppingCart.d.ts │ │ │ │ │ ├── faShoppingCart.js │ │ │ │ │ ├── faShower.d.ts │ │ │ │ │ ├── faShower.js │ │ │ │ │ ├── faShuttleVan.d.ts │ │ │ │ │ ├── faShuttleVan.js │ │ │ │ │ ├── faSign.d.ts │ │ │ │ │ ├── faSign.js │ │ │ │ │ ├── faSignInAlt.d.ts │ │ │ │ │ ├── faSignInAlt.js │ │ │ │ │ ├── faSignLanguage.d.ts │ │ │ │ │ ├── faSignLanguage.js │ │ │ │ │ ├── faSignOutAlt.d.ts │ │ │ │ │ ├── faSignOutAlt.js │ │ │ │ │ ├── faSignal.d.ts │ │ │ │ │ ├── faSignal.js │ │ │ │ │ ├── faSignature.d.ts │ │ │ │ │ ├── faSignature.js │ │ │ │ │ ├── faSimCard.d.ts │ │ │ │ │ ├── faSimCard.js │ │ │ │ │ ├── faSink.d.ts │ │ │ │ │ ├── faSink.js │ │ │ │ │ ├── faSitemap.d.ts │ │ │ │ │ ├── faSitemap.js │ │ │ │ │ ├── faSkating.d.ts │ │ │ │ │ ├── faSkating.js │ │ │ │ │ ├── faSkiing.d.ts │ │ │ │ │ ├── faSkiing.js │ │ │ │ │ ├── faSkiingNordic.d.ts │ │ │ │ │ ├── faSkiingNordic.js │ │ │ │ │ ├── faSkull.d.ts │ │ │ │ │ ├── faSkull.js │ │ │ │ │ ├── faSkullCrossbones.d.ts │ │ │ │ │ ├── faSkullCrossbones.js │ │ │ │ │ ├── faSlash.d.ts │ │ │ │ │ ├── faSlash.js │ │ │ │ │ ├── faSleigh.d.ts │ │ │ │ │ ├── faSleigh.js │ │ │ │ │ ├── faSlidersH.d.ts │ │ │ │ │ ├── faSlidersH.js │ │ │ │ │ ├── faSmile.d.ts │ │ │ │ │ ├── faSmile.js │ │ │ │ │ ├── faSmileBeam.d.ts │ │ │ │ │ ├── faSmileBeam.js │ │ │ │ │ ├── faSmileWink.d.ts │ │ │ │ │ ├── faSmileWink.js │ │ │ │ │ ├── faSmog.d.ts │ │ │ │ │ ├── faSmog.js │ │ │ │ │ ├── faSmoking.d.ts │ │ │ │ │ ├── faSmoking.js │ │ │ │ │ ├── faSmokingBan.d.ts │ │ │ │ │ ├── faSmokingBan.js │ │ │ │ │ ├── faSms.d.ts │ │ │ │ │ ├── faSms.js │ │ │ │ │ ├── faSnowboarding.d.ts │ │ │ │ │ ├── faSnowboarding.js │ │ │ │ │ ├── faSnowflake.d.ts │ │ │ │ │ ├── faSnowflake.js │ │ │ │ │ ├── faSnowman.d.ts │ │ │ │ │ ├── faSnowman.js │ │ │ │ │ ├── faSnowplow.d.ts │ │ │ │ │ ├── faSnowplow.js │ │ │ │ │ ├── faSoap.d.ts │ │ │ │ │ ├── faSoap.js │ │ │ │ │ ├── faSocks.d.ts │ │ │ │ │ ├── faSocks.js │ │ │ │ │ ├── faSolarPanel.d.ts │ │ │ │ │ ├── faSolarPanel.js │ │ │ │ │ ├── faSort.d.ts │ │ │ │ │ ├── faSort.js │ │ │ │ │ ├── faSortAlphaDown.d.ts │ │ │ │ │ ├── faSortAlphaDown.js │ │ │ │ │ ├── faSortAlphaDownAlt.d.ts │ │ │ │ │ ├── faSortAlphaDownAlt.js │ │ │ │ │ ├── faSortAlphaUp.d.ts │ │ │ │ │ ├── faSortAlphaUp.js │ │ │ │ │ ├── faSortAlphaUpAlt.d.ts │ │ │ │ │ ├── faSortAlphaUpAlt.js │ │ │ │ │ ├── faSortAmountDown.d.ts │ │ │ │ │ ├── faSortAmountDown.js │ │ │ │ │ ├── faSortAmountDownAlt.d.ts │ │ │ │ │ ├── faSortAmountDownAlt.js │ │ │ │ │ ├── faSortAmountUp.d.ts │ │ │ │ │ ├── faSortAmountUp.js │ │ │ │ │ ├── faSortAmountUpAlt.d.ts │ │ │ │ │ ├── faSortAmountUpAlt.js │ │ │ │ │ ├── faSortDown.d.ts │ │ │ │ │ ├── faSortDown.js │ │ │ │ │ ├── faSortNumericDown.d.ts │ │ │ │ │ ├── faSortNumericDown.js │ │ │ │ │ ├── faSortNumericDownAlt.d.ts │ │ │ │ │ ├── faSortNumericDownAlt.js │ │ │ │ │ ├── faSortNumericUp.d.ts │ │ │ │ │ ├── faSortNumericUp.js │ │ │ │ │ ├── faSortNumericUpAlt.d.ts │ │ │ │ │ ├── faSortNumericUpAlt.js │ │ │ │ │ ├── faSortUp.d.ts │ │ │ │ │ ├── faSortUp.js │ │ │ │ │ ├── faSpa.d.ts │ │ │ │ │ ├── faSpa.js │ │ │ │ │ ├── faSpaceShuttle.d.ts │ │ │ │ │ ├── faSpaceShuttle.js │ │ │ │ │ ├── faSpellCheck.d.ts │ │ │ │ │ ├── faSpellCheck.js │ │ │ │ │ ├── faSpider.d.ts │ │ │ │ │ ├── faSpider.js │ │ │ │ │ ├── faSpinner.d.ts │ │ │ │ │ ├── faSpinner.js │ │ │ │ │ ├── faSplotch.d.ts │ │ │ │ │ ├── faSplotch.js │ │ │ │ │ ├── faSprayCan.d.ts │ │ │ │ │ ├── faSprayCan.js │ │ │ │ │ ├── faSquare.d.ts │ │ │ │ │ ├── faSquare.js │ │ │ │ │ ├── faSquareFull.d.ts │ │ │ │ │ ├── faSquareFull.js │ │ │ │ │ ├── faSquareRootAlt.d.ts │ │ │ │ │ ├── faSquareRootAlt.js │ │ │ │ │ ├── faStamp.d.ts │ │ │ │ │ ├── faStamp.js │ │ │ │ │ ├── faStar.d.ts │ │ │ │ │ ├── faStar.js │ │ │ │ │ ├── faStarAndCrescent.d.ts │ │ │ │ │ ├── faStarAndCrescent.js │ │ │ │ │ ├── faStarHalf.d.ts │ │ │ │ │ ├── faStarHalf.js │ │ │ │ │ ├── faStarHalfAlt.d.ts │ │ │ │ │ ├── faStarHalfAlt.js │ │ │ │ │ ├── faStarOfDavid.d.ts │ │ │ │ │ ├── faStarOfDavid.js │ │ │ │ │ ├── faStarOfLife.d.ts │ │ │ │ │ ├── faStarOfLife.js │ │ │ │ │ ├── faStepBackward.d.ts │ │ │ │ │ ├── faStepBackward.js │ │ │ │ │ ├── faStepForward.d.ts │ │ │ │ │ ├── faStepForward.js │ │ │ │ │ ├── faStethoscope.d.ts │ │ │ │ │ ├── faStethoscope.js │ │ │ │ │ ├── faStickyNote.d.ts │ │ │ │ │ ├── faStickyNote.js │ │ │ │ │ ├── faStop.d.ts │ │ │ │ │ ├── faStop.js │ │ │ │ │ ├── faStopCircle.d.ts │ │ │ │ │ ├── faStopCircle.js │ │ │ │ │ ├── faStopwatch.d.ts │ │ │ │ │ ├── faStopwatch.js │ │ │ │ │ ├── faStopwatch20.d.ts │ │ │ │ │ ├── faStopwatch20.js │ │ │ │ │ ├── faStore.d.ts │ │ │ │ │ ├── faStore.js │ │ │ │ │ ├── faStoreAlt.d.ts │ │ │ │ │ ├── faStoreAlt.js │ │ │ │ │ ├── faStoreAltSlash.d.ts │ │ │ │ │ ├── faStoreAltSlash.js │ │ │ │ │ ├── faStoreSlash.d.ts │ │ │ │ │ ├── faStoreSlash.js │ │ │ │ │ ├── faStream.d.ts │ │ │ │ │ ├── faStream.js │ │ │ │ │ ├── faStreetView.d.ts │ │ │ │ │ ├── faStreetView.js │ │ │ │ │ ├── faStrikethrough.d.ts │ │ │ │ │ ├── faStrikethrough.js │ │ │ │ │ ├── faStroopwafel.d.ts │ │ │ │ │ ├── faStroopwafel.js │ │ │ │ │ ├── faSubscript.d.ts │ │ │ │ │ ├── faSubscript.js │ │ │ │ │ ├── faSubway.d.ts │ │ │ │ │ ├── faSubway.js │ │ │ │ │ ├── faSuitcase.d.ts │ │ │ │ │ ├── faSuitcase.js │ │ │ │ │ ├── faSuitcaseRolling.d.ts │ │ │ │ │ ├── faSuitcaseRolling.js │ │ │ │ │ ├── faSun.d.ts │ │ │ │ │ ├── faSun.js │ │ │ │ │ ├── faSuperscript.d.ts │ │ │ │ │ ├── faSuperscript.js │ │ │ │ │ ├── faSurprise.d.ts │ │ │ │ │ ├── faSurprise.js │ │ │ │ │ ├── faSwatchbook.d.ts │ │ │ │ │ ├── faSwatchbook.js │ │ │ │ │ ├── faSwimmer.d.ts │ │ │ │ │ ├── faSwimmer.js │ │ │ │ │ ├── faSwimmingPool.d.ts │ │ │ │ │ ├── faSwimmingPool.js │ │ │ │ │ ├── faSynagogue.d.ts │ │ │ │ │ ├── faSynagogue.js │ │ │ │ │ ├── faSync.d.ts │ │ │ │ │ ├── faSync.js │ │ │ │ │ ├── faSyncAlt.d.ts │ │ │ │ │ ├── faSyncAlt.js │ │ │ │ │ ├── faSyringe.d.ts │ │ │ │ │ ├── faSyringe.js │ │ │ │ │ ├── faTable.d.ts │ │ │ │ │ ├── faTable.js │ │ │ │ │ ├── faTableTennis.d.ts │ │ │ │ │ ├── faTableTennis.js │ │ │ │ │ ├── faTablet.d.ts │ │ │ │ │ ├── faTablet.js │ │ │ │ │ ├── faTabletAlt.d.ts │ │ │ │ │ ├── faTabletAlt.js │ │ │ │ │ ├── faTablets.d.ts │ │ │ │ │ ├── faTablets.js │ │ │ │ │ ├── faTachometerAlt.d.ts │ │ │ │ │ ├── faTachometerAlt.js │ │ │ │ │ ├── faTag.d.ts │ │ │ │ │ ├── faTag.js │ │ │ │ │ ├── faTags.d.ts │ │ │ │ │ ├── faTags.js │ │ │ │ │ ├── faTape.d.ts │ │ │ │ │ ├── faTape.js │ │ │ │ │ ├── faTasks.d.ts │ │ │ │ │ ├── faTasks.js │ │ │ │ │ ├── faTaxi.d.ts │ │ │ │ │ ├── faTaxi.js │ │ │ │ │ ├── faTeeth.d.ts │ │ │ │ │ ├── faTeeth.js │ │ │ │ │ ├── faTeethOpen.d.ts │ │ │ │ │ ├── faTeethOpen.js │ │ │ │ │ ├── faTemperatureHigh.d.ts │ │ │ │ │ ├── faTemperatureHigh.js │ │ │ │ │ ├── faTemperatureLow.d.ts │ │ │ │ │ ├── faTemperatureLow.js │ │ │ │ │ ├── faTenge.d.ts │ │ │ │ │ ├── faTenge.js │ │ │ │ │ ├── faTerminal.d.ts │ │ │ │ │ ├── faTerminal.js │ │ │ │ │ ├── faTextHeight.d.ts │ │ │ │ │ ├── faTextHeight.js │ │ │ │ │ ├── faTextWidth.d.ts │ │ │ │ │ ├── faTextWidth.js │ │ │ │ │ ├── faTh.d.ts │ │ │ │ │ ├── faTh.js │ │ │ │ │ ├── faThLarge.d.ts │ │ │ │ │ ├── faThLarge.js │ │ │ │ │ ├── faThList.d.ts │ │ │ │ │ ├── faThList.js │ │ │ │ │ ├── faTheaterMasks.d.ts │ │ │ │ │ ├── faTheaterMasks.js │ │ │ │ │ ├── faThermometer.d.ts │ │ │ │ │ ├── faThermometer.js │ │ │ │ │ ├── faThermometerEmpty.d.ts │ │ │ │ │ ├── faThermometerEmpty.js │ │ │ │ │ ├── faThermometerFull.d.ts │ │ │ │ │ ├── faThermometerFull.js │ │ │ │ │ ├── faThermometerHalf.d.ts │ │ │ │ │ ├── faThermometerHalf.js │ │ │ │ │ ├── faThermometerQuarter.d.ts │ │ │ │ │ ├── faThermometerQuarter.js │ │ │ │ │ ├── faThermometerThreeQuarters.d.ts │ │ │ │ │ ├── faThermometerThreeQuarters.js │ │ │ │ │ ├── faThumbsDown.d.ts │ │ │ │ │ ├── faThumbsDown.js │ │ │ │ │ ├── faThumbsUp.d.ts │ │ │ │ │ ├── faThumbsUp.js │ │ │ │ │ ├── faThumbtack.d.ts │ │ │ │ │ ├── faThumbtack.js │ │ │ │ │ ├── faTicketAlt.d.ts │ │ │ │ │ ├── faTicketAlt.js │ │ │ │ │ ├── faTimes.d.ts │ │ │ │ │ ├── faTimes.js │ │ │ │ │ ├── faTimesCircle.d.ts │ │ │ │ │ ├── faTimesCircle.js │ │ │ │ │ ├── faTint.d.ts │ │ │ │ │ ├── faTint.js │ │ │ │ │ ├── faTintSlash.d.ts │ │ │ │ │ ├── faTintSlash.js │ │ │ │ │ ├── faTired.d.ts │ │ │ │ │ ├── faTired.js │ │ │ │ │ ├── faToggleOff.d.ts │ │ │ │ │ ├── faToggleOff.js │ │ │ │ │ ├── faToggleOn.d.ts │ │ │ │ │ ├── faToggleOn.js │ │ │ │ │ ├── faToilet.d.ts │ │ │ │ │ ├── faToilet.js │ │ │ │ │ ├── faToiletPaper.d.ts │ │ │ │ │ ├── faToiletPaper.js │ │ │ │ │ ├── faToiletPaperSlash.d.ts │ │ │ │ │ ├── faToiletPaperSlash.js │ │ │ │ │ ├── faToolbox.d.ts │ │ │ │ │ ├── faToolbox.js │ │ │ │ │ ├── faTools.d.ts │ │ │ │ │ ├── faTools.js │ │ │ │ │ ├── faTooth.d.ts │ │ │ │ │ ├── faTooth.js │ │ │ │ │ ├── faTorah.d.ts │ │ │ │ │ ├── faTorah.js │ │ │ │ │ ├── faToriiGate.d.ts │ │ │ │ │ ├── faToriiGate.js │ │ │ │ │ ├── faTractor.d.ts │ │ │ │ │ ├── faTractor.js │ │ │ │ │ ├── faTrademark.d.ts │ │ │ │ │ ├── faTrademark.js │ │ │ │ │ ├── faTrafficLight.d.ts │ │ │ │ │ ├── faTrafficLight.js │ │ │ │ │ ├── faTrailer.d.ts │ │ │ │ │ ├── faTrailer.js │ │ │ │ │ ├── faTrain.d.ts │ │ │ │ │ ├── faTrain.js │ │ │ │ │ ├── faTram.d.ts │ │ │ │ │ ├── faTram.js │ │ │ │ │ ├── faTransgender.d.ts │ │ │ │ │ ├── faTransgender.js │ │ │ │ │ ├── faTransgenderAlt.d.ts │ │ │ │ │ ├── faTransgenderAlt.js │ │ │ │ │ ├── faTrash.d.ts │ │ │ │ │ ├── faTrash.js │ │ │ │ │ ├── faTrashAlt.d.ts │ │ │ │ │ ├── faTrashAlt.js │ │ │ │ │ ├── faTrashRestore.d.ts │ │ │ │ │ ├── faTrashRestore.js │ │ │ │ │ ├── faTrashRestoreAlt.d.ts │ │ │ │ │ ├── faTrashRestoreAlt.js │ │ │ │ │ ├── faTree.d.ts │ │ │ │ │ ├── faTree.js │ │ │ │ │ ├── faTrophy.d.ts │ │ │ │ │ ├── faTrophy.js │ │ │ │ │ ├── faTruck.d.ts │ │ │ │ │ ├── faTruck.js │ │ │ │ │ ├── faTruckLoading.d.ts │ │ │ │ │ ├── faTruckLoading.js │ │ │ │ │ ├── faTruckMonster.d.ts │ │ │ │ │ ├── faTruckMonster.js │ │ │ │ │ ├── faTruckMoving.d.ts │ │ │ │ │ ├── faTruckMoving.js │ │ │ │ │ ├── faTruckPickup.d.ts │ │ │ │ │ ├── faTruckPickup.js │ │ │ │ │ ├── faTshirt.d.ts │ │ │ │ │ ├── faTshirt.js │ │ │ │ │ ├── faTty.d.ts │ │ │ │ │ ├── faTty.js │ │ │ │ │ ├── faTv.d.ts │ │ │ │ │ ├── faTv.js │ │ │ │ │ ├── faUmbrella.d.ts │ │ │ │ │ ├── faUmbrella.js │ │ │ │ │ ├── faUmbrellaBeach.d.ts │ │ │ │ │ ├── faUmbrellaBeach.js │ │ │ │ │ ├── faUnderline.d.ts │ │ │ │ │ ├── faUnderline.js │ │ │ │ │ ├── faUndo.d.ts │ │ │ │ │ ├── faUndo.js │ │ │ │ │ ├── faUndoAlt.d.ts │ │ │ │ │ ├── faUndoAlt.js │ │ │ │ │ ├── faUniversalAccess.d.ts │ │ │ │ │ ├── faUniversalAccess.js │ │ │ │ │ ├── faUniversity.d.ts │ │ │ │ │ ├── faUniversity.js │ │ │ │ │ ├── faUnlink.d.ts │ │ │ │ │ ├── faUnlink.js │ │ │ │ │ ├── faUnlock.d.ts │ │ │ │ │ ├── faUnlock.js │ │ │ │ │ ├── faUnlockAlt.d.ts │ │ │ │ │ ├── faUnlockAlt.js │ │ │ │ │ ├── faUpload.d.ts │ │ │ │ │ ├── faUpload.js │ │ │ │ │ ├── faUser.d.ts │ │ │ │ │ ├── faUser.js │ │ │ │ │ ├── faUserAlt.d.ts │ │ │ │ │ ├── faUserAlt.js │ │ │ │ │ ├── faUserAltSlash.d.ts │ │ │ │ │ ├── faUserAltSlash.js │ │ │ │ │ ├── faUserAstronaut.d.ts │ │ │ │ │ ├── faUserAstronaut.js │ │ │ │ │ ├── faUserCheck.d.ts │ │ │ │ │ ├── faUserCheck.js │ │ │ │ │ ├── faUserCircle.d.ts │ │ │ │ │ ├── faUserCircle.js │ │ │ │ │ ├── faUserClock.d.ts │ │ │ │ │ ├── faUserClock.js │ │ │ │ │ ├── faUserCog.d.ts │ │ │ │ │ ├── faUserCog.js │ │ │ │ │ ├── faUserEdit.d.ts │ │ │ │ │ ├── faUserEdit.js │ │ │ │ │ ├── faUserFriends.d.ts │ │ │ │ │ ├── faUserFriends.js │ │ │ │ │ ├── faUserGraduate.d.ts │ │ │ │ │ ├── faUserGraduate.js │ │ │ │ │ ├── faUserInjured.d.ts │ │ │ │ │ ├── faUserInjured.js │ │ │ │ │ ├── faUserLock.d.ts │ │ │ │ │ ├── faUserLock.js │ │ │ │ │ ├── faUserMd.d.ts │ │ │ │ │ ├── faUserMd.js │ │ │ │ │ ├── faUserMinus.d.ts │ │ │ │ │ ├── faUserMinus.js │ │ │ │ │ ├── faUserNinja.d.ts │ │ │ │ │ ├── faUserNinja.js │ │ │ │ │ ├── faUserNurse.d.ts │ │ │ │ │ ├── faUserNurse.js │ │ │ │ │ ├── faUserPlus.d.ts │ │ │ │ │ ├── faUserPlus.js │ │ │ │ │ ├── faUserSecret.d.ts │ │ │ │ │ ├── faUserSecret.js │ │ │ │ │ ├── faUserShield.d.ts │ │ │ │ │ ├── faUserShield.js │ │ │ │ │ ├── faUserSlash.d.ts │ │ │ │ │ ├── faUserSlash.js │ │ │ │ │ ├── faUserTag.d.ts │ │ │ │ │ ├── faUserTag.js │ │ │ │ │ ├── faUserTie.d.ts │ │ │ │ │ ├── faUserTie.js │ │ │ │ │ ├── faUserTimes.d.ts │ │ │ │ │ ├── faUserTimes.js │ │ │ │ │ ├── faUsers.d.ts │ │ │ │ │ ├── faUsers.js │ │ │ │ │ ├── faUsersCog.d.ts │ │ │ │ │ ├── faUsersCog.js │ │ │ │ │ ├── faUsersSlash.d.ts │ │ │ │ │ ├── faUsersSlash.js │ │ │ │ │ ├── faUtensilSpoon.d.ts │ │ │ │ │ ├── faUtensilSpoon.js │ │ │ │ │ ├── faUtensils.d.ts │ │ │ │ │ ├── faUtensils.js │ │ │ │ │ ├── faVectorSquare.d.ts │ │ │ │ │ ├── faVectorSquare.js │ │ │ │ │ ├── faVenus.d.ts │ │ │ │ │ ├── faVenus.js │ │ │ │ │ ├── faVenusDouble.d.ts │ │ │ │ │ ├── faVenusDouble.js │ │ │ │ │ ├── faVenusMars.d.ts │ │ │ │ │ ├── faVenusMars.js │ │ │ │ │ ├── faVest.d.ts │ │ │ │ │ ├── faVest.js │ │ │ │ │ ├── faVestPatches.d.ts │ │ │ │ │ ├── faVestPatches.js │ │ │ │ │ ├── faVial.d.ts │ │ │ │ │ ├── faVial.js │ │ │ │ │ ├── faVials.d.ts │ │ │ │ │ ├── faVials.js │ │ │ │ │ ├── faVideo.d.ts │ │ │ │ │ ├── faVideo.js │ │ │ │ │ ├── faVideoSlash.d.ts │ │ │ │ │ ├── faVideoSlash.js │ │ │ │ │ ├── faVihara.d.ts │ │ │ │ │ ├── faVihara.js │ │ │ │ │ ├── faVirus.d.ts │ │ │ │ │ ├── faVirus.js │ │ │ │ │ ├── faVirusSlash.d.ts │ │ │ │ │ ├── faVirusSlash.js │ │ │ │ │ ├── faViruses.d.ts │ │ │ │ │ ├── faViruses.js │ │ │ │ │ ├── faVoicemail.d.ts │ │ │ │ │ ├── faVoicemail.js │ │ │ │ │ ├── faVolleyballBall.d.ts │ │ │ │ │ ├── faVolleyballBall.js │ │ │ │ │ ├── faVolumeDown.d.ts │ │ │ │ │ ├── faVolumeDown.js │ │ │ │ │ ├── faVolumeMute.d.ts │ │ │ │ │ ├── faVolumeMute.js │ │ │ │ │ ├── faVolumeOff.d.ts │ │ │ │ │ ├── faVolumeOff.js │ │ │ │ │ ├── faVolumeUp.d.ts │ │ │ │ │ ├── faVolumeUp.js │ │ │ │ │ ├── faVoteYea.d.ts │ │ │ │ │ ├── faVoteYea.js │ │ │ │ │ ├── faVrCardboard.d.ts │ │ │ │ │ ├── faVrCardboard.js │ │ │ │ │ ├── faWalking.d.ts │ │ │ │ │ ├── faWalking.js │ │ │ │ │ ├── faWallet.d.ts │ │ │ │ │ ├── faWallet.js │ │ │ │ │ ├── faWarehouse.d.ts │ │ │ │ │ ├── faWarehouse.js │ │ │ │ │ ├── faWater.d.ts │ │ │ │ │ ├── faWater.js │ │ │ │ │ ├── faWaveSquare.d.ts │ │ │ │ │ ├── faWaveSquare.js │ │ │ │ │ ├── faWeight.d.ts │ │ │ │ │ ├── faWeight.js │ │ │ │ │ ├── faWeightHanging.d.ts │ │ │ │ │ ├── faWeightHanging.js │ │ │ │ │ ├── faWheelchair.d.ts │ │ │ │ │ ├── faWheelchair.js │ │ │ │ │ ├── faWifi.d.ts │ │ │ │ │ ├── faWifi.js │ │ │ │ │ ├── faWind.d.ts │ │ │ │ │ ├── faWind.js │ │ │ │ │ ├── faWindowClose.d.ts │ │ │ │ │ ├── faWindowClose.js │ │ │ │ │ ├── faWindowMaximize.d.ts │ │ │ │ │ ├── faWindowMaximize.js │ │ │ │ │ ├── faWindowMinimize.d.ts │ │ │ │ │ ├── faWindowMinimize.js │ │ │ │ │ ├── faWindowRestore.d.ts │ │ │ │ │ ├── faWindowRestore.js │ │ │ │ │ ├── faWineBottle.d.ts │ │ │ │ │ ├── faWineBottle.js │ │ │ │ │ ├── faWineGlass.d.ts │ │ │ │ │ ├── faWineGlass.js │ │ │ │ │ ├── faWineGlassAlt.d.ts │ │ │ │ │ ├── faWineGlassAlt.js │ │ │ │ │ ├── faWonSign.d.ts │ │ │ │ │ ├── faWonSign.js │ │ │ │ │ ├── faWrench.d.ts │ │ │ │ │ ├── faWrench.js │ │ │ │ │ ├── faXRay.d.ts │ │ │ │ │ ├── faXRay.js │ │ │ │ │ ├── faYenSign.d.ts │ │ │ │ │ ├── faYenSign.js │ │ │ │ │ ├── faYinYang.d.ts │ │ │ │ │ ├── faYinYang.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.es.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── 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 │ │ │ ├── otfs │ │ │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ │ │ ├── Font Awesome 5 Free-Regular-400.otf │ │ │ │ ├── Font Awesome 5 Free-Solid-900.otf │ │ │ │ └── README.md │ │ │ ├── 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 │ │ │ └── bootstrap │ │ │ ├── .babelrc.js │ │ │ ├── .browserslistrc │ │ │ ├── .bundlewatch.config.json │ │ │ ├── .editorconfig │ │ │ ├── .eslintignore │ │ │ ├── .eslintrc.json │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ ├── CODEOWNERS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── ISSUE_TEMPLATE │ │ │ │ ├── bug_report.md │ │ │ │ └── feature_request.md │ │ │ ├── SUPPORT.md │ │ │ └── workflows │ │ │ │ ├── browserstack.yml │ │ │ │ ├── bundlewatch.yml │ │ │ │ ├── codeql.yml │ │ │ │ ├── css.yml │ │ │ │ ├── dart-sass.yml │ │ │ │ ├── docs.yml │ │ │ │ ├── js.yml │ │ │ │ └── lint.yml │ │ │ ├── .gitignore │ │ │ ├── .stylelintignore │ │ │ ├── .stylelintrc │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── build │ │ │ ├── .eslintrc.json │ │ │ ├── banner.js │ │ │ ├── build-plugins.js │ │ │ ├── change-version.js │ │ │ ├── generate-sri.js │ │ │ ├── postcss.config.js │ │ │ ├── rollup.config.js │ │ │ ├── svgo.yml │ │ │ ├── vnu-jar.js │ │ │ └── zip-examples.js │ │ │ ├── composer.json │ │ │ ├── config.yml │ │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── js │ │ │ ├── dist │ │ │ │ ├── alert.js │ │ │ │ ├── alert.js.map │ │ │ │ ├── button.js │ │ │ │ ├── button.js.map │ │ │ │ ├── carousel.js │ │ │ │ ├── carousel.js.map │ │ │ │ ├── collapse.js │ │ │ │ ├── collapse.js.map │ │ │ │ ├── dropdown.js │ │ │ │ ├── dropdown.js.map │ │ │ │ ├── index.js │ │ │ │ ├── modal.js │ │ │ │ ├── modal.js.map │ │ │ │ ├── popover.js │ │ │ │ ├── popover.js.map │ │ │ │ ├── scrollspy.js │ │ │ │ ├── scrollspy.js.map │ │ │ │ ├── tab.js │ │ │ │ ├── tab.js.map │ │ │ │ ├── toast.js │ │ │ │ ├── toast.js.map │ │ │ │ ├── tooltip.js │ │ │ │ ├── tooltip.js.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ ├── index.js │ │ │ ├── src │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tools │ │ │ │ │ └── sanitizer.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ │ └── tests │ │ │ │ ├── README.md │ │ │ │ ├── browsers.js │ │ │ │ ├── index.html │ │ │ │ ├── integration │ │ │ │ ├── bundle.js │ │ │ │ ├── index.html │ │ │ │ └── rollup.bundle.js │ │ │ │ ├── karma.conf.js │ │ │ │ ├── unit │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── alert.js │ │ │ │ ├── button.js │ │ │ │ ├── carousel.js │ │ │ │ ├── collapse.js │ │ │ │ ├── dropdown.js │ │ │ │ ├── modal.js │ │ │ │ ├── popover.js │ │ │ │ ├── scrollspy.js │ │ │ │ ├── tab.js │ │ │ │ ├── toast.js │ │ │ │ ├── tooltip.js │ │ │ │ └── util.js │ │ │ │ └── visual │ │ │ │ ├── alert.html │ │ │ │ ├── button.html │ │ │ │ ├── carousel.html │ │ │ │ ├── collapse.html │ │ │ │ ├── dropdown.html │ │ │ │ ├── modal.html │ │ │ │ ├── popover.html │ │ │ │ ├── scrollspy.html │ │ │ │ ├── tab.html │ │ │ │ ├── toast.html │ │ │ │ └── tooltip.html │ │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.nuspec │ │ │ ├── bootstrap.png │ │ │ └── bootstrap.sass.nuspec │ │ │ ├── package.js │ │ │ ├── package.json │ │ │ ├── scss │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _interactions.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ └── site │ │ │ ├── .eslintrc.json │ │ │ ├── assets │ │ │ ├── js │ │ │ │ ├── application.js │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ ├── search.js │ │ │ │ └── vendor │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ ├── bs-custom-file-input.min.js │ │ │ │ │ └── clipboard.min.js │ │ │ └── scss │ │ │ │ ├── _ads.scss │ │ │ │ ├── _algolia.scss │ │ │ │ ├── _anchor.scss │ │ │ │ ├── _brand.scss │ │ │ │ ├── _browser-bugs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _callouts.scss │ │ │ │ ├── _clipboard-js.scss │ │ │ │ ├── _colors.scss │ │ │ │ ├── _component-examples.scss │ │ │ │ ├── _content.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _masthead.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _placeholder-img.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _skippy.scss │ │ │ │ ├── _syntax.scss │ │ │ │ ├── _toc.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── docs.scss │ │ │ ├── content │ │ │ └── docs │ │ │ │ ├── 4.6 │ │ │ │ ├── _index.html │ │ │ │ ├── about │ │ │ │ │ ├── brand.md │ │ │ │ │ ├── license.md │ │ │ │ │ ├── overview.md │ │ │ │ │ ├── team.md │ │ │ │ │ └── translations.md │ │ │ │ ├── browser-bugs.md │ │ │ │ ├── components │ │ │ │ │ ├── alerts.md │ │ │ │ │ ├── badge.md │ │ │ │ │ ├── breadcrumb.md │ │ │ │ │ ├── button-group.md │ │ │ │ │ ├── buttons.md │ │ │ │ │ ├── card.md │ │ │ │ │ ├── carousel.md │ │ │ │ │ ├── collapse.md │ │ │ │ │ ├── dropdowns.md │ │ │ │ │ ├── forms.md │ │ │ │ │ ├── input-group.md │ │ │ │ │ ├── jumbotron.md │ │ │ │ │ ├── list-group.md │ │ │ │ │ ├── media-object.md │ │ │ │ │ ├── modal.md │ │ │ │ │ ├── navbar.md │ │ │ │ │ ├── navs.md │ │ │ │ │ ├── pagination.md │ │ │ │ │ ├── popovers.md │ │ │ │ │ ├── progress.md │ │ │ │ │ ├── scrollspy.md │ │ │ │ │ ├── spinners.md │ │ │ │ │ ├── toasts.md │ │ │ │ │ └── tooltips.md │ │ │ │ ├── content │ │ │ │ │ ├── code.md │ │ │ │ │ ├── figures.md │ │ │ │ │ ├── images.md │ │ │ │ │ ├── reboot.md │ │ │ │ │ ├── tables.md │ │ │ │ │ └── typography.md │ │ │ │ ├── examples │ │ │ │ │ ├── .stylelintrc │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── album │ │ │ │ │ │ ├── album.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── blog │ │ │ │ │ │ ├── blog.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── carousel │ │ │ │ │ │ ├── carousel.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── checkout │ │ │ │ │ │ ├── form-validation.css │ │ │ │ │ │ ├── form-validation.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── cover │ │ │ │ │ │ ├── cover.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── dashboard │ │ │ │ │ │ ├── dashboard.css │ │ │ │ │ │ ├── dashboard.js │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── floating-labels │ │ │ │ │ │ ├── floating-labels.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── grid │ │ │ │ │ │ ├── grid.css │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ ├── navbar-bottom │ │ │ │ │ │ └── index.html │ │ │ │ │ ├── navbar-fixed │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top-fixed.css │ │ │ │ │ ├── navbar-static │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar-top.css │ │ │ │ │ ├── navbars │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── offcanvas │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── offcanvas.css │ │ │ │ │ │ └── offcanvas.js │ │ │ │ │ ├── pricing │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── pricing.css │ │ │ │ │ ├── product │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── product.css │ │ │ │ │ ├── sign-in │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── signin.css │ │ │ │ │ ├── starter-template │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── sticky-footer-navbar │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer-navbar.css │ │ │ │ │ └── sticky-footer │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── sticky-footer.css │ │ │ │ ├── extend │ │ │ │ │ ├── approach.md │ │ │ │ │ └── icons.md │ │ │ │ ├── getting-started │ │ │ │ │ ├── accessibility.md │ │ │ │ │ ├── best-practices.md │ │ │ │ │ ├── browsers-devices.md │ │ │ │ │ ├── build-tools.md │ │ │ │ │ ├── contents.md │ │ │ │ │ ├── download.md │ │ │ │ │ ├── introduction.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ ├── theming.md │ │ │ │ │ └── webpack.md │ │ │ │ ├── layout │ │ │ │ │ ├── grid.md │ │ │ │ │ ├── overview.md │ │ │ │ │ └── utilities-for-layout.md │ │ │ │ ├── migration.md │ │ │ │ └── utilities │ │ │ │ │ ├── borders.md │ │ │ │ │ ├── clearfix.md │ │ │ │ │ ├── close-icon.md │ │ │ │ │ ├── colors.md │ │ │ │ │ ├── display.md │ │ │ │ │ ├── embed.md │ │ │ │ │ ├── flex.md │ │ │ │ │ ├── float.md │ │ │ │ │ ├── image-replacement.md │ │ │ │ │ ├── interactions.md │ │ │ │ │ ├── overflow.md │ │ │ │ │ ├── position.md │ │ │ │ │ ├── screen-readers.md │ │ │ │ │ ├── shadows.md │ │ │ │ │ ├── sizing.md │ │ │ │ │ ├── spacing.md │ │ │ │ │ ├── stretched-link.md │ │ │ │ │ ├── text.md │ │ │ │ │ ├── vertical-align.md │ │ │ │ │ └── visibility.md │ │ │ │ ├── _index.html │ │ │ │ └── versions.md │ │ │ ├── data │ │ │ ├── breakpoints.yml │ │ │ ├── browser-bugs.yml │ │ │ ├── browser-features.yml │ │ │ ├── colors.yml │ │ │ ├── core-team.yml │ │ │ ├── docs-versions.yml │ │ │ ├── examples.yml │ │ │ ├── grays.yml │ │ │ ├── sidebar.yml │ │ │ ├── theme-colors.yml │ │ │ └── translations.yml │ │ │ ├── layouts │ │ │ ├── _default │ │ │ │ ├── docs.html │ │ │ │ ├── examples.html │ │ │ │ ├── home.html │ │ │ │ ├── redirect.html │ │ │ │ └── single.html │ │ │ ├── alias.html │ │ │ ├── partials │ │ │ │ ├── ads.html │ │ │ │ ├── analytics.html │ │ │ │ ├── bugify.html │ │ │ │ ├── callout-danger-async-methods.md │ │ │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ │ │ ├── callout-info-npm-starter.md │ │ │ │ ├── callout-info-prefersreducedmotion.md │ │ │ │ ├── callout-info-sanitizer.md │ │ │ │ ├── callout-warning-color-assistive-technologies.md │ │ │ │ ├── docs-navbar.html │ │ │ │ ├── docs-sidebar.html │ │ │ │ ├── favicons.html │ │ │ │ ├── footer.html │ │ │ │ ├── header.html │ │ │ │ ├── home │ │ │ │ │ ├── masthead-followup.html │ │ │ │ │ └── masthead.html │ │ │ │ ├── icons │ │ │ │ │ ├── bootstrap-stack.svg │ │ │ │ │ ├── bootstrap.svg │ │ │ │ │ ├── circle-square.svg │ │ │ │ │ ├── cloud-fill.svg │ │ │ │ │ ├── code.svg │ │ │ │ │ ├── droplet-fill.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── menu.svg │ │ │ │ │ ├── opencollective.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ └── twitter.svg │ │ │ │ ├── scripts.html │ │ │ │ ├── skippy.html │ │ │ │ ├── social.html │ │ │ │ └── stylesheet.html │ │ │ ├── robots.txt │ │ │ ├── shortcodes │ │ │ │ ├── callout.html │ │ │ │ ├── docsref.html │ │ │ │ ├── example.html │ │ │ │ ├── markdown.html │ │ │ │ ├── param.html │ │ │ │ ├── partial.html │ │ │ │ ├── placeholder.html │ │ │ │ └── year.html │ │ │ └── sitemap.xml │ │ │ └── static │ │ │ ├── CNAME │ │ │ ├── docs │ │ │ └── 4.6 │ │ │ │ └── assets │ │ │ │ ├── brand │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ ├── bootstrap-social.png │ │ │ │ └── bootstrap-solid.svg │ │ │ │ ├── img │ │ │ │ ├── bootstrap-icons.png │ │ │ │ ├── bootstrap-icons@2x.png │ │ │ │ ├── bootstrap-themes-collage.png │ │ │ │ ├── bootstrap-themes-collage@2x.png │ │ │ │ ├── bootstrap-themes.png │ │ │ │ ├── bootstrap-themes@2x.png │ │ │ │ ├── examples │ │ │ │ │ ├── album.png │ │ │ │ │ ├── album@2x.png │ │ │ │ │ ├── blog.png │ │ │ │ │ ├── blog@2x.png │ │ │ │ │ ├── carousel.png │ │ │ │ │ ├── carousel@2x.png │ │ │ │ │ ├── checkout.png │ │ │ │ │ ├── checkout@2x.png │ │ │ │ │ ├── cover.png │ │ │ │ │ ├── cover@2x.png │ │ │ │ │ ├── dashboard.png │ │ │ │ │ ├── dashboard@2x.png │ │ │ │ │ ├── floating-labels.png │ │ │ │ │ ├── floating-labels@2x.png │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── grid@2x.png │ │ │ │ │ ├── jumbotron.png │ │ │ │ │ ├── jumbotron@2x.png │ │ │ │ │ ├── navbar-bottom.png │ │ │ │ │ ├── navbar-bottom@2x.png │ │ │ │ │ ├── navbar-fixed.png │ │ │ │ │ ├── navbar-fixed@2x.png │ │ │ │ │ ├── navbar-static.png │ │ │ │ │ ├── navbar-static@2x.png │ │ │ │ │ ├── navbars.png │ │ │ │ │ ├── navbars@2x.png │ │ │ │ │ ├── offcanvas.png │ │ │ │ │ ├── offcanvas@2x.png │ │ │ │ │ ├── pricing.png │ │ │ │ │ ├── pricing@2x.png │ │ │ │ │ ├── product.png │ │ │ │ │ ├── product@2x.png │ │ │ │ │ ├── sign-in.png │ │ │ │ │ ├── sign-in@2x.png │ │ │ │ │ ├── starter-template.png │ │ │ │ │ ├── starter-template@2x.png │ │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ │ ├── sticky-footer-navbar@2x.png │ │ │ │ │ ├── sticky-footer.png │ │ │ │ │ └── sticky-footer@2x.png │ │ │ │ └── favicons │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ │ └── js │ │ │ │ └── vendor │ │ │ │ └── jquery.slim.min.js │ │ │ └── sw.js │ │ ├── config.toml │ │ ├── dependencies │ │ ├── assets │ │ │ └── bootstrap │ │ │ │ ├── README.txt │ │ │ │ └── scss │ │ │ │ └── _vendor │ │ │ │ ├── README.txt │ │ │ │ └── _rfs.scss │ │ ├── config.toml │ │ └── go.mod │ │ ├── go.mod │ │ ├── go.sum │ │ ├── i18n │ │ ├── ar.toml │ │ ├── bg.toml │ │ ├── bn.toml │ │ ├── de.toml │ │ ├── en.toml │ │ ├── es.toml │ │ ├── et.toml │ │ ├── fa.toml │ │ ├── fr.toml │ │ ├── hu.toml │ │ ├── it.toml │ │ ├── ja.toml │ │ ├── ko.toml │ │ ├── nl.toml │ │ ├── no.toml │ │ ├── pl.toml │ │ ├── pt-br.toml │ │ ├── ru.toml │ │ ├── tr.toml │ │ └── zh-cn.toml │ │ ├── images │ │ ├── screenshot.png │ │ └── tn.png │ │ ├── layouts │ │ ├── 404.html │ │ ├── _default │ │ │ ├── baseof.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ ├── list.rss.xml │ │ │ ├── search.html │ │ │ ├── single.html │ │ │ ├── taxonomy.html │ │ │ └── terms.html │ │ ├── blog │ │ │ ├── baseof.html │ │ │ ├── baseof.print.html │ │ │ ├── content.html │ │ │ ├── list.html │ │ │ ├── section.print.html │ │ │ └── single.html │ │ ├── community │ │ │ └── list.html │ │ ├── docs │ │ │ ├── baseof.html │ │ │ ├── baseof.print.html │ │ │ ├── list.html │ │ │ ├── list.print.html │ │ │ └── single.html │ │ ├── home.html │ │ ├── partials │ │ │ ├── breadcrumb.html │ │ │ ├── community_links.html │ │ │ ├── disqus-comment.html │ │ │ ├── favicons.html │ │ │ ├── featured-image.html │ │ │ ├── feedback.html │ │ │ ├── footer.html │ │ │ ├── head-css.html │ │ │ ├── head.html │ │ │ ├── hooks │ │ │ │ ├── body-end.html │ │ │ │ └── head-end.html │ │ │ ├── navbar-lang-selector.html │ │ │ ├── navbar-version-selector.html │ │ │ ├── navbar.html │ │ │ ├── outputformat.html │ │ │ ├── page-meta-lastmod.html │ │ │ ├── page-meta-links.html │ │ │ ├── pager.html │ │ │ ├── print │ │ │ │ ├── content-blog.html │ │ │ │ ├── content.html │ │ │ │ ├── page-heading.html │ │ │ │ ├── render.html │ │ │ │ ├── toc-li-blog.html │ │ │ │ └── toc-li.html │ │ │ ├── reading-time.html │ │ │ ├── scripts.html │ │ │ ├── search-input.html │ │ │ ├── section-index.html │ │ │ ├── sidebar-tree.html │ │ │ ├── sidebar.html │ │ │ ├── taxonomy_terms_article.html │ │ │ ├── taxonomy_terms_article_wrapper.html │ │ │ ├── taxonomy_terms_cloud.html │ │ │ ├── taxonomy_terms_clouds.html │ │ │ ├── toc.html │ │ │ └── version-banner.html │ │ ├── shortcodes │ │ │ ├── alert.html │ │ │ ├── blocks │ │ │ │ ├── cover.html │ │ │ │ ├── feature.html │ │ │ │ ├── lead.html │ │ │ │ ├── link-down.html │ │ │ │ └── section.html │ │ │ ├── card-code.html │ │ │ ├── card.html │ │ │ ├── cardpane.html │ │ │ ├── figure.html │ │ │ ├── iframe.html │ │ │ ├── imgproc.html │ │ │ ├── pageinfo.html │ │ │ ├── readfile.md │ │ │ ├── swaggerui.html │ │ │ ├── tab.html │ │ │ └── tabpane.html │ │ └── swagger │ │ │ ├── baseof.html │ │ │ ├── list.html │ │ │ └── single.html │ │ ├── netlify.toml │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── static │ │ ├── css │ │ │ ├── prism.css │ │ │ ├── shortcodes.css │ │ │ ├── shortcodes │ │ │ │ ├── cards-pane.css │ │ │ │ └── tabbed-pane.css │ │ │ └── swagger-ui.css │ │ ├── favicons │ │ │ ├── android-144x144.png │ │ │ ├── android-192x192.png │ │ │ ├── android-36x36.png │ │ │ ├── android-48x48.png │ │ │ ├── android-72x72.png │ │ │ ├── android-96x96.png │ │ │ ├── apple-touch-icon-180x180.png │ │ │ ├── favicon-1024.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-256.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── pwa-192x192.png │ │ │ ├── pwa-512x512.png │ │ │ ├── tile150x150.png │ │ │ ├── tile310x150.png │ │ │ ├── tile310x310.png │ │ │ └── tile70x70.png │ │ ├── js │ │ │ ├── deflate.js │ │ │ ├── prism.js │ │ │ ├── swagger-ui-bundle.js │ │ │ ├── swagger-ui-standalone-preset.js │ │ │ └── tabpane-persist.js │ │ └── 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 │ │ ├── theme.toml │ │ └── userguide │ │ ├── .gitignore │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── assets │ │ └── scss │ │ │ └── _variables_project.scss │ │ ├── config.toml │ │ ├── content │ │ └── en │ │ │ ├── _index.html │ │ │ ├── about │ │ │ ├── _index.md │ │ │ └── featured-background.jpg │ │ │ ├── community │ │ │ └── _index.md │ │ │ ├── docs │ │ │ ├── Adding content │ │ │ │ ├── Shortcodes │ │ │ │ │ ├── index.md │ │ │ │ │ └── spruce.jpg │ │ │ │ ├── _index.md │ │ │ │ ├── content.md │ │ │ │ ├── diagrams-and-formulae │ │ │ │ │ ├── docsy-diagrams.svg │ │ │ │ │ └── index.md │ │ │ │ ├── feedback.md │ │ │ │ ├── iconsimages.md │ │ │ │ ├── lookandfeel.md │ │ │ │ ├── navigation.md │ │ │ │ ├── print.md │ │ │ │ ├── repository-links.md │ │ │ │ ├── taxonomy.md │ │ │ │ └── versioning.md │ │ │ ├── Best practices │ │ │ │ ├── _index.md │ │ │ │ ├── organizing-content.md │ │ │ │ └── site-guidance.md │ │ │ ├── Contribution guidelines │ │ │ │ └── _index.md │ │ │ ├── Deployment │ │ │ │ └── _index.md │ │ │ ├── Examples │ │ │ │ └── _index.md │ │ │ ├── Getting started │ │ │ │ ├── _index.md │ │ │ │ └── quickstart-docker.md │ │ │ ├── Language │ │ │ │ └── _index.md │ │ │ ├── Updating │ │ │ │ └── _index.md │ │ │ └── _index.md │ │ │ ├── featured-background.jpg │ │ │ └── search.md │ │ ├── layouts │ │ └── sitemap.xml │ │ ├── package.json │ │ └── static │ │ ├── google6a6ae8b5b016a20d.html │ │ └── images │ │ ├── feedback.png │ │ ├── no.png │ │ ├── version-banner.png │ │ └── yes.png ├── components.md ├── design-decisions.md └── readme.md ├── src ├── Saas.Admin │ ├── Saas.Admin.Client │ │ ├── AdminServiceClient.cs │ │ ├── OAuthBaseClient.cs │ │ ├── Saas.Admin.Client.csproj │ │ └── adminServiceClient.nswag │ ├── Saas.Admin.Service.Tests │ │ ├── Controllers │ │ │ ├── NewTenantRequestTests.cs │ │ │ └── TenantDTOTests.cs │ │ ├── Data │ │ │ └── TenantsContextTests.cs │ │ ├── Saas.Admin.Service.Tests.csproj │ │ ├── Services │ │ │ └── TenantServiceTests.cs │ │ └── globalusings.cs │ ├── Saas.Admin.Service │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .dockerignore │ │ ├── Controllers │ │ │ ├── NewTenantRequest.cs │ │ │ ├── TenantDTO.cs │ │ │ ├── TenantInfoDTO.cs │ │ │ ├── TenantsController.cs │ │ │ └── UserDTO.cs │ │ ├── Data │ │ │ ├── Tenant.cs │ │ │ ├── TenantDbInitializer.cs │ │ │ ├── TenantEntityTypeConfiguration.cs │ │ │ └── TenantsContext.cs │ │ ├── Dockerfile │ │ ├── Exceptions │ │ │ └── ItemNotFoundExcepton.cs │ │ ├── Migrations │ │ │ ├── 20220405012345_InitialCreate.Designer.cs │ │ │ ├── 20220405012345_InitialCreate.cs │ │ │ └── TenantsContextModelSnapshot.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── launchSettings.json │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── Saas.Admin.Service.csproj │ │ ├── Services │ │ │ ├── ITenantService.cs │ │ │ └── TenantService.cs │ │ ├── Utilities │ │ │ └── CustomPrefixKeyVaultSecretManager.cs │ │ ├── appsettings.json │ │ └── globalusings.cs │ ├── Saas.Admin.sln │ ├── deployment │ │ ├── act │ │ │ ├── .actrc │ │ │ ├── .gitignore │ │ │ ├── clean.sh │ │ │ ├── deploy.sh │ │ │ ├── readme.md │ │ │ ├── setup.sh │ │ │ └── workflows │ │ │ │ └── admin-service-api-deploy-debug.yml │ │ ├── bicep │ │ │ ├── deployAppService.bicep │ │ │ ├── deployConfigEntries.bicep │ │ │ └── parameters │ │ │ │ ├── .gitignore │ │ │ │ └── parameters-template.json │ │ ├── build.sh │ │ ├── constants.sh │ │ ├── run.sh │ │ ├── script │ │ │ └── map-to-config-entries-parameters.py │ │ ├── setup.sh │ │ └── start.sh │ └── readme.md ├── Saas.Application │ ├── README.md │ ├── Saas.Application.Web │ │ ├── .dockerignore │ │ ├── AppHttpContext.cs │ │ ├── Dockerfile │ │ ├── Interfaces │ │ │ ├── IApplicationUser.cs │ │ │ ├── IPersistenceProvider.cs │ │ │ └── ITenantService.cs │ │ ├── Models │ │ │ ├── ApplicationUser.cs │ │ │ ├── ErrorViewModel.cs │ │ │ └── TenantViewModel.cs │ │ ├── Pages │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _Layout.cshtml.css │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── SR.cs │ │ ├── Saas.Application.Web.csproj │ │ ├── Services │ │ │ └── TenantService.cs │ │ ├── Utilities │ │ │ ├── JsonSessionPersistenceProvider.cs │ │ │ └── RegexUtilities.cs │ │ ├── appsettings.json │ │ ├── badgemeup-screenshot.gif │ │ ├── globalusings.cs │ │ ├── libman.json │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── activity-stream.png │ │ │ ├── badge-accept.png │ │ │ ├── badge-clip.svg │ │ │ ├── badge-mask.svg │ │ │ ├── badge-share.png │ │ │ ├── badge-types.png │ │ │ ├── logo-dark.svg │ │ │ ├── logo.svg │ │ │ └── my-badges.png │ │ │ ├── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── jquery.min.js │ │ │ └── site.js │ │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── sample-badge-image.jpg │ ├── Saas.Application.sln │ └── deployment │ │ ├── act │ │ ├── .actrc │ │ ├── .gitignore │ │ ├── clean.sh │ │ ├── deploy.sh │ │ ├── readme.md │ │ ├── setup.sh │ │ └── workflows │ │ │ └── saas-app-deploy-debug.yml │ │ ├── bicep │ │ ├── deployAppService.bicep │ │ ├── deployConfigEntries.bicep │ │ └── parameters │ │ │ ├── .gitignore │ │ │ └── parameters-template.json │ │ ├── build.sh │ │ ├── constants.sh │ │ ├── run.sh │ │ ├── script │ │ └── map-to-config-entries-parameters.py │ │ ├── setup.sh │ │ └── start.sh ├── Saas.Identity │ ├── .vscode │ │ └── settings.json │ ├── Saas.IdentityProvider │ │ ├── .assets │ │ │ └── readme │ │ │ │ ├── image-20230110094801956-1683889385775-1.png │ │ │ │ ├── image-20230110094801956.png │ │ │ │ ├── image-20230221115203497-1683889385776-2.png │ │ │ │ ├── image-20230221115203497.png │ │ │ │ ├── image-20230221115249541-1683889385776-3.png │ │ │ │ ├── image-20230221115249541.png │ │ │ │ ├── image-20230221121152035-1683889385777-4.png │ │ │ │ └── image-20230221121152035.png │ │ ├── deployment │ │ │ ├── .vscode │ │ │ │ └── launch.json │ │ │ ├── bicep │ │ │ │ ├── .gitignore │ │ │ │ ├── IdentityFoundation │ │ │ │ │ ├── Module │ │ │ │ │ │ ├── addConfigEntries.bicep │ │ │ │ │ │ ├── appConfigurationStore.bicep │ │ │ │ │ │ ├── appPlan.bicep │ │ │ │ │ │ ├── createSecret.bicep │ │ │ │ │ │ ├── keyVaultAccessRBAC.bicep │ │ │ │ │ │ ├── linkToExistingKeyVaultSecret.bicep │ │ │ │ │ │ ├── password-generate.sh │ │ │ │ │ │ ├── roles.json │ │ │ │ │ │ └── sqlDbs.bicep │ │ │ │ │ └── deployIdentityFoundation.bicep │ │ │ │ ├── deployAzureB2c.bicep │ │ │ │ ├── deployKeyVault.bicep │ │ │ │ └── deployStorage.bicep │ │ │ ├── build.sh │ │ │ ├── config │ │ │ │ ├── .gitignore │ │ │ │ ├── config-template.json │ │ │ │ └── identity-bicep-parameters-template.json │ │ │ ├── constants.sh │ │ │ ├── run.sh │ │ │ ├── script │ │ │ │ ├── b2c-app-registrations.sh │ │ │ │ ├── b2c-policy-keys.sh │ │ │ │ ├── clean-up-module.sh │ │ │ │ ├── config-b2c.sh │ │ │ │ ├── create-azure-b2c.sh │ │ │ │ ├── create-key-vault.sh │ │ │ │ ├── create-oidc-workflow-github-action.sh │ │ │ │ ├── create-service-principal.sh │ │ │ │ ├── deploy-identity-foundation.sh │ │ │ │ ├── generate-ief-policies.py │ │ │ │ ├── get-dependency-sorted-policies.py │ │ │ │ ├── init-module.sh │ │ │ │ ├── init.sh │ │ │ │ ├── map-identity-paramenters.py │ │ │ │ ├── model │ │ │ │ │ ├── AppSettings.py │ │ │ │ │ ├── ConfigJson.py │ │ │ │ │ ├── IdentityDeploymentParameters.py │ │ │ │ │ └── __init__.py │ │ │ │ ├── post-fix-module.sh │ │ │ │ └── upload-ief-policies.sh │ │ │ ├── setup.sh │ │ │ └── start.sh │ │ ├── faq.md │ │ ├── policies │ │ │ ├── .gitignore │ │ │ ├── PasswordReset.xml │ │ │ ├── ProfileEdit.xml │ │ │ ├── SignUpOrSignin.xml │ │ │ ├── TrustFrameworkBase.xml │ │ │ ├── TrustFrameworkExtensions.xml │ │ │ ├── TrustFrameworkLocalization.xml │ │ │ └── sample.appsettings.json │ │ └── readme.md │ └── Saas.Permissions │ │ ├── .assets │ │ └── readme │ │ │ ├── image-20230105174952120.png │ │ │ ├── image-20230107210713030.png │ │ │ ├── image-20230112000806828.png │ │ │ ├── image-20230112001205528.png │ │ │ ├── image-20230112001210631.png │ │ │ ├── image-20230120213644846.png │ │ │ ├── image-20230125141953381.png │ │ │ ├── image-20230126203229729.png │ │ │ ├── image-20230126230446548.png │ │ │ ├── image-20230127151459605.png │ │ │ ├── image-20230128153624642.png │ │ │ ├── image-20230128153659108.png │ │ │ ├── image-20230128154233104.png │ │ │ ├── image-20230128154523352.png │ │ │ ├── image-20230128154735945.png │ │ │ ├── image-20230128160051561.png │ │ │ ├── image-20230128161036500.png │ │ │ ├── image-20230128161825544.png │ │ │ └── image-20230128163318970.png │ │ ├── Saas.Permissions.Client │ │ ├── PermissionsServiceClient.cs │ │ ├── Saas.PermissionClient.nswag │ │ └── Saas.Permissions.Client.csproj │ │ ├── Saas.Permissions.Service_v1.1 │ │ ├── Controllers │ │ │ ├── CustomClaimsController.cs │ │ │ └── PermissionsController.cs │ │ ├── Data │ │ │ ├── Configuration │ │ │ │ ├── SaasPermissionEntityTypeConfiguration.cs │ │ │ │ ├── TenantPermissionEntityTypeConfiguration.cs │ │ │ │ └── UserPermissionEntityTypeConfiguration.cs │ │ │ ├── Context │ │ │ │ └── SaasPermissionsContext.cs │ │ │ └── SaasPermissionDbInitializer.cs │ │ ├── Dockerfile │ │ ├── Exceptions │ │ │ ├── ItemAlreadyExistsException.cs │ │ │ ├── ItemNotFoundException.cs │ │ │ └── UserNotFoundException.cs │ │ ├── Interfaces │ │ │ ├── IGraphAPIService.cs │ │ │ ├── IGraphClientFactory.cs │ │ │ └── IPermissionsService.cs │ │ ├── Middleware │ │ │ └── ApiKeyMiddleware.cs │ │ ├── Models │ │ │ ├── ClaimsRequest.cs │ │ │ ├── PermissionsClaimResponse.cs │ │ │ ├── RolesClaimResponse.cs │ │ │ ├── UnauthorizedResponse.cs │ │ │ └── User.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Saas.Permissions.Service.csproj │ │ ├── Saas.Permissions.Service.sln │ │ ├── Services │ │ │ ├── GraphAPIService.cs │ │ │ ├── GraphClientFactory.cs │ │ │ └── PermissionsService.cs │ │ ├── appsettings.json │ │ └── globalusings.cs │ │ ├── deployment │ │ ├── act │ │ │ ├── .gitignore │ │ │ ├── clean.sh │ │ │ ├── deploy.sh │ │ │ ├── readme.md │ │ │ ├── setup.sh │ │ │ └── workflows │ │ │ │ └── permissions-api-deploy-debug.yml │ │ ├── bicep │ │ │ ├── deployAppService.bicep │ │ │ ├── deployConfigEntries.bicep │ │ │ └── parameters │ │ │ │ ├── .gitignore │ │ │ │ └── parameters-template.json │ │ ├── build.sh │ │ ├── constants.sh │ │ ├── run.sh │ │ ├── script │ │ │ ├── clean-credentials.sh │ │ │ ├── deploy-debug.sh │ │ │ └── map-to-config-entries-parameters.py │ │ ├── setup.sh │ │ └── start.sh │ │ └── readme.md ├── Saas.Lib │ ├── Act.Container │ │ ├── .actrc │ │ ├── Dockerfile │ │ └── build.sh │ ├── Deployment.Container │ │ ├── .dockerignore │ │ ├── Dockerfile │ │ ├── Dockerfile.ARM │ │ ├── Dockerfile.AppleSilicon │ │ └── build.sh │ ├── Deployment.Script.Modules │ │ ├── act-credentials-module.sh │ │ ├── app-reg-module.sh │ │ ├── app-service-constants.sh │ │ ├── backup-module.sh │ │ ├── clean-credentials.sh │ │ ├── colors-module.sh │ │ ├── config-module.sh │ │ ├── deploy-app-service.sh │ │ ├── deploy-config-entries.sh │ │ ├── deploy-debug.sh │ │ ├── deploy-service-module.sh │ │ ├── github-module.sh │ │ ├── key-vault-module.sh │ │ ├── linux-ubuntu │ │ │ └── linux-user-module.sh │ │ ├── log-module.sh │ │ ├── macos │ │ │ └── macos-user-module.sh │ │ ├── map-output-parameters-for-app-service.py │ │ ├── oidc-workflow-module.sh │ │ ├── patch-github-workflow.py │ │ ├── policy-module.sh │ │ ├── resource-module.sh │ │ ├── service-principal-module.sh │ │ ├── storage-module.sh │ │ ├── tenant-login-module.sh │ │ ├── user-module.sh │ │ └── util-module.sh │ ├── Saas.Authorization │ │ ├── Saas.AspNetCore.Authorization.Tests │ │ │ ├── RouteBasedRoleCusomizerTests.cs │ │ │ └── Saas.AspNetCore.Authorization.Tests.csproj │ │ ├── Saas.AspNetCore.Authorization │ │ │ ├── AuthHandlers │ │ │ │ ├── CustomRoleHandler.cs │ │ │ │ ├── IRoleCustomizer.cs │ │ │ │ ├── RouteBasedRoleCustomizer.cs │ │ │ │ └── RouteBasedRoleHandlerExtensions.cs │ │ │ ├── ClaimTransformers │ │ │ │ ├── ClaimPermissionToRoleTransformer.cs │ │ │ │ └── ClaimToRoleTransformerOptions.cs │ │ │ ├── ClaimsPrincipalExtensions.cs │ │ │ ├── README.md │ │ │ └── Saas.AspNetCore.Authorization.csproj │ │ └── samples.http │ ├── Saas.Bicep.Module │ │ ├── addConfigEntry.bicep │ │ ├── appServiceModuleWithObservability.bicep │ │ └── roles.json │ ├── Saas.Identity │ │ ├── Authorization │ │ │ ├── Attribute │ │ │ │ ├── SaasAuthorizeAttribute.cs │ │ │ │ └── SaasRequirementAttribute.cs │ │ │ ├── Handler │ │ │ │ ├── SaasPermissionAuthorizationHandlerBase.cs │ │ │ │ ├── SaasTenantPermissionAuthorizationHandler.cs │ │ │ │ └── SaasUserPermissionAuthorizationHandler.cs │ │ │ ├── Model │ │ │ │ ├── Claim │ │ │ │ │ ├── SaasPermissionClaim.cs │ │ │ │ │ └── SaasPermissionClaimExtensions.cs │ │ │ │ ├── Data │ │ │ │ │ ├── IPermissionClaim.cs │ │ │ │ │ ├── ITenantPermissionClaim.cs │ │ │ │ │ ├── IUserPermissionClaim.cs │ │ │ │ │ ├── PermissionBase.cs │ │ │ │ │ ├── SaasPermission.cs │ │ │ │ │ ├── SaasPermissionDataExtensions.cs │ │ │ │ │ ├── TenantPermission.cs │ │ │ │ │ └── UserPermission.cs │ │ │ │ ├── Kind │ │ │ │ │ ├── TenantPermissionKind.cs │ │ │ │ │ └── UserPermissionKind.cs │ │ │ │ └── SaasPolicy.cs │ │ │ ├── Options │ │ │ │ └── SaasAuthorizationOptions.cs │ │ │ ├── Provider │ │ │ │ └── SaasPermissionAuthorizationPolicyProvider.cs │ │ │ └── Requirement │ │ │ │ ├── ISaasRequirement.cs │ │ │ │ ├── SaasRequirementBase.cs │ │ │ │ ├── SaasTenantPermissionRequirement.cs │ │ │ │ └── SaasUserPermissionRequirement.cs │ │ ├── Crypto │ │ │ ├── ClientAssertionSigningProvider.cs │ │ │ ├── PublicX509CertificateDetailProvider.cs │ │ │ └── Util │ │ │ │ └── EncodingExtension.cs │ │ ├── Extensions │ │ │ ├── SaasIdentityConfigurationBuilderExtensions.api.cs │ │ │ └── SaasIdentityConfigurationBuilderExtensions.app.cs │ │ ├── Helper │ │ │ ├── DevelopmentKeyVaultCredentials.cs │ │ │ ├── ProductionKeyVaultCredentials.cs │ │ │ └── RejectSessionCookieWhenAccountNotInCacheEvents.cs │ │ ├── Interface │ │ │ ├── IClientAssertionSigningProvider.cs │ │ │ ├── IKeyVaultCredentialService.cs │ │ │ ├── IPublicX509CertificateDetail.cs │ │ │ └── IPublicX509CertificateDetailProvider.cs │ │ ├── Model │ │ │ ├── KeyInfo.cs │ │ │ └── PublicX509CertificateDetail.cs │ │ ├── Provider │ │ │ ├── SaasApiAuthenticationProvider.cs │ │ │ └── SaasGraphClientCredentialsProvider.cs │ │ └── Saas.Identity.csproj │ └── Saas.Shared │ │ ├── Interface │ │ ├── IKeyVaultInfo.cs │ │ ├── ISaaSPermissionsApi.cs │ │ ├── ISaasAdminApi.cs │ │ ├── ISaasApi.cs │ │ ├── ISaasApp.cs │ │ ├── ISaasCloudService.cs │ │ ├── ISaasMicrosoftGraphApi.cs │ │ └── ISignupAdministrationWebApp.cs │ │ ├── Options │ │ ├── AdminApiOptions.cs │ │ ├── AzureB2C │ │ │ ├── AzureAdB2CBase.cs │ │ │ ├── AzureB2CAdminApiOptions.cs │ │ │ ├── AzureB2CPermissionsApiOptions.cs │ │ │ ├── AzureB2CSaasAppOptions.cs │ │ │ └── AzureB2CSignupAdminOptions.cs │ │ ├── MSGraphOptions.cs │ │ ├── PermissionsApiOptions.cs │ │ ├── SaasApiScopeOptions.cs │ │ ├── SaasAppScopeOptions.cs │ │ └── SqlOptions.cs │ │ ├── Saas.Shared.csproj │ │ └── Swagger │ │ └── SwagCustomHeaderFilter.cs ├── Saas.Main.sln ├── Saas.SignupAdministration │ ├── README.md │ ├── Saas.SignupAdministration.Web │ │ ├── .config │ │ │ └── dotnet-tools.json │ │ ├── .dockerignore │ │ ├── AppHttpContext.cs │ │ ├── Areas │ │ │ ├── Admin │ │ │ │ ├── Controllers │ │ │ │ │ ├── TenantsController.cs │ │ │ │ │ └── UsersController.cs │ │ │ │ ├── Data │ │ │ │ │ ├── AddUserRequest.cs │ │ │ │ │ ├── TenantViewModel.cs │ │ │ │ │ └── UserViewModel.cs │ │ │ │ └── Views │ │ │ │ │ ├── Tenants │ │ │ │ │ ├── Admin.cshtml │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── _TenantListView.cshtml │ │ │ │ │ ├── Users │ │ │ │ │ ├── AddUserToTenant.cshtml │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ └── Index.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ └── Identity │ │ │ │ └── Pages │ │ │ │ └── _ViewStart.cshtml │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── OnboardingWorkflowController.cs │ │ ├── Dockerfile │ │ ├── Interfaces │ │ │ ├── IApplicationUser.cs │ │ │ ├── IEmail.cs │ │ │ └── IPersistenceProvider.cs │ │ ├── Models │ │ │ ├── ApplicationUser.cs │ │ │ ├── ErrorViewModel.cs │ │ │ ├── IdNameReferenceItem.cs │ │ │ └── JSONEmail.cs │ │ ├── Pages │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── ServiceDependencies │ │ │ │ ├── app-contoso047-dev-047 - Web Deploy │ │ │ │ │ └── profile.arm.json │ │ │ │ ├── app-org1-dev-026 - Web Deploy │ │ │ │ │ └── profile.arm.json │ │ │ │ └── local │ │ │ │ │ └── appInsights1.arm.json │ │ │ ├── launchSettings.json │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── SR.cs │ │ ├── Saas.SignupAdministration.Web.csproj │ │ ├── Services │ │ │ ├── Email.cs │ │ │ ├── EmailOptions.cs │ │ │ ├── OnboardingWorkflow.cs │ │ │ ├── OnboardingWorkflowItem.cs │ │ │ └── StateMachine │ │ │ │ └── OnboardingWorkflowState.cs │ │ ├── Utilities │ │ │ ├── CustomPrefixKeyVaultSecretManager.cs │ │ │ ├── JsonSessionPersistenceProvider.cs │ │ │ └── RegexUtilities.cs │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── Help.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Pricing.cshtml │ │ │ │ └── Privacy.cshtml │ │ │ ├── OnboardingWorkflow │ │ │ │ ├── Confirmation.cshtml │ │ │ │ ├── OrganizationCategory.cshtml │ │ │ │ ├── OrganizationName.cshtml │ │ │ │ ├── ServicePlans.cshtml │ │ │ │ ├── TenantRouteName.cshtml │ │ │ │ └── Username.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ ├── _LayoutAdmin.cshtml │ │ │ │ ├── _LayoutMarketing.cshtml │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ ├── _Pricing.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ ├── globalusings.cs │ │ └── wwwroot │ │ │ ├── assets │ │ │ └── images │ │ │ │ ├── deploy-to-azure.svg │ │ │ │ └── favicon │ │ │ │ ├── 16x16.png │ │ │ │ ├── 32x32.png │ │ │ │ ├── 48x48.png │ │ │ │ └── 64x64.png │ │ │ ├── css │ │ │ ├── admin.css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ ├── admin.js │ │ │ └── site.js │ │ │ ├── lib │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ └── vendor │ │ │ ├── bootstrap │ │ │ ├── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.js.map │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── bootstrap.min.js.map │ │ │ └── scss │ │ │ │ ├── _alert.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _breadcrumb.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _card.scss │ │ │ │ ├── _carousel.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _code.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _dropdown.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _images.scss │ │ │ │ ├── _input-group.scss │ │ │ │ ├── _jumbotron.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _media.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _print.scss │ │ │ │ ├── _progress.scss │ │ │ │ ├── _reboot.scss │ │ │ │ ├── _root.scss │ │ │ │ ├── _spinners.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _toasts.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _transitions.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _utilities.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── bootstrap-grid.scss │ │ │ │ ├── bootstrap-reboot.scss │ │ │ │ ├── bootstrap.scss │ │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _interactions.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ │ ├── chart.js │ │ │ ├── Chart.bundle.js │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.js │ │ │ └── Chart.min.js │ │ │ ├── datatables │ │ │ ├── dataTables.bootstrap4.css │ │ │ ├── dataTables.bootstrap4.js │ │ │ ├── dataTables.bootstrap4.min.css │ │ │ ├── dataTables.bootstrap4.min.js │ │ │ ├── jquery.dataTables.js │ │ │ └── jquery.dataTables.min.js │ │ │ ├── jquery-easing │ │ │ ├── jquery.easing.compatibility.js │ │ │ ├── jquery.easing.js │ │ │ └── jquery.easing.min.js │ │ │ └── jquery │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.slim.js │ │ │ ├── jquery.slim.min.js │ │ │ └── jquery.slim.min.map │ ├── Saas.SignupAdministration.sln │ └── deployment │ │ ├── act │ │ ├── .actrc │ │ ├── .gitignore │ │ ├── clean.sh │ │ ├── deploy.sh │ │ ├── readme.md │ │ ├── setup.sh │ │ └── workflows │ │ │ └── signup-administration-deploy-debug.yml │ │ ├── bicep │ │ ├── deployAppService.bicep │ │ ├── deployConfigEntries.bicep │ │ └── parameters │ │ │ ├── .gitignore │ │ │ └── parameters-template.json │ │ ├── build.sh │ │ ├── constants.sh │ │ ├── run.sh │ │ ├── script │ │ └── map-to-config-entries-parameters.py │ │ ├── setup.sh │ │ └── start.sh └── TestUtilities │ ├── AssertAdditions.cs │ ├── AutoDataNSubstituteAttribute.cs │ ├── Customizations │ └── HttpWithRouting.cs │ ├── InlineAutoDataNSubstituteAttribute.cs │ ├── TestUtilities.csproj │ ├── Utility │ └── LiveUnitTestUtil.cs │ └── globalusings.cs └── util └── backup.sh /.assets/README/add-sign-up-and-sign-in-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.assets/README/add-sign-up-and-sign-in-flow.png -------------------------------------------------------------------------------- /.assets/README/image-20230323125434790.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.assets/README/image-20230323125434790.png -------------------------------------------------------------------------------- /.assets/README/overview.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.assets/README/overview.drawio.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/ISSUE_TEMPLATE/documentation-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/admin-service-api-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/workflows/admin-service-api-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/workflows/docs-build.yml -------------------------------------------------------------------------------- /.github/workflows/permissions-api-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/workflows/permissions-api-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/saas-app-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/workflows/saas-app-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/signup-administration-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.github/workflows/signup-administration-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/.gitmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/.gitmodule -------------------------------------------------------------------------------- /docs/azure-saas-docs/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/Readme.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/archetypes/default.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/config.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/Identity/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/Identity/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/Identity/caveats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/Identity/caveats.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/Identity/identity-flows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/Identity/identity-flows.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/Identity/identity-provider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/Identity/identity-provider.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/Identity/permissions-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/Identity/permissions-service.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/admin-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/admin-service.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/saas-application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/saas-application.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/saas-notifications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/saas-notifications.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/components/signup-administration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/components/signup-administration.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/diagrams.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/quick-start.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/additional-recommended-resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/additional-recommended-resources.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/branding-considerations-for-saas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/branding-considerations-for-saas.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/container-publishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/container-publishing.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/contoso-badgemeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/contoso-badgemeup.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/devops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/devops.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/content/en/resources/terminology.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/content/en/resources/terminology.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/package-lock.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/package.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/diagrams/identity-diagram.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/diagrams/identity-diagram.drawio.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/diagrams/old-architecture.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/diagrams/old-architecture.drawio.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/diagrams/overview.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/diagrams/overview.drawio.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/diagrams/user-types.drawio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/diagrams/user-types.drawio.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/aad-enterprise-apps-users-groups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/aad-enterprise-apps-users-groups.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/aad-enterprise-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/aad-enterprise-apps.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/azure-saas-multitenant-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/azure-saas-multitenant-architecture.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/azure-saas-multitenant-deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/azure-saas-multitenant-deployment.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/badgemeup-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/badgemeup-screenshot.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/logic-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/logic-app-1.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/static/images/logic-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/static/images/logic-app-2.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/.editorconfig -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/.gitignore -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/.gitmodules -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/.prettierrc.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/.s3deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/.s3deploy.yml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/LICENSE -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/README.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/icons/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/icons/logo.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/icons/logo.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/anchor.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/base.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/drawio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/drawio.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/markmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/markmap.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/mermaid.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/offline-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/offline-search.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/plantuml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/plantuml.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/js/search.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/json/offline-search-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/json/offline-search-index.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_alerts.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_blog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_blog.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_boxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_boxes.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_buttons.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_code.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_colors.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_content.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_drawio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_drawio.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_main-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_main-container.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_nav.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_pageinfo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_pageinfo.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_search.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_search.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_sidebar-toc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_sidebar-toc.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_sidebar-tree.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_sidebar-tree.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_styles_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_styles_project.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_taxonomy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_taxonomy.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_variables.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/_variables_project.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/_variables_project.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/blocks/_blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/blocks/_blocks.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/blocks/_cover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/blocks/_cover.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/main.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/rtl/_main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/rtl/_main.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/rtl/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/rtl/_spacing.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/section-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/section-index.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/support/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/support/_functions.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/support/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/support/_mixins.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/scss/support/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/scss/support/_utilities.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/stubs/new-page-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/stubs/new-page-template.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/CHANGELOG.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/LICENSE.txt -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/README.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/UPGRADING.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/composer.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/all.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/all.min.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/brands.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/regular.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/solid.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/solid.min.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/css/v4-shims.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/all.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/all.min.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/brands.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/brands.min.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/fontawesome.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/regular.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/regular.min.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/solid.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/solid.min.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/js/v4-shims.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_core.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_icons.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_larger.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_list.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_mixins.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_shims.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/_shims.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/brands.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/brands.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/regular.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/regular.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/less/solid.less -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/otfs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/otfs/README.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_core.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_icons.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_larger.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_list.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_shims.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/_shims.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/brands.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/brands.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/regular.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/regular.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/scss/solid.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/sprites/solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/sprites/solid.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/ad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/ad.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/at.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/om.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/om.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/th.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/th.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/Font-Awesome/svgs/solid/tv.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.browserslistrc -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.editorconfig -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.eslintignore -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.gitattributes -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.github/CODEOWNERS -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.github/SUPPORT.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.gitignore -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.stylelintignore -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/LICENSE -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/README.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/SECURITY.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/.eslintrc.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/banner.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/svgo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/svgo.yml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/build/vnu-jar.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/composer.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/config.yml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/index.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/toast.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/toast.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/toast.js.map -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/dist/util.js.map -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/index.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/toast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/toast.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/README.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/browsers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/browsers.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/index.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/unit/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/js/tests/unit/tab.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/nuget/bootstrap.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/package.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/package.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/.eslintrc.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/content/docs/4.6/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/data/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/data/colors.yml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/data/grays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/data/grays.yml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/markdown.html: -------------------------------------------------------------------------------- 1 | {{- .Inner | markdownify -}} 2 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/layouts/shortcodes/partial.html: -------------------------------------------------------------------------------- 1 | {{ partial (.Get 0) . }} 2 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/static/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/assets/vendor/bootstrap/site/static/sw.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/config.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/dependencies/assets/bootstrap/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/dependencies/assets/bootstrap/README.txt -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/dependencies/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/dependencies/config.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/dependencies/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/google/docsy/dependencies 2 | 3 | go 1.12 4 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/go.mod -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/go.sum -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/ar.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/ar.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/bg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/bg.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/bn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/bn.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/de.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/de.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/en.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/es.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/es.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/et.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/et.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/fa.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/fa.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/fr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/fr.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/hu.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/hu.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/it.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/it.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/ja.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/ja.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/ko.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/ko.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/nl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/nl.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/no.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/no.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/pl.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/pl.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/pt-br.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/pt-br.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/ru.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/ru.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/tr.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/tr.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/i18n/zh-cn.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/i18n/zh-cn.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/images/screenshot.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/images/tn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/images/tn.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/404.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/baseof.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/content.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/list.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/list.rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/list.rss.xml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/search.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/single.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/taxonomy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/taxonomy.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/_default/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/_default/terms.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/baseof.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/baseof.print.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/content.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/list.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/section.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/section.print.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/blog/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/blog/single.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/community/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/community/list.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/docs/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/docs/baseof.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/docs/baseof.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/docs/baseof.print.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/docs/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/docs/list.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/docs/list.print.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/docs/list.print.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/docs/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/docs/single.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/home.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/breadcrumb.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/community_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/community_links.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/disqus-comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/disqus-comment.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/favicons.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/featured-image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/featured-image.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/feedback.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/footer.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/head-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/head-css.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/head.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/hooks/body-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/hooks/body-end.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/hooks/head-end.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/hooks/head-end.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/navbar-lang-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/navbar-lang-selector.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/navbar.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/outputformat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/outputformat.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/page-meta-lastmod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/page-meta-lastmod.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/page-meta-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/page-meta-links.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/pager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/pager.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/content-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/content-blog.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/content.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/page-heading.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/page-heading.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/render.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/render.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/toc-li-blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/toc-li-blog.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/print/toc-li.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/print/toc-li.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/reading-time.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/reading-time.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/scripts.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/search-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/search-input.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/section-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/section-index.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/sidebar-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/sidebar-tree.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_article.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_cloud.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_clouds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/taxonomy_terms_clouds.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/toc.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/partials/version-banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/partials/version-banner.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/cover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/cover.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/feature.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/lead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/lead.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/link-down.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/link-down.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/blocks/section.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/card-code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/card-code.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/card.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/cardpane.html: -------------------------------------------------------------------------------- 1 |
2 | {{- .Inner -}} 3 |
-------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/figure.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/figure.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/iframe.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/imgproc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/imgproc.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/pageinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/pageinfo.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/readfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/readfile.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/swaggerui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/swaggerui.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/tab.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/shortcodes/tabpane.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/shortcodes/tabpane.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/swagger/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/swagger/baseof.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/swagger/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/swagger/list.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/layouts/swagger/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/layouts/swagger/single.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/netlify.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/package.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/postcss.config.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/css/prism.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/css/shortcodes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/css/shortcodes.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/css/shortcodes/cards-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/css/shortcodes/cards-pane.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/css/shortcodes/tabbed-pane.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/css/shortcodes/tabbed-pane.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/css/swagger-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/css/swagger-ui.css -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-144x144.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-192x192.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-36x36.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-48x48.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-72x72.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/android-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/android-96x96.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/favicon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/favicon-1024.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/favicon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/favicon-256.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/favicon.ico -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/pwa-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/pwa-192x192.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/pwa-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/pwa-512x512.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/tile150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/tile150x150.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/tile310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/tile310x150.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/tile310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/tile310x310.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/favicons/tile70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/favicons/tile70x70.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/js/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/js/deflate.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/js/prism.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/js/swagger-ui-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/js/swagger-ui-bundle.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/js/swagger-ui-standalone-preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/js/swagger-ui-standalone-preset.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/js/tabpane-persist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/js/tabpane-persist.js -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/theme.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/.gitignore: -------------------------------------------------------------------------------- 1 | # Hugo 2 | .hugo_build.lock 3 | /public 4 | resources/ 5 | -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/LICENSE -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/config.toml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/_index.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/about/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/about/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/community/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/community/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Examples/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Examples/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Language/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Language/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Updating/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/Updating/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/docs/_index.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/featured-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/featured-background.jpg -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/content/en/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/content/en/search.md -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/layouts/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/layouts/sitemap.xml -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/package.json -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/static/google6a6ae8b5b016a20d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/static/google6a6ae8b5b016a20d.html -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/static/images/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/static/images/feedback.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/static/images/no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/static/images/no.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/static/images/version-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/static/images/version-banner.png -------------------------------------------------------------------------------- /docs/azure-saas-docs/themes/docsy/userguide/static/images/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/azure-saas-docs/themes/docsy/userguide/static/images/yes.png -------------------------------------------------------------------------------- /docs/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/components.md -------------------------------------------------------------------------------- /docs/design-decisions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/design-decisions.md -------------------------------------------------------------------------------- /docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/docs/readme.md -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Client/AdminServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Client/AdminServiceClient.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Client/OAuthBaseClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Client/OAuthBaseClient.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Client/Saas.Admin.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Client/Saas.Admin.Client.csproj -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Client/adminServiceClient.nswag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Client/adminServiceClient.nswag -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/Controllers/NewTenantRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/Controllers/NewTenantRequestTests.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/Controllers/TenantDTOTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/Controllers/TenantDTOTests.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/Data/TenantsContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/Data/TenantsContextTests.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/Saas.Admin.Service.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/Saas.Admin.Service.Tests.csproj -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/Services/TenantServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/Services/TenantServiceTests.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service.Tests/globalusings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service.Tests/globalusings.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/.config/dotnet-tools.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | *.Development.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Controllers/NewTenantRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Controllers/NewTenantRequest.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Controllers/TenantDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Controllers/TenantDTO.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Controllers/TenantInfoDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Controllers/TenantInfoDTO.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Controllers/TenantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Controllers/TenantsController.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Controllers/UserDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Controllers/UserDTO.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Data/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Data/Tenant.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Data/TenantDbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Data/TenantDbInitializer.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Data/TenantEntityTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Data/TenantEntityTypeConfiguration.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Data/TenantsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Data/TenantsContext.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Dockerfile -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Exceptions/ItemNotFoundExcepton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Exceptions/ItemNotFoundExcepton.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Migrations/20220405012345_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Migrations/20220405012345_InitialCreate.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Migrations/TenantsContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Migrations/TenantsContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Program.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Saas.Admin.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Saas.Admin.Service.csproj -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Services/ITenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Services/ITenantService.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/Services/TenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/Services/TenantService.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/appsettings.json -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.Service/globalusings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.Service/globalusings.cs -------------------------------------------------------------------------------- /src/Saas.Admin/Saas.Admin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/Saas.Admin.sln -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/.actrc -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/.gitignore -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/clean.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/deploy.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/readme.md -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/setup.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/act/workflows/admin-service-api-deploy-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/act/workflows/admin-service-api-deploy-debug.yml -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/bicep/deployAppService.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/bicep/deployAppService.bicep -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/bicep/deployConfigEntries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/bicep/deployConfigEntries.bicep -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/bicep/parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/bicep/parameters/.gitignore -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/bicep/parameters/parameters-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/bicep/parameters/parameters-template.json -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/build.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/constants.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/run.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/script/map-to-config-entries-parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/script/map-to-config-entries-parameters.py -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/setup.sh -------------------------------------------------------------------------------- /src/Saas.Admin/deployment/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/deployment/start.sh -------------------------------------------------------------------------------- /src/Saas.Admin/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Admin/readme.md -------------------------------------------------------------------------------- /src/Saas.Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/README.md -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | *.Development.json -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/AppHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/AppHttpContext.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Dockerfile -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Interfaces/IApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Interfaces/IApplicationUser.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Interfaces/IPersistenceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Interfaces/IPersistenceProvider.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Interfaces/ITenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Interfaces/ITenantService.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Models/TenantViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Models/TenantViewModel.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Program.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/SR.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Saas.Application.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Saas.Application.Web.csproj -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Services/TenantService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Services/TenantService.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/Utilities/RegexUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/Utilities/RegexUtilities.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/appsettings.json -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/badgemeup-screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/badgemeup-screenshot.gif -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/globalusings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/globalusings.cs -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/libman.json -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/activity-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/activity-stream.png -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-accept.png -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-clip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-clip.svg -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-mask.svg -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-share.png -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/badge-types.png -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/logo-dark.svg -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/logo.svg -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/images/my-badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/images/my-badges.png -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/js/jquery.min.js -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.Web/wwwroot/sample-badge-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.Web/wwwroot/sample-badge-image.jpg -------------------------------------------------------------------------------- /src/Saas.Application/Saas.Application.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/Saas.Application.sln -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/.actrc -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/.gitignore -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/clean.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/deploy.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/readme.md -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/setup.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/act/workflows/saas-app-deploy-debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/act/workflows/saas-app-deploy-debug.yml -------------------------------------------------------------------------------- /src/Saas.Application/deployment/bicep/deployAppService.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/bicep/deployAppService.bicep -------------------------------------------------------------------------------- /src/Saas.Application/deployment/bicep/deployConfigEntries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/bicep/deployConfigEntries.bicep -------------------------------------------------------------------------------- /src/Saas.Application/deployment/bicep/parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/bicep/parameters/.gitignore -------------------------------------------------------------------------------- /src/Saas.Application/deployment/bicep/parameters/parameters-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/bicep/parameters/parameters-template.json -------------------------------------------------------------------------------- /src/Saas.Application/deployment/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/build.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/constants.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/run.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/script/map-to-config-entries-parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/script/map-to-config-entries-parameters.py -------------------------------------------------------------------------------- /src/Saas.Application/deployment/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/setup.sh -------------------------------------------------------------------------------- /src/Saas.Application/deployment/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Application/deployment/start.sh -------------------------------------------------------------------------------- /src/Saas.Identity/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/.vscode/settings.json -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/.vscode/launch.json -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/.gitignore: -------------------------------------------------------------------------------- 1 | deployStorage.json -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployAzureB2c.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployAzureB2c.bicep -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployKeyVault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployKeyVault.bicep -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployStorage.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/bicep/deployStorage.bicep -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/build.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/config/.gitignore -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/config/config-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/config/config-template.json -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/constants.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/run.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/b2c-policy-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/b2c-policy-keys.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/clean-up-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/clean-up-module.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/config-b2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/config-b2c.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/create-azure-b2c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/create-azure-b2c.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/create-key-vault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/create-key-vault.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/init-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/init-module.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/init.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/model/AppSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/model/AppSettings.py -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/model/ConfigJson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/model/ConfigJson.py -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/script/post-fix-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/script/post-fix-module.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/setup.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/deployment/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/deployment/start.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/faq.md -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/.gitignore: -------------------------------------------------------------------------------- 1 | Environments/ 2 | appsettings.json 3 | .vscode -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/PasswordReset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/PasswordReset.xml -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/ProfileEdit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/ProfileEdit.xml -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/SignUpOrSignin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/SignUpOrSignin.xml -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/TrustFrameworkBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/TrustFrameworkBase.xml -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/TrustFrameworkExtensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/TrustFrameworkExtensions.xml -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/policies/sample.appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/policies/sample.appsettings.json -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.IdentityProvider/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.IdentityProvider/readme.md -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230105174952120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230105174952120.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230107210713030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230107210713030.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112000806828.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112000806828.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112001205528.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112001205528.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112001210631.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230112001210631.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230120213644846.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230120213644846.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230125141953381.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230125141953381.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230126203229729.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/.assets/readme/image-20230126203229729.png -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/Saas.Permissions.Service_v1.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/Saas.Permissions.Service_v1.1/Dockerfile -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/Saas.Permissions.Service_v1.1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/Saas.Permissions.Service_v1.1/Program.cs -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/act/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/act/.gitignore -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/act/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/act/clean.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/act/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/act/deploy.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/act/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/act/readme.md -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/act/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/act/setup.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/bicep/deployAppService.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/bicep/deployAppService.bicep -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/bicep/parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/bicep/parameters/.gitignore -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/build.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/constants.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/run.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/script/clean-credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/script/clean-credentials.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/script/deploy-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/script/deploy-debug.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/setup.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/deployment/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/deployment/start.sh -------------------------------------------------------------------------------- /src/Saas.Identity/Saas.Permissions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Identity/Saas.Permissions/readme.md -------------------------------------------------------------------------------- /src/Saas.Lib/Act.Container/.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Act.Container/.actrc -------------------------------------------------------------------------------- /src/Saas.Lib/Act.Container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Act.Container/Dockerfile -------------------------------------------------------------------------------- /src/Saas.Lib/Act.Container/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Act.Container/build.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Container/.dockerignore: -------------------------------------------------------------------------------- 1 | build*.sh 2 | Dockerfile.ARM -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Container/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Container/Dockerfile -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Container/Dockerfile.ARM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Container/Dockerfile.ARM -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Container/Dockerfile.AppleSilicon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Container/Dockerfile.AppleSilicon -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Container/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Container/build.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/act-credentials-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/act-credentials-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/app-reg-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/app-reg-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/app-service-constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/app-service-constants.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/backup-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/backup-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/clean-credentials.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/clean-credentials.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/colors-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/colors-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/config-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/config-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/deploy-app-service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/deploy-app-service.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/deploy-config-entries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/deploy-config-entries.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/deploy-debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/deploy-debug.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/deploy-service-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/deploy-service-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/github-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/github-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/key-vault-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/key-vault-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/linux-ubuntu/linux-user-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/linux-ubuntu/linux-user-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/log-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/log-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/macos/macos-user-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/macos/macos-user-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/oidc-workflow-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/oidc-workflow-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/patch-github-workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/patch-github-workflow.py -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/policy-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/policy-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/resource-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/resource-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/service-principal-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/service-principal-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/storage-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/storage-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/tenant-login-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/tenant-login-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/user-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/user-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Deployment.Script.Modules/util-module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Deployment.Script.Modules/util-module.sh -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Authorization/Saas.AspNetCore.Authorization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Authorization/Saas.AspNetCore.Authorization/README.md -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Authorization/samples.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Authorization/samples.http -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Bicep.Module/addConfigEntry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Bicep.Module/addConfigEntry.bicep -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Bicep.Module/appServiceModuleWithObservability.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Bicep.Module/appServiceModuleWithObservability.bicep -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Bicep.Module/roles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Bicep.Module/roles.json -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Claim/SaasPermissionClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Claim/SaasPermissionClaim.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/IPermissionClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/IPermissionClaim.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/IUserPermissionClaim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/IUserPermissionClaim.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/PermissionBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/PermissionBase.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/SaasPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/SaasPermission.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/TenantPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/TenantPermission.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Data/UserPermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Data/UserPermission.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Kind/TenantPermissionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Kind/TenantPermissionKind.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/Kind/UserPermissionKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/Kind/UserPermissionKind.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Model/SaasPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Model/SaasPolicy.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Requirement/ISaasRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Requirement/ISaasRequirement.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Authorization/Requirement/SaasRequirementBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Authorization/Requirement/SaasRequirementBase.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Crypto/ClientAssertionSigningProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Crypto/ClientAssertionSigningProvider.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Crypto/PublicX509CertificateDetailProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Crypto/PublicX509CertificateDetailProvider.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Crypto/Util/EncodingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Crypto/Util/EncodingExtension.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Helper/DevelopmentKeyVaultCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Helper/DevelopmentKeyVaultCredentials.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Helper/ProductionKeyVaultCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Helper/ProductionKeyVaultCredentials.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Interface/IClientAssertionSigningProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Interface/IClientAssertionSigningProvider.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Interface/IKeyVaultCredentialService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Interface/IKeyVaultCredentialService.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Interface/IPublicX509CertificateDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Interface/IPublicX509CertificateDetail.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Model/KeyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Model/KeyInfo.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Model/PublicX509CertificateDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Model/PublicX509CertificateDetail.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Provider/SaasApiAuthenticationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Provider/SaasApiAuthenticationProvider.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Provider/SaasGraphClientCredentialsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Provider/SaasGraphClientCredentialsProvider.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Identity/Saas.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Identity/Saas.Identity.csproj -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/IKeyVaultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/IKeyVaultInfo.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaaSPermissionsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaaSPermissionsApi.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaasAdminApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaasAdminApi.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaasApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaasApi.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaasApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaasApp.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaasCloudService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaasCloudService.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISaasMicrosoftGraphApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISaasMicrosoftGraphApi.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Interface/ISignupAdministrationWebApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Interface/ISignupAdministrationWebApp.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AdminApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AdminApiOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureAdB2CBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureAdB2CBase.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CAdminApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CAdminApiOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CPermissionsApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CPermissionsApiOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CSaasAppOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CSaasAppOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CSignupAdminOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/AzureB2C/AzureB2CSignupAdminOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/MSGraphOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/MSGraphOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/PermissionsApiOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/PermissionsApiOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/SaasApiScopeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/SaasApiScopeOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/SaasAppScopeOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/SaasAppScopeOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Options/SqlOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Options/SqlOptions.cs -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Saas.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Saas.Shared.csproj -------------------------------------------------------------------------------- /src/Saas.Lib/Saas.Shared/Swagger/SwagCustomHeaderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Lib/Saas.Shared/Swagger/SwagCustomHeaderFilter.cs -------------------------------------------------------------------------------- /src/Saas.Main.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.Main.sln -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/README.md -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.Web/.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | *.Development.json -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/Saas.SignupAdministration.Web/Dockerfile -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/Saas.SignupAdministration.Web/Program.cs -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.Web/SR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/Saas.SignupAdministration.Web/SR.cs -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.Web/globalusings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/Saas.SignupAdministration.Web/globalusings.cs -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/Saas.SignupAdministration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/Saas.SignupAdministration.sln -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/.actrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/.actrc -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/.gitignore -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/clean.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/deploy.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/readme.md -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/act/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/act/setup.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/bicep/deployAppService.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/bicep/deployAppService.bicep -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/bicep/deployConfigEntries.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/bicep/deployConfigEntries.bicep -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/bicep/parameters/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/bicep/parameters/.gitignore -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/build.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/constants.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/run.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/setup.sh -------------------------------------------------------------------------------- /src/Saas.SignupAdministration/deployment/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/Saas.SignupAdministration/deployment/start.sh -------------------------------------------------------------------------------- /src/TestUtilities/AssertAdditions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/AssertAdditions.cs -------------------------------------------------------------------------------- /src/TestUtilities/AutoDataNSubstituteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/AutoDataNSubstituteAttribute.cs -------------------------------------------------------------------------------- /src/TestUtilities/Customizations/HttpWithRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/Customizations/HttpWithRouting.cs -------------------------------------------------------------------------------- /src/TestUtilities/InlineAutoDataNSubstituteAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/InlineAutoDataNSubstituteAttribute.cs -------------------------------------------------------------------------------- /src/TestUtilities/TestUtilities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/TestUtilities.csproj -------------------------------------------------------------------------------- /src/TestUtilities/Utility/LiveUnitTestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/Utility/LiveUnitTestUtil.cs -------------------------------------------------------------------------------- /src/TestUtilities/globalusings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/src/TestUtilities/globalusings.cs -------------------------------------------------------------------------------- /util/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/azure-saas/HEAD/util/backup.sh --------------------------------------------------------------------------------