├── .vs ├── config │ └── applicationhost.config └── popsDiner │ ├── DesignTimeBuild │ └── .dtbcache │ └── v15 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── README.md ├── popsDiner.sln └── popsDiner ├── Components ├── CategoryMenu.cs └── ShoppingCartSummary.cs ├── Controllers ├── AccountController.cs ├── AppExceptionController.cs ├── ContactController.cs ├── HomeController.cs ├── ItemController.cs ├── ItemDataController.cs ├── OrderController.cs └── ShoppingCartController.cs ├── Migrations ├── 20180919172055_Initial.Designer.cs ├── 20180919172055_Initial.cs ├── 20180920001751_ShoppingCartItem.Designer.cs ├── 20180920001751_ShoppingCartItem.cs ├── 20180920225901_Order.Designer.cs ├── 20180920225901_Order.cs ├── 20180920232221_Orders.Designer.cs ├── 20180920232221_Orders.cs ├── 20180921025234_Identity.Designer.cs ├── 20180921025234_Identity.cs └── AppDbContextModelSnapshot.cs ├── Models ├── AppDbContext.cs ├── Category.cs ├── CategoryRepository.cs ├── DbInitializer.cs ├── HomeViewModel.cs ├── ICategoryRepository.cs ├── IItemRepository.cs ├── IOrderRepository.cs ├── Item.cs ├── ItemRepository.cs ├── MockCategoryRepository.cs ├── MockItemRepository.cs ├── Order.cs ├── OrderDetail.cs ├── OrderRepository.cs ├── ShoppingCart.cs ├── ShoppingCartItem.cs └── ShoppingCartViewModel.cs ├── Program.cs ├── Properties └── launchSettings.json ├── Startup.cs ├── TagHelpers └── EmailTagHelper.cs ├── ViewModels ├── ItemViewModel.cs ├── ItemsListViewModel.cs └── LoginViewModel.cs ├── Views ├── Account │ ├── Login.cshtml │ ├── Login.cshtml.cs │ ├── Logout.cshtml │ ├── Logout.cshtml.cs │ ├── Register.cshtml │ └── Register.cshtml.cs ├── AppException │ └── Index.cshtml ├── Contact │ └── Index.cshtml ├── Home │ └── Index.cshtml ├── Item │ ├── Details.cshtml │ └── List.cshtml ├── Order │ ├── Checkout.cshtml │ ├── Checkout.cshtml.cs │ ├── CheckoutComplete.cshtml │ └── CheckoutComplete.cshtml.cs ├── Shared │ ├── Carousel.cshtml │ ├── Components │ │ ├── CategoryMenu │ │ │ └── Default.cshtml │ │ └── ShoppingCartSummary │ │ │ ├── Default.cshtml │ │ │ └── Default.cshtml.cs │ ├── ItemOfTheWeek.cshtml │ ├── ItemOverviewSummary.cshtml │ ├── ItemOverviewSummary.cshtml.cs │ ├── LoginPartial.cshtml │ ├── LoginPartial.cshtml.cs │ ├── ShoppingCartPartial.cshtml │ └── _Layout.cshtml ├── ShoppingCart │ ├── Index.cshtml │ └── Index.cshtml.cs ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.json ├── bin └── Debug │ └── netcoreapp2.1 │ ├── popsDiner.Views.dll │ ├── popsDiner.Views.pdb │ ├── popsDiner.deps.json │ ├── popsDiner.dll │ ├── popsDiner.pdb │ ├── popsDiner.runtimeconfig.dev.json │ └── popsDiner.runtimeconfig.json ├── bower_components ├── Font-Awesome │ ├── .bower.json │ ├── .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 │ ├── advanced-options │ │ ├── metadata │ │ │ ├── categories.yml │ │ │ ├── icons.json │ │ │ ├── icons.yml │ │ │ ├── shims.json │ │ │ ├── shims.yml │ │ │ └── sponsors.yml │ │ ├── raw-svg │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.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 │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.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 │ │ │ │ ├── btc.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buysellads.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 │ │ │ │ ├── chrome.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.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-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.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 │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── r.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── rendact.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.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 │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── usb.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 │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.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 │ │ │ │ ├── abacus.svg │ │ │ │ ├── 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 │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.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 │ │ │ │ ├── binoculars.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.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-alt.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.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 │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── certificate.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 │ │ │ │ ├── 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 │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.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-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.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 │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.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 │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.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 │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── empty-set.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.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-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-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── flag-checkered.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 │ │ │ │ ├── function.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.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-vertical.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.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 │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── haykal.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── home.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── integral.svg │ │ │ │ ├── intersection.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 │ │ │ │ ├── lambda.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.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 │ │ │ │ ├── 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 │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.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 │ │ │ │ ├── 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 │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── music.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── omega.svg │ │ │ │ ├── outdent.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-carry.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── pi.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.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.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 │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.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 │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.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 │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sigma.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal-alt-slash.svg │ │ │ │ ├── signal-alt.svg │ │ │ │ ├── signal-slash.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square-root.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.svg │ │ │ │ ├── store-alt.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 │ │ │ │ ├── tally.svg │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.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 │ │ │ │ ├── theta.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── tilde.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.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 │ │ │ │ ├── union.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-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.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.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── value-absolute.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-slash.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── volume.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi-slash.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ ├── svg-sprites │ │ │ ├── fa-brands.svg │ │ │ ├── fa-regular.svg │ │ │ └── fa-solid.svg │ │ └── use-with-node-js │ │ │ ├── fontawesome-common-types │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ │ ├── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── fa-brands.less │ │ │ │ ├── fa-regular.less │ │ │ │ ├── fa-solid.less │ │ │ │ ├── fontawesome.less │ │ │ │ ├── regular.less │ │ │ │ ├── solid.less │ │ │ │ └── v4-shims.less │ │ │ ├── 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 │ │ │ │ ├── fa-brands.scss │ │ │ │ ├── fa-regular.scss │ │ │ │ ├── fa-solid.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 │ │ │ │ │ ├── adn.svg │ │ │ │ │ ├── adversal.svg │ │ │ │ │ ├── affiliatetheme.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 │ │ │ │ │ ├── asymmetrik.svg │ │ │ │ │ ├── audible.svg │ │ │ │ │ ├── autoprefixer.svg │ │ │ │ │ ├── avianex.svg │ │ │ │ │ ├── aviato.svg │ │ │ │ │ ├── aws.svg │ │ │ │ │ ├── bandcamp.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 │ │ │ │ │ ├── btc.svg │ │ │ │ │ ├── buromobelexperte.svg │ │ │ │ │ ├── buysellads.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 │ │ │ │ │ ├── chrome.svg │ │ │ │ │ ├── cloudscale.svg │ │ │ │ │ ├── cloudsmith.svg │ │ │ │ │ ├── cloudversify.svg │ │ │ │ │ ├── codepen.svg │ │ │ │ │ ├── codiepie.svg │ │ │ │ │ ├── connectdevelop.svg │ │ │ │ │ ├── contao.svg │ │ │ │ │ ├── cpanel.svg │ │ │ │ │ ├── creative-commons-by.svg │ │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ │ ├── creative-commons-share.svg │ │ │ │ │ ├── creative-commons.svg │ │ │ │ │ ├── css3-alt.svg │ │ │ │ │ ├── css3.svg │ │ │ │ │ ├── cuttlefish.svg │ │ │ │ │ ├── d-and-d.svg │ │ │ │ │ ├── dashcube.svg │ │ │ │ │ ├── delicious.svg │ │ │ │ │ ├── deploydog.svg │ │ │ │ │ ├── deskpro.svg │ │ │ │ │ ├── deviantart.svg │ │ │ │ │ ├── digg.svg │ │ │ │ │ ├── digital-ocean.svg │ │ │ │ │ ├── discord.svg │ │ │ │ │ ├── discourse.svg │ │ │ │ │ ├── dochub.svg │ │ │ │ │ ├── docker.svg │ │ │ │ │ ├── draft2digital.svg │ │ │ │ │ ├── dribbble-square.svg │ │ │ │ │ ├── dribbble.svg │ │ │ │ │ ├── dropbox.svg │ │ │ │ │ ├── drupal.svg │ │ │ │ │ ├── dyalog.svg │ │ │ │ │ ├── earlybirds.svg │ │ │ │ │ ├── ebay.svg │ │ │ │ │ ├── edge.svg │ │ │ │ │ ├── elementor.svg │ │ │ │ │ ├── ello.svg │ │ │ │ │ ├── ember.svg │ │ │ │ │ ├── empire.svg │ │ │ │ │ ├── envira.svg │ │ │ │ │ ├── erlang.svg │ │ │ │ │ ├── ethereum.svg │ │ │ │ │ ├── etsy.svg │ │ │ │ │ ├── expeditedssl.svg │ │ │ │ │ ├── facebook-f.svg │ │ │ │ │ ├── facebook-messenger.svg │ │ │ │ │ ├── facebook-square.svg │ │ │ │ │ ├── facebook.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-square.svg │ │ │ │ │ ├── git.svg │ │ │ │ │ ├── github-alt.svg │ │ │ │ │ ├── github-square.svg │ │ │ │ │ ├── github.svg │ │ │ │ │ ├── gitkraken.svg │ │ │ │ │ ├── gitlab.svg │ │ │ │ │ ├── gitter.svg │ │ │ │ │ ├── glide-g.svg │ │ │ │ │ ├── glide.svg │ │ │ │ │ ├── gofore.svg │ │ │ │ │ ├── goodreads-g.svg │ │ │ │ │ ├── goodreads.svg │ │ │ │ │ ├── google-drive.svg │ │ │ │ │ ├── google-play.svg │ │ │ │ │ ├── google-plus-g.svg │ │ │ │ │ ├── google-plus-square.svg │ │ │ │ │ ├── google-plus.svg │ │ │ │ │ ├── google-wallet.svg │ │ │ │ │ ├── google.svg │ │ │ │ │ ├── gratipay.svg │ │ │ │ │ ├── grav.svg │ │ │ │ │ ├── gripfire.svg │ │ │ │ │ ├── grunt.svg │ │ │ │ │ ├── gulp.svg │ │ │ │ │ ├── hacker-news-square.svg │ │ │ │ │ ├── hacker-news.svg │ │ │ │ │ ├── hackerrank.svg │ │ │ │ │ ├── hips.svg │ │ │ │ │ ├── hire-a-helper.svg │ │ │ │ │ ├── hooli.svg │ │ │ │ │ ├── hornbill.svg │ │ │ │ │ ├── hotjar.svg │ │ │ │ │ ├── houzz.svg │ │ │ │ │ ├── html5.svg │ │ │ │ │ ├── hubspot.svg │ │ │ │ │ ├── imdb.svg │ │ │ │ │ ├── instagram.svg │ │ │ │ │ ├── internet-explorer.svg │ │ │ │ │ ├── ioxhost.svg │ │ │ │ │ ├── itunes-note.svg │ │ │ │ │ ├── itunes.svg │ │ │ │ │ ├── java.svg │ │ │ │ │ ├── jedi-order.svg │ │ │ │ │ ├── jenkins.svg │ │ │ │ │ ├── joget.svg │ │ │ │ │ ├── joomla.svg │ │ │ │ │ ├── js-square.svg │ │ │ │ │ ├── js.svg │ │ │ │ │ ├── jsfiddle.svg │ │ │ │ │ ├── kaggle.svg │ │ │ │ │ ├── keybase.svg │ │ │ │ │ ├── keycdn.svg │ │ │ │ │ ├── kickstarter-k.svg │ │ │ │ │ ├── kickstarter.svg │ │ │ │ │ ├── korvue.svg │ │ │ │ │ ├── laravel.svg │ │ │ │ │ ├── lastfm-square.svg │ │ │ │ │ ├── lastfm.svg │ │ │ │ │ ├── leanpub.svg │ │ │ │ │ ├── less.svg │ │ │ │ │ ├── line.svg │ │ │ │ │ ├── linkedin-in.svg │ │ │ │ │ ├── linkedin.svg │ │ │ │ │ ├── linode.svg │ │ │ │ │ ├── linux.svg │ │ │ │ │ ├── lyft.svg │ │ │ │ │ ├── magento.svg │ │ │ │ │ ├── mailchimp.svg │ │ │ │ │ ├── mandalorian.svg │ │ │ │ │ ├── markdown.svg │ │ │ │ │ ├── mastodon.svg │ │ │ │ │ ├── maxcdn.svg │ │ │ │ │ ├── medapps.svg │ │ │ │ │ ├── medium-m.svg │ │ │ │ │ ├── medium.svg │ │ │ │ │ ├── medrt.svg │ │ │ │ │ ├── meetup.svg │ │ │ │ │ ├── megaport.svg │ │ │ │ │ ├── microsoft.svg │ │ │ │ │ ├── mix.svg │ │ │ │ │ ├── mixcloud.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 │ │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ │ ├── odnoklassniki.svg │ │ │ │ │ ├── old-republic.svg │ │ │ │ │ ├── opencart.svg │ │ │ │ │ ├── openid.svg │ │ │ │ │ ├── opera.svg │ │ │ │ │ ├── optin-monster.svg │ │ │ │ │ ├── osi.svg │ │ │ │ │ ├── page4.svg │ │ │ │ │ ├── pagelines.svg │ │ │ │ │ ├── palfed.svg │ │ │ │ │ ├── patreon.svg │ │ │ │ │ ├── paypal.svg │ │ │ │ │ ├── periscope.svg │ │ │ │ │ ├── phabricator.svg │ │ │ │ │ ├── phoenix-framework.svg │ │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ │ ├── php.svg │ │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ │ ├── pied-piper.svg │ │ │ │ │ ├── pinterest-p.svg │ │ │ │ │ ├── pinterest-square.svg │ │ │ │ │ ├── pinterest.svg │ │ │ │ │ ├── playstation.svg │ │ │ │ │ ├── product-hunt.svg │ │ │ │ │ ├── pushed.svg │ │ │ │ │ ├── python.svg │ │ │ │ │ ├── qq.svg │ │ │ │ │ ├── quinscape.svg │ │ │ │ │ ├── quora.svg │ │ │ │ │ ├── r-project.svg │ │ │ │ │ ├── ravelry.svg │ │ │ │ │ ├── react.svg │ │ │ │ │ ├── readme.svg │ │ │ │ │ ├── rebel.svg │ │ │ │ │ ├── red-river.svg │ │ │ │ │ ├── reddit-alien.svg │ │ │ │ │ ├── reddit-square.svg │ │ │ │ │ ├── reddit.svg │ │ │ │ │ ├── rendact.svg │ │ │ │ │ ├── renren.svg │ │ │ │ │ ├── replyd.svg │ │ │ │ │ ├── researchgate.svg │ │ │ │ │ ├── resolving.svg │ │ │ │ │ ├── rev.svg │ │ │ │ │ ├── rocketchat.svg │ │ │ │ │ ├── rockrms.svg │ │ │ │ │ ├── safari.svg │ │ │ │ │ ├── sass.svg │ │ │ │ │ ├── schlix.svg │ │ │ │ │ ├── scribd.svg │ │ │ │ │ ├── searchengin.svg │ │ │ │ │ ├── sellcast.svg │ │ │ │ │ ├── sellsy.svg │ │ │ │ │ ├── servicestack.svg │ │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ │ ├── shopware.svg │ │ │ │ │ ├── simplybuilt.svg │ │ │ │ │ ├── sistrix.svg │ │ │ │ │ ├── sith.svg │ │ │ │ │ ├── skyatlas.svg │ │ │ │ │ ├── skype.svg │ │ │ │ │ ├── slack-hash.svg │ │ │ │ │ ├── slack.svg │ │ │ │ │ ├── slideshare.svg │ │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ │ ├── snapchat-square.svg │ │ │ │ │ ├── snapchat.svg │ │ │ │ │ ├── soundcloud.svg │ │ │ │ │ ├── speakap.svg │ │ │ │ │ ├── spotify.svg │ │ │ │ │ ├── squarespace.svg │ │ │ │ │ ├── stack-exchange.svg │ │ │ │ │ ├── stack-overflow.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 │ │ │ │ │ ├── teamspeak.svg │ │ │ │ │ ├── telegram-plane.svg │ │ │ │ │ ├── telegram.svg │ │ │ │ │ ├── tencent-weibo.svg │ │ │ │ │ ├── the-red-yeti.svg │ │ │ │ │ ├── themeco.svg │ │ │ │ │ ├── themeisle.svg │ │ │ │ │ ├── trade-federation.svg │ │ │ │ │ ├── trello.svg │ │ │ │ │ ├── tripadvisor.svg │ │ │ │ │ ├── tumblr-square.svg │ │ │ │ │ ├── tumblr.svg │ │ │ │ │ ├── twitch.svg │ │ │ │ │ ├── twitter-square.svg │ │ │ │ │ ├── twitter.svg │ │ │ │ │ ├── typo3.svg │ │ │ │ │ ├── uber.svg │ │ │ │ │ ├── uikit.svg │ │ │ │ │ ├── uniregistry.svg │ │ │ │ │ ├── untappd.svg │ │ │ │ │ ├── usb.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 │ │ │ │ │ ├── weebly.svg │ │ │ │ │ ├── weibo.svg │ │ │ │ │ ├── weixin.svg │ │ │ │ │ ├── whatsapp-square.svg │ │ │ │ │ ├── whatsapp.svg │ │ │ │ │ ├── whmcs.svg │ │ │ │ │ ├── wikipedia-w.svg │ │ │ │ │ ├── windows.svg │ │ │ │ │ ├── wix.svg │ │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ │ ├── wordpress-simple.svg │ │ │ │ │ ├── wordpress.svg │ │ │ │ │ ├── wpbeginner.svg │ │ │ │ │ ├── wpexplorer.svg │ │ │ │ │ ├── wpforms.svg │ │ │ │ │ ├── xbox.svg │ │ │ │ │ ├── xing-square.svg │ │ │ │ │ ├── xing.svg │ │ │ │ │ ├── y-combinator.svg │ │ │ │ │ ├── yahoo.svg │ │ │ │ │ ├── yandex-international.svg │ │ │ │ │ ├── yandex.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 │ │ │ │ │ ├── abacus.svg │ │ │ │ │ ├── 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 │ │ │ │ │ ├── backspace.svg │ │ │ │ │ ├── backward.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 │ │ │ │ │ ├── binoculars.svg │ │ │ │ │ ├── birthday-cake.svg │ │ │ │ │ ├── blender.svg │ │ │ │ │ ├── blind.svg │ │ │ │ │ ├── bold.svg │ │ │ │ │ ├── bolt.svg │ │ │ │ │ ├── bomb.svg │ │ │ │ │ ├── bone.svg │ │ │ │ │ ├── bong.svg │ │ │ │ │ ├── book-open.svg │ │ │ │ │ ├── book-reader.svg │ │ │ │ │ ├── book.svg │ │ │ │ │ ├── bookmark.svg │ │ │ │ │ ├── bowling-ball.svg │ │ │ │ │ ├── box-open.svg │ │ │ │ │ ├── box.svg │ │ │ │ │ ├── boxes.svg │ │ │ │ │ ├── braille.svg │ │ │ │ │ ├── brain.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-alt.svg │ │ │ │ │ ├── calculator.svg │ │ │ │ │ ├── calendar-alt.svg │ │ │ │ │ ├── calendar-check.svg │ │ │ │ │ ├── calendar-minus.svg │ │ │ │ │ ├── calendar-plus.svg │ │ │ │ │ ├── calendar-times.svg │ │ │ │ │ ├── calendar.svg │ │ │ │ │ ├── camera-retro.svg │ │ │ │ │ ├── camera.svg │ │ │ │ │ ├── cannabis.svg │ │ │ │ │ ├── capsules.svg │ │ │ │ │ ├── car-alt.svg │ │ │ │ │ ├── car-battery.svg │ │ │ │ │ ├── car-crash.svg │ │ │ │ │ ├── car-side.svg │ │ │ │ │ ├── car.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 │ │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ │ ├── cart-plus.svg │ │ │ │ │ ├── certificate.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── clipboard-check.svg │ │ │ │ │ ├── clipboard-list.svg │ │ │ │ │ ├── clipboard.svg │ │ │ │ │ ├── clock.svg │ │ │ │ │ ├── clone.svg │ │ │ │ │ ├── closed-captioning.svg │ │ │ │ │ ├── cloud-download-alt.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-slash.svg │ │ │ │ │ ├── comment.svg │ │ │ │ │ ├── comments-dollar.svg │ │ │ │ │ ├── comments.svg │ │ │ │ │ ├── compact-disc.svg │ │ │ │ │ ├── compass.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 │ │ │ │ │ ├── cube.svg │ │ │ │ │ ├── cubes.svg │ │ │ │ │ ├── cut.svg │ │ │ │ │ ├── database.svg │ │ │ │ │ ├── deaf.svg │ │ │ │ │ ├── desktop.svg │ │ │ │ │ ├── dharmachakra.svg │ │ │ │ │ ├── diagnoses.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 │ │ │ │ │ ├── divide.svg │ │ │ │ │ ├── dizzy.svg │ │ │ │ │ ├── dna.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 │ │ │ │ │ ├── draw-polygon.svg │ │ │ │ │ ├── drum-steelpan.svg │ │ │ │ │ ├── drum.svg │ │ │ │ │ ├── dumbbell.svg │ │ │ │ │ ├── edit.svg │ │ │ │ │ ├── eject.svg │ │ │ │ │ ├── ellipsis-h.svg │ │ │ │ │ ├── ellipsis-v.svg │ │ │ │ │ ├── empty-set.svg │ │ │ │ │ ├── envelope-open-text.svg │ │ │ │ │ ├── envelope-open.svg │ │ │ │ │ ├── envelope-square.svg │ │ │ │ │ ├── envelope.svg │ │ │ │ │ ├── equals.svg │ │ │ │ │ ├── eraser.svg │ │ │ │ │ ├── euro-sign.svg │ │ │ │ │ ├── exchange-alt.svg │ │ │ │ │ ├── exclamation-circle.svg │ │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ │ ├── exclamation.svg │ │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ │ ├── expand.svg │ │ │ │ │ ├── external-link-alt.svg │ │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ │ ├── eye-dropper.svg │ │ │ │ │ ├── eye-slash.svg │ │ │ │ │ ├── eye.svg │ │ │ │ │ ├── fast-backward.svg │ │ │ │ │ ├── fast-forward.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-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-extinguisher.svg │ │ │ │ │ ├── fire.svg │ │ │ │ │ ├── first-aid.svg │ │ │ │ │ ├── fish.svg │ │ │ │ │ ├── flag-checkered.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 │ │ │ │ │ ├── function.svg │ │ │ │ │ ├── funnel-dollar.svg │ │ │ │ │ ├── futbol.svg │ │ │ │ │ ├── gamepad.svg │ │ │ │ │ ├── gas-pump.svg │ │ │ │ │ ├── gavel.svg │ │ │ │ │ ├── gem.svg │ │ │ │ │ ├── genderless.svg │ │ │ │ │ ├── gift.svg │ │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ │ ├── glass-martini.svg │ │ │ │ │ ├── glasses.svg │ │ │ │ │ ├── globe-africa.svg │ │ │ │ │ ├── globe-americas.svg │ │ │ │ │ ├── globe-asia.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-vertical.svg │ │ │ │ │ ├── h-square.svg │ │ │ │ │ ├── hamsa.svg │ │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ │ ├── hand-holding.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 │ │ │ │ │ ├── hands-helping.svg │ │ │ │ │ ├── hands.svg │ │ │ │ │ ├── handshake.svg │ │ │ │ │ ├── hashtag.svg │ │ │ │ │ ├── haykal.svg │ │ │ │ │ ├── hdd.svg │ │ │ │ │ ├── heading.svg │ │ │ │ │ ├── headphones-alt.svg │ │ │ │ │ ├── headphones.svg │ │ │ │ │ ├── headset.svg │ │ │ │ │ ├── heart.svg │ │ │ │ │ ├── heartbeat.svg │ │ │ │ │ ├── helicopter.svg │ │ │ │ │ ├── highlighter.svg │ │ │ │ │ ├── history.svg │ │ │ │ │ ├── hockey-puck.svg │ │ │ │ │ ├── home.svg │ │ │ │ │ ├── hospital-alt.svg │ │ │ │ │ ├── hospital-symbol.svg │ │ │ │ │ ├── hospital.svg │ │ │ │ │ ├── hot-tub.svg │ │ │ │ │ ├── hotel.svg │ │ │ │ │ ├── hourglass-end.svg │ │ │ │ │ ├── hourglass-half.svg │ │ │ │ │ ├── hourglass-start.svg │ │ │ │ │ ├── hourglass.svg │ │ │ │ │ ├── i-cursor.svg │ │ │ │ │ ├── id-badge.svg │ │ │ │ │ ├── id-card-alt.svg │ │ │ │ │ ├── id-card.svg │ │ │ │ │ ├── image.svg │ │ │ │ │ ├── images.svg │ │ │ │ │ ├── inbox.svg │ │ │ │ │ ├── indent.svg │ │ │ │ │ ├── industry.svg │ │ │ │ │ ├── infinity.svg │ │ │ │ │ ├── info-circle.svg │ │ │ │ │ ├── info.svg │ │ │ │ │ ├── integral.svg │ │ │ │ │ ├── intersection.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 │ │ │ │ │ ├── lambda.svg │ │ │ │ │ ├── landmark.svg │ │ │ │ │ ├── language.svg │ │ │ │ │ ├── laptop-code.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── medal.svg │ │ │ │ │ ├── medkit.svg │ │ │ │ │ ├── meh-blank.svg │ │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ │ ├── meh.svg │ │ │ │ │ ├── memory.svg │ │ │ │ │ ├── menorah.svg │ │ │ │ │ ├── mercury.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── mouse-pointer.svg │ │ │ │ │ ├── music.svg │ │ │ │ │ ├── neuter.svg │ │ │ │ │ ├── newspaper.svg │ │ │ │ │ ├── not-equal.svg │ │ │ │ │ ├── notes-medical.svg │ │ │ │ │ ├── object-group.svg │ │ │ │ │ ├── object-ungroup.svg │ │ │ │ │ ├── oil-can.svg │ │ │ │ │ ├── om.svg │ │ │ │ │ ├── omega.svg │ │ │ │ │ ├── outdent.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-carry.svg │ │ │ │ │ ├── percent.svg │ │ │ │ │ ├── percentage.svg │ │ │ │ │ ├── phone-slash.svg │ │ │ │ │ ├── phone-square.svg │ │ │ │ │ ├── phone-volume.svg │ │ │ │ │ ├── phone.svg │ │ │ │ │ ├── pi.svg │ │ │ │ │ ├── piggy-bank.svg │ │ │ │ │ ├── pills.svg │ │ │ │ │ ├── place-of-worship.svg │ │ │ │ │ ├── plane-arrival.svg │ │ │ │ │ ├── plane-departure.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.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 │ │ │ │ │ ├── puzzle-piece.svg │ │ │ │ │ ├── qrcode.svg │ │ │ │ │ ├── question-circle.svg │ │ │ │ │ ├── question.svg │ │ │ │ │ ├── quidditch.svg │ │ │ │ │ ├── quote-left.svg │ │ │ │ │ ├── quote-right.svg │ │ │ │ │ ├── quran.svg │ │ │ │ │ ├── random.svg │ │ │ │ │ ├── receipt.svg │ │ │ │ │ ├── recycle.svg │ │ │ │ │ ├── redo-alt.svg │ │ │ │ │ ├── redo.svg │ │ │ │ │ ├── registered.svg │ │ │ │ │ ├── reply-all.svg │ │ │ │ │ ├── reply.svg │ │ │ │ │ ├── retweet.svg │ │ │ │ │ ├── ribbon.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 │ │ │ │ │ ├── rupee-sign.svg │ │ │ │ │ ├── sad-cry.svg │ │ │ │ │ ├── sad-tear.svg │ │ │ │ │ ├── save.svg │ │ │ │ │ ├── school.svg │ │ │ │ │ ├── screwdriver.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 │ │ │ │ │ ├── ship.svg │ │ │ │ │ ├── shipping-fast.svg │ │ │ │ │ ├── shoe-prints.svg │ │ │ │ │ ├── shopping-bag.svg │ │ │ │ │ ├── shopping-basket.svg │ │ │ │ │ ├── shopping-cart.svg │ │ │ │ │ ├── shower.svg │ │ │ │ │ ├── shuttle-van.svg │ │ │ │ │ ├── sigma.svg │ │ │ │ │ ├── sign-in-alt.svg │ │ │ │ │ ├── sign-language.svg │ │ │ │ │ ├── sign-out-alt.svg │ │ │ │ │ ├── sign.svg │ │ │ │ │ ├── signal-alt-slash.svg │ │ │ │ │ ├── signal-alt.svg │ │ │ │ │ ├── signal-slash.svg │ │ │ │ │ ├── signal.svg │ │ │ │ │ ├── signature.svg │ │ │ │ │ ├── sitemap.svg │ │ │ │ │ ├── skull.svg │ │ │ │ │ ├── sliders-h.svg │ │ │ │ │ ├── smile-beam.svg │ │ │ │ │ ├── smile-wink.svg │ │ │ │ │ ├── smile.svg │ │ │ │ │ ├── smoking-ban.svg │ │ │ │ │ ├── smoking.svg │ │ │ │ │ ├── snowflake.svg │ │ │ │ │ ├── socks.svg │ │ │ │ │ ├── solar-panel.svg │ │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ │ ├── sort-amount-down.svg │ │ │ │ │ ├── sort-amount-up.svg │ │ │ │ │ ├── sort-down.svg │ │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ │ ├── sort-up.svg │ │ │ │ │ ├── sort.svg │ │ │ │ │ ├── spa.svg │ │ │ │ │ ├── space-shuttle.svg │ │ │ │ │ ├── spinner.svg │ │ │ │ │ ├── splotch.svg │ │ │ │ │ ├── spray-can.svg │ │ │ │ │ ├── square-full.svg │ │ │ │ │ ├── square-root-alt.svg │ │ │ │ │ ├── square-root.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.svg │ │ │ │ │ ├── store-alt.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 │ │ │ │ │ ├── tally.svg │ │ │ │ │ ├── tape.svg │ │ │ │ │ ├── tasks.svg │ │ │ │ │ ├── taxi.svg │ │ │ │ │ ├── teeth-open.svg │ │ │ │ │ ├── teeth.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 │ │ │ │ │ ├── theta.svg │ │ │ │ │ ├── thumbs-down.svg │ │ │ │ │ ├── thumbs-up.svg │ │ │ │ │ ├── thumbtack.svg │ │ │ │ │ ├── ticket-alt.svg │ │ │ │ │ ├── tilde.svg │ │ │ │ │ ├── times-circle.svg │ │ │ │ │ ├── times.svg │ │ │ │ │ ├── tint-slash.svg │ │ │ │ │ ├── tint.svg │ │ │ │ │ ├── tired.svg │ │ │ │ │ ├── toggle-off.svg │ │ │ │ │ ├── toggle-on.svg │ │ │ │ │ ├── toolbox.svg │ │ │ │ │ ├── tooth.svg │ │ │ │ │ ├── torah.svg │ │ │ │ │ ├── torii-gate.svg │ │ │ │ │ ├── trademark.svg │ │ │ │ │ ├── traffic-light.svg │ │ │ │ │ ├── train.svg │ │ │ │ │ ├── transgender-alt.svg │ │ │ │ │ ├── transgender.svg │ │ │ │ │ ├── trash-alt.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 │ │ │ │ │ ├── union.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-lock.svg │ │ │ │ │ ├── user-md.svg │ │ │ │ │ ├── user-minus.svg │ │ │ │ │ ├── user-ninja.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.svg │ │ │ │ │ ├── utensil-spoon.svg │ │ │ │ │ ├── utensils.svg │ │ │ │ │ ├── value-absolute.svg │ │ │ │ │ ├── vector-square.svg │ │ │ │ │ ├── venus-double.svg │ │ │ │ │ ├── venus-mars.svg │ │ │ │ │ ├── venus.svg │ │ │ │ │ ├── vial.svg │ │ │ │ │ ├── vials.svg │ │ │ │ │ ├── video-slash.svg │ │ │ │ │ ├── video.svg │ │ │ │ │ ├── vihara.svg │ │ │ │ │ ├── volleyball-ball.svg │ │ │ │ │ ├── volume-down.svg │ │ │ │ │ ├── volume-mute.svg │ │ │ │ │ ├── volume-off.svg │ │ │ │ │ ├── volume-slash.svg │ │ │ │ │ ├── volume-up.svg │ │ │ │ │ ├── volume.svg │ │ │ │ │ ├── walking.svg │ │ │ │ │ ├── wallet.svg │ │ │ │ │ ├── warehouse.svg │ │ │ │ │ ├── weight-hanging.svg │ │ │ │ │ ├── weight.svg │ │ │ │ │ ├── wheelchair.svg │ │ │ │ │ ├── wifi-slash.svg │ │ │ │ │ ├── wifi.svg │ │ │ │ │ ├── window-close.svg │ │ │ │ │ ├── window-maximize.svg │ │ │ │ │ ├── window-minimize.svg │ │ │ │ │ ├── window-restore.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 │ │ │ ├── index.d.ts │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── styles.css │ │ │ ├── free-brands-svg-icons │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── fa500px.d.ts │ │ │ ├── fa500px.js │ │ │ ├── faAccessibleIcon.d.ts │ │ │ ├── faAccessibleIcon.js │ │ │ ├── faAccusoft.d.ts │ │ │ ├── faAccusoft.js │ │ │ ├── faAdn.d.ts │ │ │ ├── faAdn.js │ │ │ ├── faAdversal.d.ts │ │ │ ├── faAdversal.js │ │ │ ├── faAffiliatetheme.d.ts │ │ │ ├── faAffiliatetheme.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 │ │ │ ├── faAsymmetrik.d.ts │ │ │ ├── faAsymmetrik.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 │ │ │ ├── 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 │ │ │ ├── faBtc.d.ts │ │ │ ├── faBtc.js │ │ │ ├── faBuromobelexperte.d.ts │ │ │ ├── faBuromobelexperte.js │ │ │ ├── faBuysellads.d.ts │ │ │ ├── faBuysellads.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 │ │ │ ├── faChrome.d.ts │ │ │ ├── faChrome.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 │ │ │ ├── faConnectdevelop.d.ts │ │ │ ├── faConnectdevelop.js │ │ │ ├── faContao.d.ts │ │ │ ├── faContao.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 │ │ │ ├── faCss3.d.ts │ │ │ ├── faCss3.js │ │ │ ├── faCss3Alt.d.ts │ │ │ ├── faCss3Alt.js │ │ │ ├── faCuttlefish.d.ts │ │ │ ├── faCuttlefish.js │ │ │ ├── faDAndD.d.ts │ │ │ ├── faDAndD.js │ │ │ ├── faDashcube.d.ts │ │ │ ├── faDashcube.js │ │ │ ├── faDelicious.d.ts │ │ │ ├── faDelicious.js │ │ │ ├── faDeploydog.d.ts │ │ │ ├── faDeploydog.js │ │ │ ├── faDeskpro.d.ts │ │ │ ├── faDeskpro.js │ │ │ ├── faDeviantart.d.ts │ │ │ ├── faDeviantart.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faFirefox.d.ts │ │ │ ├── faFirefox.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faImdb.d.ts │ │ │ ├── faImdb.js │ │ │ ├── faInstagram.d.ts │ │ │ ├── faInstagram.js │ │ │ ├── faInternetExplorer.d.ts │ │ │ ├── faInternetExplorer.js │ │ │ ├── faIoxhost.d.ts │ │ │ ├── faIoxhost.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faMicrosoft.d.ts │ │ │ ├── faMicrosoft.js │ │ │ ├── faMix.d.ts │ │ │ ├── faMix.js │ │ │ ├── faMixcloud.d.ts │ │ │ ├── faMixcloud.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faRavelry.d.ts │ │ │ ├── faRavelry.js │ │ │ ├── faReact.d.ts │ │ │ ├── faReact.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 │ │ │ ├── faRendact.d.ts │ │ │ ├── faRendact.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 │ │ │ ├── faSafari.d.ts │ │ │ ├── faSafari.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 │ │ │ ├── faShopware.d.ts │ │ │ ├── faShopware.js │ │ │ ├── faSimplybuilt.d.ts │ │ │ ├── faSimplybuilt.js │ │ │ ├── faSistrix.d.ts │ │ │ ├── faSistrix.js │ │ │ ├── faSith.d.ts │ │ │ ├── faSith.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 │ │ │ ├── faSpeakap.d.ts │ │ │ ├── faSpeakap.js │ │ │ ├── faSpotify.d.ts │ │ │ ├── faSpotify.js │ │ │ ├── faSquarespace.d.ts │ │ │ ├── faSquarespace.js │ │ │ ├── faStackExchange.d.ts │ │ │ ├── faStackExchange.js │ │ │ ├── faStackOverflow.d.ts │ │ │ ├── faStackOverflow.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faUikit.d.ts │ │ │ ├── faUikit.js │ │ │ ├── faUniregistry.d.ts │ │ │ ├── faUniregistry.js │ │ │ ├── faUntappd.d.ts │ │ │ ├── faUntappd.js │ │ │ ├── faUsb.d.ts │ │ │ ├── faUsb.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faYandex.d.ts │ │ │ ├── faYandex.js │ │ │ ├── faYandexInternational.d.ts │ │ │ ├── faYandexInternational.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 │ │ │ ├── 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 │ │ │ ├── faAbacus.d.ts │ │ │ ├── faAbacus.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 │ │ │ ├── faBackspace.d.ts │ │ │ ├── faBackspace.js │ │ │ ├── faBackward.d.ts │ │ │ ├── faBackward.js │ │ │ ├── faBalanceScale.d.ts │ │ │ ├── faBalanceScale.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 │ │ │ ├── faBinoculars.d.ts │ │ │ ├── faBinoculars.js │ │ │ ├── faBirthdayCake.d.ts │ │ │ ├── faBirthdayCake.js │ │ │ ├── faBlender.d.ts │ │ │ ├── faBlender.js │ │ │ ├── faBlind.d.ts │ │ │ ├── faBlind.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 │ │ │ ├── faBookOpen.d.ts │ │ │ ├── faBookOpen.js │ │ │ ├── faBookReader.d.ts │ │ │ ├── faBookReader.js │ │ │ ├── faBookmark.d.ts │ │ │ ├── faBookmark.js │ │ │ ├── faBowlingBall.d.ts │ │ │ ├── faBowlingBall.js │ │ │ ├── faBox.d.ts │ │ │ ├── faBox.js │ │ │ ├── faBoxOpen.d.ts │ │ │ ├── faBoxOpen.js │ │ │ ├── faBoxes.d.ts │ │ │ ├── faBoxes.js │ │ │ ├── faBraille.d.ts │ │ │ ├── faBraille.js │ │ │ ├── faBrain.d.ts │ │ │ ├── faBrain.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 │ │ │ ├── faCalculatorAlt.d.ts │ │ │ ├── faCalculatorAlt.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 │ │ │ ├── faCamera.d.ts │ │ │ ├── faCamera.js │ │ │ ├── faCameraRetro.d.ts │ │ │ ├── faCameraRetro.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 │ │ │ ├── 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 │ │ │ ├── faCartArrowDown.d.ts │ │ │ ├── faCartArrowDown.js │ │ │ ├── faCartPlus.d.ts │ │ │ ├── faCartPlus.js │ │ │ ├── faCertificate.d.ts │ │ │ ├── faCertificate.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faDesktop.d.ts │ │ │ ├── faDesktop.js │ │ │ ├── faDharmachakra.d.ts │ │ │ ├── faDharmachakra.js │ │ │ ├── faDiagnoses.d.ts │ │ │ ├── faDiagnoses.js │ │ │ ├── faDice.d.ts │ │ │ ├── faDice.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 │ │ │ ├── faDivide.d.ts │ │ │ ├── faDivide.js │ │ │ ├── faDizzy.d.ts │ │ │ ├── faDizzy.js │ │ │ ├── faDna.d.ts │ │ │ ├── faDna.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 │ │ │ ├── faDrawPolygon.d.ts │ │ │ ├── faDrawPolygon.js │ │ │ ├── faDrum.d.ts │ │ │ ├── faDrum.js │ │ │ ├── faDrumSteelpan.d.ts │ │ │ ├── faDrumSteelpan.js │ │ │ ├── faDumbbell.d.ts │ │ │ ├── faDumbbell.js │ │ │ ├── faEdit.d.ts │ │ │ ├── faEdit.js │ │ │ ├── faEject.d.ts │ │ │ ├── faEject.js │ │ │ ├── faEllipsisH.d.ts │ │ │ ├── faEllipsisH.js │ │ │ ├── faEllipsisV.d.ts │ │ │ ├── faEllipsisV.js │ │ │ ├── faEmptySet.d.ts │ │ │ ├── faEmptySet.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faFastBackward.d.ts │ │ │ ├── faFastBackward.js │ │ │ ├── faFastForward.d.ts │ │ │ ├── faFastForward.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 │ │ │ ├── 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 │ │ │ ├── faFireExtinguisher.d.ts │ │ │ ├── faFireExtinguisher.js │ │ │ ├── faFirstAid.d.ts │ │ │ ├── faFirstAid.js │ │ │ ├── faFish.d.ts │ │ │ ├── faFish.js │ │ │ ├── faFlag.d.ts │ │ │ ├── faFlag.js │ │ │ ├── faFlagCheckered.d.ts │ │ │ ├── faFlagCheckered.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 │ │ │ ├── faFunction.d.ts │ │ │ ├── faFunction.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 │ │ │ ├── faGift.d.ts │ │ │ ├── faGift.js │ │ │ ├── faGlassMartini.d.ts │ │ │ ├── faGlassMartini.js │ │ │ ├── faGlassMartiniAlt.d.ts │ │ │ ├── faGlassMartiniAlt.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 │ │ │ ├── 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 │ │ │ ├── faGripVertical.d.ts │ │ │ ├── faGripVertical.js │ │ │ ├── faHSquare.d.ts │ │ │ ├── faHSquare.js │ │ │ ├── faHamsa.d.ts │ │ │ ├── faHamsa.js │ │ │ ├── faHandHolding.d.ts │ │ │ ├── faHandHolding.js │ │ │ ├── faHandHoldingHeart.d.ts │ │ │ ├── faHandHoldingHeart.js │ │ │ ├── faHandHoldingUsd.d.ts │ │ │ ├── faHandHoldingUsd.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 │ │ │ ├── faHands.d.ts │ │ │ ├── faHands.js │ │ │ ├── faHandsHelping.d.ts │ │ │ ├── faHandsHelping.js │ │ │ ├── faHandshake.d.ts │ │ │ ├── faHandshake.js │ │ │ ├── faHashtag.d.ts │ │ │ ├── faHashtag.js │ │ │ ├── faHaykal.d.ts │ │ │ ├── faHaykal.js │ │ │ ├── faHdd.d.ts │ │ │ ├── faHdd.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 │ │ │ ├── faHeartbeat.d.ts │ │ │ ├── faHeartbeat.js │ │ │ ├── faHelicopter.d.ts │ │ │ ├── faHelicopter.js │ │ │ ├── faHighlighter.d.ts │ │ │ ├── faHighlighter.js │ │ │ ├── faHistory.d.ts │ │ │ ├── faHistory.js │ │ │ ├── faHockeyPuck.d.ts │ │ │ ├── faHockeyPuck.js │ │ │ ├── faHome.d.ts │ │ │ ├── faHome.js │ │ │ ├── faHospital.d.ts │ │ │ ├── faHospital.js │ │ │ ├── faHospitalAlt.d.ts │ │ │ ├── faHospitalAlt.js │ │ │ ├── faHospitalSymbol.d.ts │ │ │ ├── faHospitalSymbol.js │ │ │ ├── faHotTub.d.ts │ │ │ ├── faHotTub.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 │ │ │ ├── faICursor.d.ts │ │ │ ├── faICursor.js │ │ │ ├── faIdBadge.d.ts │ │ │ ├── faIdBadge.js │ │ │ ├── faIdCard.d.ts │ │ │ ├── faIdCard.js │ │ │ ├── faIdCardAlt.d.ts │ │ │ ├── faIdCardAlt.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 │ │ │ ├── faIntegral.d.ts │ │ │ ├── faIntegral.js │ │ │ ├── faIntersection.d.ts │ │ │ ├── faIntersection.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 │ │ │ ├── faLambda.d.ts │ │ │ ├── faLambda.js │ │ │ ├── faLandmark.d.ts │ │ │ ├── faLandmark.js │ │ │ ├── faLanguage.d.ts │ │ │ ├── faLanguage.js │ │ │ ├── faLaptop.d.ts │ │ │ ├── faLaptop.js │ │ │ ├── faLaptopCode.d.ts │ │ │ ├── faLaptopCode.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faMousePointer.d.ts │ │ │ ├── faMousePointer.js │ │ │ ├── faMusic.d.ts │ │ │ ├── faMusic.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 │ │ │ ├── faOmega.d.ts │ │ │ ├── faOmega.js │ │ │ ├── faOutdent.d.ts │ │ │ ├── faOutdent.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 │ │ │ ├── faPeopleCarry.d.ts │ │ │ ├── faPeopleCarry.js │ │ │ ├── faPercent.d.ts │ │ │ ├── faPercent.js │ │ │ ├── faPercentage.d.ts │ │ │ ├── faPercentage.js │ │ │ ├── faPhone.d.ts │ │ │ ├── faPhone.js │ │ │ ├── faPhoneSlash.d.ts │ │ │ ├── faPhoneSlash.js │ │ │ ├── faPhoneSquare.d.ts │ │ │ ├── faPhoneSquare.js │ │ │ ├── faPhoneVolume.d.ts │ │ │ ├── faPhoneVolume.js │ │ │ ├── faPi.d.ts │ │ │ ├── faPi.js │ │ │ ├── faPiggyBank.d.ts │ │ │ ├── faPiggyBank.js │ │ │ ├── faPills.d.ts │ │ │ ├── faPills.js │ │ │ ├── faPlaceOfWorship.d.ts │ │ │ ├── faPlaceOfWorship.js │ │ │ ├── faPlane.d.ts │ │ │ ├── faPlane.js │ │ │ ├── faPlaneArrival.d.ts │ │ │ ├── faPlaneArrival.js │ │ │ ├── faPlaneDeparture.d.ts │ │ │ ├── faPlaneDeparture.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── faRandom.d.ts │ │ │ ├── faRandom.js │ │ │ ├── faReceipt.d.ts │ │ │ ├── faReceipt.js │ │ │ ├── faRecycle.d.ts │ │ │ ├── faRecycle.js │ │ │ ├── faRedo.d.ts │ │ │ ├── faRedo.js │ │ │ ├── faRedoAlt.d.ts │ │ │ ├── faRedoAlt.js │ │ │ ├── faRegistered.d.ts │ │ │ ├── faRegistered.js │ │ │ ├── faReply.d.ts │ │ │ ├── faReply.js │ │ │ ├── faReplyAll.d.ts │ │ │ ├── faReplyAll.js │ │ │ ├── faRetweet.d.ts │ │ │ ├── faRetweet.js │ │ │ ├── faRibbon.d.ts │ │ │ ├── faRibbon.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 │ │ │ ├── faRupeeSign.d.ts │ │ │ ├── faRupeeSign.js │ │ │ ├── faSadCry.d.ts │ │ │ ├── faSadCry.js │ │ │ ├── faSadTear.d.ts │ │ │ ├── faSadTear.js │ │ │ ├── faSave.d.ts │ │ │ ├── faSave.js │ │ │ ├── faSchool.d.ts │ │ │ ├── faSchool.js │ │ │ ├── faScrewdriver.d.ts │ │ │ ├── faScrewdriver.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 │ │ │ ├── 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 │ │ │ ├── faSigma.d.ts │ │ │ ├── faSigma.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 │ │ │ ├── faSignalAlt.d.ts │ │ │ ├── faSignalAlt.js │ │ │ ├── faSignalAltSlash.d.ts │ │ │ ├── faSignalAltSlash.js │ │ │ ├── faSignalSlash.d.ts │ │ │ ├── faSignalSlash.js │ │ │ ├── faSignature.d.ts │ │ │ ├── faSignature.js │ │ │ ├── faSitemap.d.ts │ │ │ ├── faSitemap.js │ │ │ ├── faSkull.d.ts │ │ │ ├── faSkull.js │ │ │ ├── faSlidersH.d.ts │ │ │ ├── faSlidersH.js │ │ │ ├── faSmile.d.ts │ │ │ ├── faSmile.js │ │ │ ├── faSmileBeam.d.ts │ │ │ ├── faSmileBeam.js │ │ │ ├── faSmileWink.d.ts │ │ │ ├── faSmileWink.js │ │ │ ├── faSmoking.d.ts │ │ │ ├── faSmoking.js │ │ │ ├── faSmokingBan.d.ts │ │ │ ├── faSmokingBan.js │ │ │ ├── faSnowflake.d.ts │ │ │ ├── faSnowflake.js │ │ │ ├── faSocks.d.ts │ │ │ ├── faSocks.js │ │ │ ├── faSolarPanel.d.ts │ │ │ ├── faSolarPanel.js │ │ │ ├── faSort.d.ts │ │ │ ├── faSort.js │ │ │ ├── faSortAlphaDown.d.ts │ │ │ ├── faSortAlphaDown.js │ │ │ ├── faSortAlphaUp.d.ts │ │ │ ├── faSortAlphaUp.js │ │ │ ├── faSortAmountDown.d.ts │ │ │ ├── faSortAmountDown.js │ │ │ ├── faSortAmountUp.d.ts │ │ │ ├── faSortAmountUp.js │ │ │ ├── faSortDown.d.ts │ │ │ ├── faSortDown.js │ │ │ ├── faSortNumericDown.d.ts │ │ │ ├── faSortNumericDown.js │ │ │ ├── faSortNumericUp.d.ts │ │ │ ├── faSortNumericUp.js │ │ │ ├── faSortUp.d.ts │ │ │ ├── faSortUp.js │ │ │ ├── faSpa.d.ts │ │ │ ├── faSpa.js │ │ │ ├── faSpaceShuttle.d.ts │ │ │ ├── faSpaceShuttle.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 │ │ │ ├── faSquareRoot.d.ts │ │ │ ├── faSquareRoot.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 │ │ │ ├── faStore.d.ts │ │ │ ├── faStore.js │ │ │ ├── faStoreAlt.d.ts │ │ │ ├── faStoreAlt.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 │ │ │ ├── faTally.d.ts │ │ │ ├── faTally.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 │ │ │ ├── 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 │ │ │ ├── faTheta.d.ts │ │ │ ├── faTheta.js │ │ │ ├── faThumbsDown.d.ts │ │ │ ├── faThumbsDown.js │ │ │ ├── faThumbsUp.d.ts │ │ │ ├── faThumbsUp.js │ │ │ ├── faThumbtack.d.ts │ │ │ ├── faThumbtack.js │ │ │ ├── faTicketAlt.d.ts │ │ │ ├── faTicketAlt.js │ │ │ ├── faTilde.d.ts │ │ │ ├── faTilde.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 │ │ │ ├── faToolbox.d.ts │ │ │ ├── faToolbox.js │ │ │ ├── faTooth.d.ts │ │ │ ├── faTooth.js │ │ │ ├── faTorah.d.ts │ │ │ ├── faTorah.js │ │ │ ├── faToriiGate.d.ts │ │ │ ├── faToriiGate.js │ │ │ ├── faTrademark.d.ts │ │ │ ├── faTrademark.js │ │ │ ├── faTrafficLight.d.ts │ │ │ ├── faTrafficLight.js │ │ │ ├── faTrain.d.ts │ │ │ ├── faTrain.js │ │ │ ├── faTransgender.d.ts │ │ │ ├── faTransgender.js │ │ │ ├── faTransgenderAlt.d.ts │ │ │ ├── faTransgenderAlt.js │ │ │ ├── faTrash.d.ts │ │ │ ├── faTrash.js │ │ │ ├── faTrashAlt.d.ts │ │ │ ├── faTrashAlt.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 │ │ │ ├── faUnion.d.ts │ │ │ ├── faUnion.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 │ │ │ ├── faUserLock.d.ts │ │ │ ├── faUserLock.js │ │ │ ├── faUserMd.d.ts │ │ │ ├── faUserMd.js │ │ │ ├── faUserMinus.d.ts │ │ │ ├── faUserMinus.js │ │ │ ├── faUserNinja.d.ts │ │ │ ├── faUserNinja.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 │ │ │ ├── faUtensilSpoon.d.ts │ │ │ ├── faUtensilSpoon.js │ │ │ ├── faUtensils.d.ts │ │ │ ├── faUtensils.js │ │ │ ├── faValueAbsolute.d.ts │ │ │ ├── faValueAbsolute.js │ │ │ ├── faVectorSquare.d.ts │ │ │ ├── faVectorSquare.js │ │ │ ├── faVenus.d.ts │ │ │ ├── faVenus.js │ │ │ ├── faVenusDouble.d.ts │ │ │ ├── faVenusDouble.js │ │ │ ├── faVenusMars.d.ts │ │ │ ├── faVenusMars.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 │ │ │ ├── faVolleyballBall.d.ts │ │ │ ├── faVolleyballBall.js │ │ │ ├── faVolume.d.ts │ │ │ ├── faVolume.js │ │ │ ├── faVolumeDown.d.ts │ │ │ ├── faVolumeDown.js │ │ │ ├── faVolumeMute.d.ts │ │ │ ├── faVolumeMute.js │ │ │ ├── faVolumeOff.d.ts │ │ │ ├── faVolumeOff.js │ │ │ ├── faVolumeSlash.d.ts │ │ │ ├── faVolumeSlash.js │ │ │ ├── faVolumeUp.d.ts │ │ │ ├── faVolumeUp.js │ │ │ ├── faWalking.d.ts │ │ │ ├── faWalking.js │ │ │ ├── faWallet.d.ts │ │ │ ├── faWallet.js │ │ │ ├── faWarehouse.d.ts │ │ │ ├── faWarehouse.js │ │ │ ├── faWeight.d.ts │ │ │ ├── faWeight.js │ │ │ ├── faWeightHanging.d.ts │ │ │ ├── faWeightHanging.js │ │ │ ├── faWheelchair.d.ts │ │ │ ├── faWheelchair.js │ │ │ ├── faWifi.d.ts │ │ │ ├── faWifi.js │ │ │ ├── faWifiSlash.d.ts │ │ │ ├── faWifiSlash.js │ │ │ ├── faWindowClose.d.ts │ │ │ ├── faWindowClose.js │ │ │ ├── faWindowMaximize.d.ts │ │ │ ├── faWindowMaximize.js │ │ │ ├── faWindowMinimize.d.ts │ │ │ ├── faWindowMinimize.js │ │ │ ├── faWindowRestore.d.ts │ │ │ ├── faWindowRestore.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 │ ├── svg-with-js │ │ ├── css │ │ │ ├── fa-svg-with-js.css │ │ │ └── fa-svg-with-js.min.css │ │ └── js │ │ │ ├── fa-brands.js │ │ │ ├── fa-brands.min.js │ │ │ ├── fa-regular.js │ │ │ ├── fa-regular.min.js │ │ │ ├── fa-solid.js │ │ │ ├── fa-solid.min.js │ │ │ ├── fa-v4-shims.js │ │ │ ├── fa-v4-shims.min.js │ │ │ ├── fontawesome-all.js │ │ │ ├── fontawesome-all.min.js │ │ │ ├── fontawesome.js │ │ │ └── fontawesome.min.js │ ├── use-on-desktop │ │ ├── Font Awesome 5 Brands-Regular-400.otf │ │ ├── Font Awesome 5 Free-Regular-400.otf │ │ └── Font Awesome 5 Free-Solid-900.otf │ └── web-fonts-with-css │ │ ├── css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome-all.css │ │ ├── fontawesome-all.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ │ ├── 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 │ │ ├── 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 │ │ └── 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 │ ├── .bower.json │ ├── .browserslistrc │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .github │ │ ├── CONTRIBUTING.md │ │ ├── ISSUE_TEMPLATE │ │ │ ├── bug.md │ │ │ ├── bug_report.md │ │ │ ├── feature.md │ │ │ └── feature_request.md │ │ └── SUPPORT.md │ ├── .gitignore │ ├── .stylelintignore │ ├── .stylelintrc │ ├── .travis.yml │ ├── CNAME │ ├── CODE_OF_CONDUCT.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── build │ │ ├── .eslintrc.json │ │ ├── .htmllintrc │ │ ├── build-plugins.js │ │ ├── change-version.js │ │ ├── gcp-key.json.enc │ │ ├── generate-sri.js │ │ ├── lint-vars.js │ │ ├── postcss.config.js │ │ ├── rollup.config.js │ │ ├── sauce_browsers.json │ │ ├── saucelabs-unit-test.js │ │ ├── ship.sh │ │ ├── vnu-jar.js │ │ ├── workbox.config.json │ │ └── workbox.js │ ├── composer.json │ ├── 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 │ │ │ ├── index.js.map │ │ │ ├── modal.js │ │ │ ├── modal.js.map │ │ │ ├── popover.js │ │ │ ├── popover.js.map │ │ │ ├── scrollspy.js │ │ │ ├── scrollspy.js.map │ │ │ ├── tab.js │ │ │ ├── tab.js.map │ │ │ ├── tooltip.js │ │ │ ├── tooltip.js.map │ │ │ ├── util.js │ │ │ └── util.js.map │ │ ├── src │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── index.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ └── tests │ │ │ ├── README.md │ │ │ ├── index.html │ │ │ ├── karma-bundle.conf.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 │ │ │ ├── tooltip.js │ │ │ └── util.js │ │ │ └── visual │ │ │ ├── alert.html │ │ │ ├── button.html │ │ │ ├── carousel.html │ │ │ ├── collapse.html │ │ │ ├── dropdown.html │ │ │ ├── modal.html │ │ │ ├── popover.html │ │ │ ├── scrollspy.html │ │ │ ├── tab.html │ │ │ └── tooltip.html │ ├── nuget │ │ ├── MyGet.ps1 │ │ ├── bootstrap.nuspec │ │ └── bootstrap.sass.nuspec │ ├── package-lock.json │ ├── package.js │ ├── package.json │ ├── sache.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 │ │ ├── _tables.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 │ │ │ ├── _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 │ │ │ ├── _position.scss │ │ │ ├── _screenreaders.scss │ │ │ ├── _shadows.scss │ │ │ ├── _sizing.scss │ │ │ ├── _spacing.scss │ │ │ ├── _text.scss │ │ │ └── _visibility.scss │ └── site │ │ ├── _data │ │ ├── breakpoints.yml │ │ ├── browser-bugs.yml │ │ ├── browser-features.yml │ │ ├── colors.yml │ │ ├── examples.yml │ │ ├── grays.yml │ │ ├── nav.yml │ │ ├── theme-colors.yml │ │ └── translations.yml │ │ ├── _includes │ │ ├── ads.html │ │ ├── bugify.html │ │ ├── callout-danger-async-methods.md │ │ ├── callout-info-mediaqueries-breakpoints.md │ │ ├── callout-warning-color-assistive-technologies.md │ │ ├── callout.html │ │ ├── docs-navbar.html │ │ ├── docs-sidebar.html │ │ ├── example.html │ │ ├── favicons.html │ │ ├── footer.html │ │ ├── header.html │ │ ├── icons │ │ │ ├── bootstrap.svg │ │ │ ├── download.svg │ │ │ ├── github.svg │ │ │ ├── import.svg │ │ │ ├── lightning.svg │ │ │ ├── menu.svg │ │ │ ├── slack.svg │ │ │ └── twitter.svg │ │ ├── scripts.html │ │ ├── skippy.html │ │ └── social.html │ │ ├── _layouts │ │ ├── default.html │ │ ├── docs.html │ │ ├── examples.html │ │ ├── home.html │ │ ├── redirect.html │ │ └── simple.html │ │ ├── docs │ │ └── 4.1 │ │ │ ├── about │ │ │ ├── brand.md │ │ │ ├── license.md │ │ │ ├── overview.md │ │ │ └── translations.md │ │ │ ├── assets │ │ │ ├── brand │ │ │ │ ├── bootstrap-outline.svg │ │ │ │ ├── bootstrap-punchout.svg │ │ │ │ ├── bootstrap-social-logo.png │ │ │ │ ├── bootstrap-social.png │ │ │ │ └── bootstrap-solid.svg │ │ │ ├── css │ │ │ │ ├── docs.min.css │ │ │ │ └── docs.min.css.map │ │ │ ├── img │ │ │ │ ├── bootstrap-stack.png │ │ │ │ ├── bootstrap-themes.png │ │ │ │ └── favicons │ │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ │ ├── android-chrome-512x512.png │ │ │ │ │ ├── apple-touch-icon.png │ │ │ │ │ ├── browserconfig.xml │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── manifest.json │ │ │ │ │ ├── mstile-144x144.png │ │ │ │ │ ├── mstile-150x150.png │ │ │ │ │ ├── mstile-310x150.png │ │ │ │ │ ├── mstile-310x310.png │ │ │ │ │ ├── mstile-70x70.png │ │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── js │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── docs.min.js │ │ │ │ ├── src │ │ │ │ │ ├── application.js │ │ │ │ │ ├── ie-emulation-modes-warning.js │ │ │ │ │ ├── pwa.js │ │ │ │ │ └── search.js │ │ │ │ └── vendor │ │ │ │ │ ├── anchor.min.js │ │ │ │ │ ├── clipboard.min.js │ │ │ │ │ ├── holder.min.js │ │ │ │ │ ├── jquery-slim.min.js │ │ │ │ │ └── popper.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 │ │ │ │ ├── _examples.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _masthead.scss │ │ │ │ ├── _nav.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _skiplink.scss │ │ │ │ ├── _syntax.scss │ │ │ │ ├── _variables.scss │ │ │ │ └── docs.scss │ │ │ ├── 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 │ │ │ ├── modal.md │ │ │ ├── navbar.md │ │ │ ├── navs.md │ │ │ ├── pagination.md │ │ │ ├── popovers.md │ │ │ ├── progress.md │ │ │ ├── scrollspy.md │ │ │ └── tooltips.md │ │ │ ├── content │ │ │ ├── code.md │ │ │ ├── figures.md │ │ │ ├── images.md │ │ │ ├── reboot.md │ │ │ ├── tables.md │ │ │ └── typography.md │ │ │ ├── examples │ │ │ ├── .eslintrc.json │ │ │ ├── .stylelintrc │ │ │ ├── album │ │ │ │ ├── album.css │ │ │ │ └── index.html │ │ │ ├── blog │ │ │ │ ├── blog.css │ │ │ │ └── index.html │ │ │ ├── carousel │ │ │ │ ├── carousel.css │ │ │ │ └── index.html │ │ │ ├── checkout │ │ │ │ ├── form-validation.css │ │ │ │ └── index.html │ │ │ ├── cover │ │ │ │ ├── cover.css │ │ │ │ └── index.html │ │ │ ├── dashboard │ │ │ │ ├── dashboard.css │ │ │ │ └── index.html │ │ │ ├── floating-labels │ │ │ │ ├── floating-labels.css │ │ │ │ └── index.html │ │ │ ├── grid │ │ │ │ ├── grid.css │ │ │ │ └── index.html │ │ │ ├── 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 │ │ │ ├── screenshots │ │ │ │ ├── album.png │ │ │ │ ├── blog.png │ │ │ │ ├── carousel.png │ │ │ │ ├── checkout.png │ │ │ │ ├── cover.png │ │ │ │ ├── dashboard.png │ │ │ │ ├── floating-labels.png │ │ │ │ ├── grid.png │ │ │ │ ├── jumbotron.png │ │ │ │ ├── navbar-bottom.png │ │ │ │ ├── navbar-fixed.png │ │ │ │ ├── navbar-static.png │ │ │ │ ├── navbars.png │ │ │ │ ├── offcanvas.png │ │ │ │ ├── pricing.png │ │ │ │ ├── product.png │ │ │ │ ├── sign-in.png │ │ │ │ ├── starter-template.png │ │ │ │ ├── sticky-footer-navbar.png │ │ │ │ └── sticky-footer.png │ │ │ ├── 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 │ │ │ └── tooltip-viewport │ │ │ │ ├── index.html │ │ │ │ ├── tooltip-viewport.css │ │ │ │ └── tooltip-viewport.js │ │ │ ├── extend │ │ │ ├── approach.md │ │ │ ├── icons.md │ │ │ └── index.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 │ │ │ ├── media-object.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 │ │ │ ├── position.md │ │ │ ├── screenreaders.md │ │ │ ├── shadows.md │ │ │ ├── sizing.md │ │ │ ├── spacing.md │ │ │ ├── text.md │ │ │ ├── vertical-align.md │ │ │ └── visibility.md │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── robots.txt │ │ └── sw.js └── jQuery │ ├── .editorconfig │ ├── .eslintignore │ ├── .eslintrc-browser.json │ ├── .eslintrc-node.json │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .github │ ├── ISSUE_TEMPLATE.md │ └── PULL_REQUEST_TEMPLATE.md │ ├── .gitignore │ ├── .mailmap │ ├── .npmignore │ ├── .npmrc │ ├── .travis.yml │ ├── AUTHORS.txt │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── Gruntfile.js │ ├── LICENSE.txt │ ├── README.md │ ├── build │ ├── release.js │ ├── release │ │ ├── cdn.js │ │ ├── dist.js │ │ └── ensure-sizzle.js │ └── tasks │ │ ├── build.js │ │ ├── dist.js │ │ ├── lib │ │ └── spawn_test.js │ │ ├── node_smoke_tests.js │ │ ├── promises_aplus_tests.js │ │ ├── qunit_fixture.js │ │ ├── sourcemap.js │ │ └── testswarm.js │ ├── dist │ └── .eslintrc.json │ ├── external │ ├── npo │ │ └── npo.js │ ├── qunit-assert-step │ │ ├── MIT-LICENSE.txt │ │ └── qunit-assert-step.js │ ├── qunit │ │ ├── LICENSE.txt │ │ ├── MIT-LICENSE.txt │ │ ├── qunit.css │ │ └── qunit.js │ ├── requirejs │ │ └── require.js │ ├── sinon │ │ ├── LICENSE.txt │ │ └── sinon.js │ └── sizzle │ │ ├── LICENSE.txt │ │ └── dist │ │ ├── sizzle.js │ │ ├── sizzle.min.js │ │ └── sizzle.min.map │ ├── package.json │ ├── src │ ├── .eslintrc.json │ ├── ajax.js │ ├── ajax │ │ ├── jsonp.js │ │ ├── load.js │ │ ├── parseXML.js │ │ ├── script.js │ │ ├── var │ │ │ ├── location.js │ │ │ ├── nonce.js │ │ │ └── rquery.js │ │ └── xhr.js │ ├── attributes.js │ ├── attributes │ │ ├── attr.js │ │ ├── classes.js │ │ ├── prop.js │ │ ├── support.js │ │ └── val.js │ ├── callbacks.js │ ├── core.js │ ├── core │ │ ├── DOMEval.js │ │ ├── access.js │ │ ├── camelCase.js │ │ ├── init.js │ │ ├── nodeName.js │ │ ├── parseHTML.js │ │ ├── ready-no-deferred.js │ │ ├── ready.js │ │ ├── readyException.js │ │ ├── stripAndCollapse.js │ │ ├── support.js │ │ ├── toType.js │ │ └── var │ │ │ └── rsingleTag.js │ ├── css.js │ ├── css │ │ ├── addGetHookIf.js │ │ ├── adjustCSS.js │ │ ├── curCSS.js │ │ ├── hiddenVisibleSelectors.js │ │ ├── showHide.js │ │ ├── support.js │ │ └── var │ │ │ ├── cssExpand.js │ │ │ ├── getStyles.js │ │ │ ├── isHiddenWithinTree.js │ │ │ ├── rboxStyle.js │ │ │ ├── rnumnonpx.js │ │ │ └── swap.js │ ├── data.js │ ├── data │ │ ├── Data.js │ │ └── var │ │ │ ├── acceptData.js │ │ │ ├── dataPriv.js │ │ │ └── dataUser.js │ ├── deferred.js │ ├── deferred │ │ └── exceptionHook.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── effects │ │ ├── Tween.js │ │ └── animatedSelector.js │ ├── event.js │ ├── event │ │ ├── ajax.js │ │ ├── alias.js │ │ ├── focusin.js │ │ ├── support.js │ │ └── trigger.js │ ├── exports │ │ ├── amd.js │ │ └── global.js │ ├── jquery.js │ ├── manipulation.js │ ├── manipulation │ │ ├── _evalUrl.js │ │ ├── buildFragment.js │ │ ├── getAll.js │ │ ├── setGlobalEval.js │ │ ├── support.js │ │ ├── var │ │ │ ├── rcheckableType.js │ │ │ ├── rscriptType.js │ │ │ └── rtagName.js │ │ └── wrapMap.js │ ├── offset.js │ ├── queue.js │ ├── queue │ │ └── delay.js │ ├── selector-native.js │ ├── selector-sizzle.js │ ├── selector.js │ ├── serialize.js │ ├── traversing.js │ ├── traversing │ │ ├── findFilter.js │ │ └── var │ │ │ ├── dir.js │ │ │ ├── rneedsContext.js │ │ │ └── siblings.js │ ├── var │ │ ├── ObjectFunctionString.js │ │ ├── arr.js │ │ ├── class2type.js │ │ ├── concat.js │ │ ├── document.js │ │ ├── documentElement.js │ │ ├── fnToString.js │ │ ├── getProto.js │ │ ├── hasOwn.js │ │ ├── indexOf.js │ │ ├── isFunction.js │ │ ├── isWindow.js │ │ ├── pnum.js │ │ ├── push.js │ │ ├── rcssNum.js │ │ ├── rnothtmlwhite.js │ │ ├── slice.js │ │ ├── support.js │ │ └── toString.js │ ├── wrap.js │ └── wrapper.js │ └── test │ ├── .eslintrc.json │ ├── data │ ├── 1x1.jpg │ ├── ajax │ │ ├── onunload.html │ │ └── unreleasedXHR.html │ ├── badcall.js │ ├── badjson.js │ ├── cleanScript.html │ ├── core │ │ ├── aliased.html │ │ ├── cc_on.html │ │ ├── dynamic_ready.html │ │ └── onready.html │ ├── csp.include.html │ ├── css │ │ ├── cssWidthBeforeDocReady.html │ │ └── cssWidthBrowserZoom.html │ ├── dashboard.xml │ ├── data │ │ └── dataAttrs.html │ ├── dimensions │ │ └── documentLarge.html │ ├── event │ │ ├── focusElem.html │ │ ├── focusinCrossFrame.html │ │ ├── interactiveReady.html │ │ ├── onbeforeunload.html │ │ ├── promiseReady.html │ │ ├── syncReady.html │ │ └── triggerunload.html │ ├── iframe.html │ ├── iframeTest.js │ ├── inner_module.js │ ├── jquery-1.9.1.js │ ├── json_obj.js │ ├── manipulation │ │ ├── iframe-denied.html │ │ └── scripts-context.html │ ├── mock.php │ ├── module.js │ ├── name.html │ ├── offset │ │ ├── absolute.html │ │ ├── body.html │ │ ├── boxes.html │ │ ├── fixed.html │ │ ├── relative.html │ │ ├── scroll.html │ │ ├── static.html │ │ └── table.html │ ├── qunit-fixture.html │ ├── qunit-fixture.js │ ├── readywait.html │ ├── selector │ │ ├── html5_selector.html │ │ └── sizzle_cache.html │ ├── support │ │ ├── bodyBackground.html │ │ ├── csp.js │ │ ├── csp.log │ │ └── getComputedSupport.js │ ├── test.include.html │ ├── test2.html │ ├── test3.html │ ├── testinit.js │ ├── testrunner.js │ ├── testsuite.css │ ├── text.txt │ └── with_fries.xml │ ├── delegatetest.html │ ├── hovertest.html │ ├── index.html │ ├── integration │ ├── data │ │ ├── gh-1764-fullscreen-iframe.css │ │ ├── gh-1764-fullscreen-iframe.html │ │ └── gh-1764-fullscreen.js │ ├── gh-1764-fullscreen.html │ └── gh-2343-ie-radio-click.html │ ├── jquery.js │ ├── karma.context.html │ ├── karma.debug.html │ ├── localfile.html │ ├── middleware-mockserver.js │ ├── networkerror.html │ ├── node_smoke_tests │ ├── .eslintrc.json │ ├── document_missing.js │ ├── document_passed.js │ ├── document_present_originally.js │ ├── iterable_with_native_symbol.js │ ├── iterable_with_symbol_polyfill.js │ └── lib │ │ ├── ensure_global_not_created.js │ │ ├── ensure_iterability_es6.js │ │ └── ensure_jquery.js │ ├── promises_aplus_adapters │ ├── .eslintrc.json │ ├── deferred.js │ └── when.js │ ├── unit │ ├── ajax.js │ ├── animation.js │ ├── attributes.js │ ├── basic.js │ ├── callbacks.js │ ├── core.js │ ├── css.js │ ├── data.js │ ├── deferred.js │ ├── deprecated.js │ ├── dimensions.js │ ├── effects.js │ ├── event.js │ ├── exports.js │ ├── manipulation.js │ ├── offset.js │ ├── queue.js │ ├── ready.js │ ├── selector.js │ ├── serialize.js │ ├── support.js │ ├── traversing.js │ ├── tween.js │ └── wrap.js │ └── xhtml.php ├── libman.json ├── obj ├── Debug │ └── netcoreapp2.1 │ │ ├── Razor │ │ └── Views │ │ │ ├── Account │ │ │ ├── Login.g.cshtml.cs │ │ │ ├── Logout.g.cshtml.cs │ │ │ └── Register.g.cshtml.cs │ │ │ ├── AppException │ │ │ └── Index.g.cshtml.cs │ │ │ ├── Contact │ │ │ └── Index.g.cshtml.cs │ │ │ ├── Home │ │ │ └── Index.g.cshtml.cs │ │ │ ├── Item │ │ │ ├── Details.g.cshtml.cs │ │ │ └── List.g.cshtml.cs │ │ │ ├── Order │ │ │ ├── Checkout.g.cshtml.cs │ │ │ └── CheckoutComplete.g.cshtml.cs │ │ │ ├── Shared │ │ │ ├── Carousel.g.cshtml.cs │ │ │ ├── Components │ │ │ │ ├── CategoryMenu │ │ │ │ │ └── Default.g.cshtml.cs │ │ │ │ └── ShoppingCartSummary │ │ │ │ │ └── Default.g.cshtml.cs │ │ │ ├── ItemOfTheWeek.g.cshtml.cs │ │ │ ├── ItemOverviewSummary.g.cshtml.cs │ │ │ ├── LoginPartial.g.cshtml.cs │ │ │ ├── ShoppingCartPartial.g.cshtml.cs │ │ │ └── _Layout.g.cshtml.cs │ │ │ ├── ShoppingCart │ │ │ └── Index.g.cshtml.cs │ │ │ ├── _ViewImports.g.cshtml.cs │ │ │ └── _ViewStart.g.cshtml.cs │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── popsDiner.AssemblyInfo.cs │ │ ├── popsDiner.AssemblyInfoInputs.cache │ │ ├── popsDiner.RazorAssemblyInfo.cache │ │ ├── popsDiner.RazorAssemblyInfo.cs │ │ ├── popsDiner.RazorCoreGenerate.cache │ │ ├── popsDiner.RazorTargetAssemblyInfo.cache │ │ ├── popsDiner.RazorTargetAssemblyInfo.cs │ │ ├── popsDiner.TagHelpers.input.cache │ │ ├── popsDiner.TagHelpers.output.cache │ │ ├── popsDiner.Views.dll │ │ ├── popsDiner.Views.pdb │ │ ├── popsDiner.assets.cache │ │ ├── popsDiner.csproj.CopyComplete │ │ ├── popsDiner.csproj.CoreCompileInputs.cache │ │ ├── popsDiner.csproj.FileListAbsolute.txt │ │ ├── popsDiner.csprojAssemblyReference.cache │ │ ├── popsDiner.dll │ │ └── popsDiner.pdb ├── popsDiner.csproj.nuget.cache ├── popsDiner.csproj.nuget.g.props ├── popsDiner.csproj.nuget.g.targets └── project.assets.json ├── popsDiner.csproj ├── popsDiner.csproj.user └── wwwroot ├── Content └── site.css ├── Images ├── Pop's.jpg ├── carousel1.jpg ├── carousel2.jpg ├── carousel3.jpg └── pattern.png └── lib ├── bootstrap ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ └── bootstrap.min.js └── jquery └── jquery.min.js /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /.vs/popsDiner/DesignTimeBuild/.dtbcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/popsDiner/DesignTimeBuild/.dtbcache -------------------------------------------------------------------------------- /.vs/popsDiner/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/popsDiner/v15/.suo -------------------------------------------------------------------------------- /.vs/popsDiner/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/popsDiner/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/popsDiner/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/popsDiner/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/popsDiner/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/popsDiner/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/.vs/popsDiner/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/README.md -------------------------------------------------------------------------------- /popsDiner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner.sln -------------------------------------------------------------------------------- /popsDiner/Components/CategoryMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Components/CategoryMenu.cs -------------------------------------------------------------------------------- /popsDiner/Components/ShoppingCartSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Components/ShoppingCartSummary.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/AccountController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/AppExceptionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/AppExceptionController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/ContactController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/ContactController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/HomeController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/ItemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/ItemController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/ItemDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/ItemDataController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/OrderController.cs -------------------------------------------------------------------------------- /popsDiner/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180919172055_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180919172055_Initial.Designer.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180919172055_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180919172055_Initial.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920001751_ShoppingCartItem.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920001751_ShoppingCartItem.Designer.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920001751_ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920001751_ShoppingCartItem.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920225901_Order.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920225901_Order.Designer.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920225901_Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920225901_Order.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920232221_Orders.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920232221_Orders.Designer.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180920232221_Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180920232221_Orders.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180921025234_Identity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180921025234_Identity.Designer.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/20180921025234_Identity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/20180921025234_Identity.cs -------------------------------------------------------------------------------- /popsDiner/Migrations/AppDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Migrations/AppDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /popsDiner/Models/AppDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/AppDbContext.cs -------------------------------------------------------------------------------- /popsDiner/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/Category.cs -------------------------------------------------------------------------------- /popsDiner/Models/CategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/CategoryRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/DbInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/DbInitializer.cs -------------------------------------------------------------------------------- /popsDiner/Models/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/HomeViewModel.cs -------------------------------------------------------------------------------- /popsDiner/Models/ICategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/ICategoryRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/IItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/IItemRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/IOrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/IOrderRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/Item.cs -------------------------------------------------------------------------------- /popsDiner/Models/ItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/ItemRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/MockCategoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/MockCategoryRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/MockItemRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/MockItemRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/Order.cs -------------------------------------------------------------------------------- /popsDiner/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/OrderDetail.cs -------------------------------------------------------------------------------- /popsDiner/Models/OrderRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/OrderRepository.cs -------------------------------------------------------------------------------- /popsDiner/Models/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/ShoppingCart.cs -------------------------------------------------------------------------------- /popsDiner/Models/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/ShoppingCartItem.cs -------------------------------------------------------------------------------- /popsDiner/Models/ShoppingCartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Models/ShoppingCartViewModel.cs -------------------------------------------------------------------------------- /popsDiner/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Program.cs -------------------------------------------------------------------------------- /popsDiner/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Properties/launchSettings.json -------------------------------------------------------------------------------- /popsDiner/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Startup.cs -------------------------------------------------------------------------------- /popsDiner/TagHelpers/EmailTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/TagHelpers/EmailTagHelper.cs -------------------------------------------------------------------------------- /popsDiner/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /popsDiner/ViewModels/ItemsListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/ViewModels/ItemsListViewModel.cs -------------------------------------------------------------------------------- /popsDiner/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /popsDiner/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/Views/Account/Logout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Account/Logout.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Account/Register.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/AppException/Index.cshtml: -------------------------------------------------------------------------------- 1 |

Oops! Something went wrong!

-------------------------------------------------------------------------------- /popsDiner/Views/Contact/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Contact/Index.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Item/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Item/Details.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Item/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Item/List.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Order/Checkout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Order/Checkout.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Order/Checkout.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Order/Checkout.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Order/CheckoutComplete.cshtml: -------------------------------------------------------------------------------- 1 |

@ViewBag.CheckoutCompleteMessage

-------------------------------------------------------------------------------- /popsDiner/Views/Order/CheckoutComplete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Order/CheckoutComplete.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Shared/Carousel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/Carousel.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/Components/CategoryMenu/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/Components/CategoryMenu/Default.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/Components/ShoppingCartSummary/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/Components/ShoppingCartSummary/Default.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/Components/ShoppingCartSummary/Default.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/Components/ShoppingCartSummary/Default.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Shared/ItemOfTheWeek.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/ItemOfTheWeek.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/ItemOverviewSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/ItemOverviewSummary.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/ItemOverviewSummary.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/ItemOverviewSummary.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Shared/LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/LoginPartial.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/LoginPartial.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/LoginPartial.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/Shared/ShoppingCartPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/ShoppingCartPartial.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/ShoppingCart/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/ShoppingCart/Index.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /popsDiner/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /popsDiner/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/appsettings.json -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.Views.dll -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.Views.pdb -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.deps.json -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.dll -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.pdb -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.runtimeconfig.dev.json -------------------------------------------------------------------------------- /popsDiner/bin/Debug/netcoreapp2.1/popsDiner.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bin/Debug/netcoreapp2.1/popsDiner.runtimeconfig.json -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/.bower.json -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/CHANGELOG.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/CONTRIBUTING.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/README.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/UPGRADING.md -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/css/fa-svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/css/fa-svg-with-js.css -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-brands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-brands.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-brands.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-brands.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-regular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-regular.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-regular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-regular.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-solid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-solid.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-solid.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-solid.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-v4-shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-v4-shims.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fa-v4-shims.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome-all.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/svg-with-js/js/fontawesome.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/brands.css -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/regular.css -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/css/solid.css -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/_core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/_core.less -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/_list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/_list.less -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/solid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/less/solid.less -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/_core.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/_list.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/solid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/Font-Awesome/web-fonts-with-css/scss/solid.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.babelrc.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.browserslistrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.browserslistrc -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.editorconfig -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.eslintignore -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.gitattributes -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.github/SUPPORT.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.gitignore -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.stylelintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.stylelintignore -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.stylelintrc -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/.travis.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/Gemfile -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/_config.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/.htmllintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/.htmllintrc -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/build-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/build-plugins.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/change-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/change-version.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/gcp-key.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/gcp-key.json.enc -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/generate-sri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/generate-sri.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/lint-vars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/lint-vars.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/postcss.config.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/rollup.config.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/sauce_browsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/sauce_browsers.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/saucelabs-unit-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/saucelabs-unit-test.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/ship.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/ship.sh -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/vnu-jar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/vnu-jar.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/workbox.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/workbox.config.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/build/workbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/build/workbox.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/composer.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/alert.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/alert.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/alert.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/button.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/button.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/button.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/carousel.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/carousel.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/carousel.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/collapse.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/collapse.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/collapse.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/dropdown.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/dropdown.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/dropdown.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/index.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/index.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/modal.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/modal.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/modal.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/popover.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/popover.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/popover.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/scrollspy.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/scrollspy.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/scrollspy.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/tab.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/tab.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/tab.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/tooltip.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/tooltip.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/tooltip.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/util.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/dist/util.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/dist/util.js.map -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/alert.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/button.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/carousel.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/collapse.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/dropdown.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/index.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/modal.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/popover.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/scrollspy.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/tab.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/tooltip.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/src/util.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/README.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/index.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/karma-bundle.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/karma-bundle.conf.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/karma.conf.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/alert.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/button.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/carousel.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/collapse.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/dropdown.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/modal.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/popover.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/scrollspy.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/tab.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/tooltip.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/unit/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/unit/util.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/alert.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/button.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/carousel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/carousel.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/collapse.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/dropdown.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/modal.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/popover.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/scrollspy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/scrollspy.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/tab.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/js/tests/visual/tooltip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/js/tests/visual/tooltip.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/nuget/bootstrap.sass.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/nuget/bootstrap.sass.nuspec -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/package-lock.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/package.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/sache.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_code.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_custom-forms.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_input-group.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_jumbotron.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_media.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_print.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_background-variant.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_background-variant.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_badge.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_float.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_grid-framework.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_grid-framework.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_hover.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_screen-reader.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_size.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_table-row.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_text-emphasis.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_text-emphasis.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_text-hide.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/mixins/_visibility.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_align.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_background.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_background.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_borders.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_clearfix.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_display.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_embed.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_flex.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_float.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_position.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_screenreaders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_screenreaders.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_shadows.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_sizing.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_spacing.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_text.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/scss/utilities/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/scss/utilities/_visibility.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/breakpoints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/breakpoints.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/browser-bugs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/browser-bugs.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/browser-features.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/browser-features.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/colors.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/examples.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/grays.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/grays.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/nav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/nav.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/theme-colors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/theme-colors.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_data/translations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_data/translations.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/ads.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/ads.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/bugify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/bugify.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/callout.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/docs-navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/docs-navbar.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/docs-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/docs-sidebar.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/example.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/favicons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/favicons.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/footer.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/header.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/bootstrap.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/download.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/github.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/import.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/import.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/lightning.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/menu.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/slack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/slack.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/icons/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/icons/twitter.svg -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/scripts.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/skippy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/skippy.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_includes/social.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_includes/social.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/default.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/docs.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/examples.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/examples.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/home.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/redirect.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/_layouts/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/_layouts/simple.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/about/brand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/about/brand.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/about/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/about/license.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/about/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/about/overview.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/about/translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/about/translations.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/css/docs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/css/docs.min.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/docs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/docs.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/src/pwa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/src/pwa.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/src/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/js/src/search.js -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_ads.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_ads.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_brand.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/_nav.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/assets/scss/docs.scss -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/browser-bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/browser-bugs.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/alerts.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/badge.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/buttons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/buttons.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/card.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/carousel.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/collapse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/collapse.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/dropdowns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/dropdowns.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/forms.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/jumbotron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/jumbotron.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/modal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/modal.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/navbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/navbar.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/navs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/navs.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/popovers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/popovers.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/progress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/progress.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/scrollspy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/scrollspy.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/components/tooltips.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/components/tooltips.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/code.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/figures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/figures.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/images.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/images.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/reboot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/reboot.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/tables.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/content/typography.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/content/typography.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/examples/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/examples/.stylelintrc -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/blog/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/examples/blog/blog.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/checkout/form-validation.css: -------------------------------------------------------------------------------- 1 | .container { 2 | max-width: 960px; 3 | } 4 | 5 | .lh-condensed { line-height: 1.25; } 6 | -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/grid/grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/examples/grid/grid.css -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/examples/index.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/examples/navbar-static/navbar-top.css: -------------------------------------------------------------------------------- 1 | /* Show it's not fixed to the top */ 2 | body { 3 | min-height: 75rem; 4 | } 5 | -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/extend/approach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/extend/approach.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/extend/icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/extend/icons.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/extend/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: docs 3 | title: Extend 4 | --- 5 | 6 | todo: this entire page 7 | -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/layout/grid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/layout/grid.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/layout/media-object.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/layout/media-object.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/layout/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/layout/overview.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/migration.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/borders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/borders.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/clearfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/clearfix.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/close-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/close-icon.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/colors.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/display.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/display.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/embed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/embed.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/flex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/flex.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/float.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/position.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/position.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/shadows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/shadows.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/sizing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/sizing.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/spacing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/spacing.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/text.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/visibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/docs/4.1/utilities/visibility.md -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/favicon.ico -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/index.html -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/robots.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/bootstrap/site/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/bootstrap/site/sw.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.editorconfig -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.eslintignore -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.eslintrc-browser.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.eslintrc-browser.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.eslintrc-node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.eslintrc-node.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.gitattributes -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.gitignore -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.mailmap -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.npmignore -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/.travis.yml -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/AUTHORS.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/CONTRIBUTING.md -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/Gruntfile.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/README.md -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/release.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/release/cdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/release/cdn.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/release/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/release/dist.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/release/ensure-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/release/ensure-sizzle.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/build.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/dist.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/lib/spawn_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/lib/spawn_test.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/node_smoke_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/node_smoke_tests.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/promises_aplus_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/promises_aplus_tests.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/qunit_fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/qunit_fixture.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/sourcemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/sourcemap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/build/tasks/testswarm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/build/tasks/testswarm.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/dist/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/dist/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/npo/npo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/npo/npo.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/qunit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/qunit/LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/qunit/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/qunit/MIT-LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/qunit/qunit.css -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/qunit/qunit.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/requirejs/require.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sinon/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sinon/LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sinon/sinon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sinon/sinon.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sizzle/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sizzle/LICENSE.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.min.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/external/sizzle/dist/sizzle.min.map -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/package.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/jsonp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/jsonp.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/load.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/parseXML.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/script.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/var/location.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return window.location; 5 | } ); 6 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Date.now(); 5 | } ); 6 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/var/rquery.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/ajax/xhr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/ajax/xhr.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes/attr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes/attr.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes/classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes/classes.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes/prop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes/prop.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/attributes/val.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/attributes/val.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/callbacks.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/DOMEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/DOMEval.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/access.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/access.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/camelCase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/camelCase.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/init.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/nodeName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/nodeName.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/parseHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/parseHTML.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/ready-no-deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/ready-no-deferred.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/ready.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/readyException.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/readyException.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/stripAndCollapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/stripAndCollapse.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/toType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/toType.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/core/var/rsingleTag.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/addGetHookIf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/addGetHookIf.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/adjustCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/adjustCSS.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/curCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/curCSS.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/hiddenVisibleSelectors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/hiddenVisibleSelectors.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/showHide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/showHide.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/cssExpand.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/getStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/getStyles.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/isHiddenWithinTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/isHiddenWithinTree.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/rboxStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/rboxStyle.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/rnumnonpx.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/css/var/swap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/css/var/swap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/data.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/data/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/data/Data.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/data/var/acceptData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/data/var/acceptData.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/data/var/dataPriv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/data/var/dataPriv.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/data/var/dataUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/data/var/dataUser.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/deferred.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/deferred/exceptionHook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/deferred/exceptionHook.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/deprecated.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/dimensions.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/effects.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/effects/Tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/effects/Tween.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/effects/animatedSelector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/effects/animatedSelector.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event/ajax.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event/alias.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event/alias.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event/focusin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event/focusin.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/event/trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/event/trigger.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/exports/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/exports/amd.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/exports/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/exports/global.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/jquery.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/_evalUrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/_evalUrl.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/buildFragment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/buildFragment.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/getAll.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/setGlobalEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/setGlobalEval.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/var/rcheckableType.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/var/rscriptType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/var/rscriptType.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/var/rtagName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/var/rtagName.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/manipulation/wrapMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/manipulation/wrapMap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/offset.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/queue.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/queue/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/queue/delay.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/selector-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/selector-native.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/selector-sizzle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/selector-sizzle.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/selector.js: -------------------------------------------------------------------------------- 1 | define( [ "./selector-sizzle" ], function() { 2 | "use strict"; 3 | } ); 4 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/serialize.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/traversing.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/traversing/findFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/traversing/findFilter.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/traversing/var/dir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/traversing/var/dir.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/traversing/var/rneedsContext.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/traversing/var/siblings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/traversing/var/siblings.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/ObjectFunctionString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/ObjectFunctionString.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return []; 5 | } ); 6 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | // [[Class]] -> type pairs 5 | return {}; 6 | } ); 7 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/concat.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/document.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/documentElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/documentElement.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/fnToString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/fnToString.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/getProto.js: -------------------------------------------------------------------------------- 1 | define( function() { 2 | "use strict"; 3 | 4 | return Object.getPrototypeOf; 5 | } ); 6 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/hasOwn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/hasOwn.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/indexOf.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/isFunction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/isFunction.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/isWindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/isWindow.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/pnum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/pnum.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/push.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/rcssNum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/rcssNum.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/rnothtmlwhite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/rnothtmlwhite.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/slice.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/var/toString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/var/toString.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/wrap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/src/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/src/wrapper.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/1x1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/1x1.jpg -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/ajax/onunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/ajax/onunload.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/ajax/unreleasedXHR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/ajax/unreleasedXHR.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/badcall.js: -------------------------------------------------------------------------------- 1 | undefined(); 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/badjson.js: -------------------------------------------------------------------------------- 1 | {bad: toTheBone} 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/cleanScript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/cleanScript.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/core/aliased.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/core/aliased.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/core/cc_on.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/core/cc_on.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/core/dynamic_ready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/core/dynamic_ready.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/core/onready.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/core/onready.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/csp.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/csp.include.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/css/cssWidthBrowserZoom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/css/cssWidthBrowserZoom.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/dashboard.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/dashboard.xml -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/data/dataAttrs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/data/dataAttrs.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/dimensions/documentLarge.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/dimensions/documentLarge.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/focusElem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/focusElem.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/focusinCrossFrame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/focusinCrossFrame.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/interactiveReady.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/interactiveReady.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/onbeforeunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/onbeforeunload.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/promiseReady.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/promiseReady.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/syncReady.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/syncReady.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/event/triggerunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/event/triggerunload.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/iframe.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/iframeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/iframeTest.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/inner_module.js: -------------------------------------------------------------------------------- 1 | window.ok( true, "evaluated: inner module with src" ); 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/jquery-1.9.1.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/json_obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/json_obj.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/mock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/mock.php -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/module.js: -------------------------------------------------------------------------------- 1 | window.ok( true, "evaluated: module with src" ); 2 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/name.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/name.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/absolute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/absolute.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/body.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/body.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/boxes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/boxes.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/fixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/fixed.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/relative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/relative.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/scroll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/scroll.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/static.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/static.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/offset/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/offset/table.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/qunit-fixture.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/qunit-fixture.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/qunit-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/qunit-fixture.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/readywait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/readywait.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/selector/html5_selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/selector/html5_selector.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/selector/sizzle_cache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/selector/sizzle_cache.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/support/bodyBackground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/support/bodyBackground.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/support/csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/support/csp.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/support/csp.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/support/getComputedSupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/support/getComputedSupport.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/test.include.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/test.include.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/test2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/test2.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/test3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/test3.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/testinit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/testinit.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/testrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/testrunner.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/testsuite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/testsuite.css -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/text.txt -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/data/with_fries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/data/with_fries.xml -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/delegatetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/delegatetest.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/hovertest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/hovertest.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/index.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/integration/gh-1764-fullscreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/integration/gh-1764-fullscreen.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/jquery.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/karma.context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/karma.context.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/karma.debug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/karma.debug.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/localfile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/localfile.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/middleware-mockserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/middleware-mockserver.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/networkerror.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/networkerror.html -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/node_smoke_tests/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/node_smoke_tests/.eslintrc.json -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/node_smoke_tests/document_passed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/node_smoke_tests/document_passed.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/promises_aplus_adapters/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/promises_aplus_adapters/deferred.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/promises_aplus_adapters/when.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/promises_aplus_adapters/when.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/ajax.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/animation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/animation.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/attributes.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/basic.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/callbacks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/callbacks.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/core.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/css.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/data.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/deferred.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/deferred.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/deprecated.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/dimensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/dimensions.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/effects.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/event.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/exports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/exports.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/manipulation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/manipulation.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/offset.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/queue.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/ready.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/selector.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/serialize.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/support.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/traversing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/traversing.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/tween.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/unit/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/unit/wrap.js -------------------------------------------------------------------------------- /popsDiner/bower_components/jQuery/test/xhtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/bower_components/jQuery/test/xhtml.php -------------------------------------------------------------------------------- /popsDiner/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/libman.json -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Login.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Login.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Logout.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Logout.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Register.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Account/Register.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Contact/Index.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Contact/Index.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Home/Index.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Home/Index.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Item/Details.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Item/Details.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Item/List.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/Item/List.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/_ViewImports.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/_ViewImports.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/_ViewStart.g.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/Razor/Views/_ViewStart.g.cshtml.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.AssemblyInfo.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | fb55d5245bdbee6d0b65eeaaa2e9e931b8f994a2 2 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | c9d51c961a4abc1694e9df0b37a51c023498c4e6 2 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorAssemblyInfo.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorCoreGenerate.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorCoreGenerate.cache -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorTargetAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | 69ae77fb9b83b95708c9992aa223e3aab59030fe 2 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorTargetAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.RazorTargetAssemblyInfo.cs -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.TagHelpers.input.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.TagHelpers.output.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.TagHelpers.output.cache -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.Views.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.Views.dll -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.Views.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.Views.pdb -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.assets.cache -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0a922774b915d34f45997ce851a5071a905af394 2 | -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.dll -------------------------------------------------------------------------------- /popsDiner/obj/Debug/netcoreapp2.1/popsDiner.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/Debug/netcoreapp2.1/popsDiner.pdb -------------------------------------------------------------------------------- /popsDiner/obj/popsDiner.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/popsDiner.csproj.nuget.cache -------------------------------------------------------------------------------- /popsDiner/obj/popsDiner.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/popsDiner.csproj.nuget.g.props -------------------------------------------------------------------------------- /popsDiner/obj/popsDiner.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/popsDiner.csproj.nuget.g.targets -------------------------------------------------------------------------------- /popsDiner/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/obj/project.assets.json -------------------------------------------------------------------------------- /popsDiner/popsDiner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/popsDiner.csproj -------------------------------------------------------------------------------- /popsDiner/popsDiner.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/popsDiner.csproj.user -------------------------------------------------------------------------------- /popsDiner/wwwroot/Content/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Content/site.css -------------------------------------------------------------------------------- /popsDiner/wwwroot/Images/Pop's.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Images/Pop's.jpg -------------------------------------------------------------------------------- /popsDiner/wwwroot/Images/carousel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Images/carousel1.jpg -------------------------------------------------------------------------------- /popsDiner/wwwroot/Images/carousel2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Images/carousel2.jpg -------------------------------------------------------------------------------- /popsDiner/wwwroot/Images/carousel3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Images/carousel3.jpg -------------------------------------------------------------------------------- /popsDiner/wwwroot/Images/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/Images/pattern.png -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /popsDiner/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rutvik17/Pops-Diner/HEAD/popsDiner/wwwroot/lib/jquery/jquery.min.js --------------------------------------------------------------------------------