├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── README.md ├── app ├── Console │ ├── Commands │ │ └── MetamaskValidatorCommand.php │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Controller.php │ │ ├── Home │ │ │ └── HomeController.php │ │ └── Metamask │ │ │ └── MetamaskController.php │ ├── Kernel.php │ └── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php ├── Models │ ├── Transaction.php │ └── User.php └── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── filesystems.php ├── hashing.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ └── 2021_02_10_154611_create_transactions_table.php └── seeders │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── css │ ├── argon.css │ ├── argon.min.css │ └── bootstrap │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css ├── favicon.ico ├── fonts │ └── nucleo │ │ ├── nucleo-icons.eot │ │ ├── nucleo-icons.svg │ │ ├── nucleo-icons.ttf │ │ ├── nucleo-icons.woff │ │ └── nucleo-icons.woff2 ├── img │ ├── brand │ │ ├── blue.png │ │ ├── favicon.png │ │ └── white.png │ ├── icons │ │ └── common │ │ │ ├── github.svg │ │ │ └── google.svg │ └── theme │ │ ├── angular.jpg │ │ ├── bootstrap.jpg │ │ ├── img-1-1000x600.jpg │ │ ├── profile-cover.jpg │ │ ├── react.jpg │ │ ├── sketch.jpg │ │ ├── team-1.jpg │ │ ├── team-2.jpg │ │ ├── team-3.jpg │ │ ├── team-4.jpg │ │ ├── team-5.jpg │ │ └── vue.jpg ├── index.php ├── js │ ├── argon.js │ ├── argon.min.js │ └── components │ │ ├── charts │ │ ├── chart-bars.js │ │ ├── chart-bars.min.js │ │ ├── chart-line.js │ │ └── chart-line.min.js │ │ ├── custom │ │ ├── form-control.js │ │ └── form-control.min.js │ │ ├── init │ │ ├── chart-init.js │ │ ├── chart-init.min.js │ │ ├── copy-icon.js │ │ ├── copy-icon.min.js │ │ ├── navbar.js │ │ ├── navbar.min.js │ │ ├── popover.js │ │ ├── popover.min.js │ │ ├── scroll-to.js │ │ ├── scroll-to.min.js │ │ ├── tooltip.js │ │ └── tooltip.min.js │ │ ├── maps │ │ ├── maps-default.js │ │ └── maps-default.min.js │ │ └── vendor │ │ ├── bootstrap-datepicker.js │ │ ├── bootstrap-datepicker.min.js │ │ ├── nouislider.js │ │ ├── nouislider.min.js │ │ ├── scrollbar.js │ │ └── scrollbar.min.js ├── robots.txt ├── vendor │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ ├── all.min.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.min.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.min.css │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ ├── all.min.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.min.js │ │ │ ├── solid.min.js │ │ │ └── v4-shims.min.js │ │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.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 │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── anchor-js │ │ └── anchor.min.js │ ├── animate.css │ │ ├── animate-config.json │ │ ├── animate.min.css │ │ └── source │ │ │ ├── _base.css │ │ │ ├── _vars.css │ │ │ ├── attention_seekers │ │ │ ├── bounce.css │ │ │ ├── flash.css │ │ │ ├── headShake.css │ │ │ ├── heartBeat.css │ │ │ ├── jello.css │ │ │ ├── pulse.css │ │ │ ├── rubberBand.css │ │ │ ├── shake.css │ │ │ ├── swing.css │ │ │ ├── tada.css │ │ │ └── wobble.css │ │ │ ├── bouncing_entrances │ │ │ ├── bounceIn.css │ │ │ ├── bounceInDown.css │ │ │ ├── bounceInLeft.css │ │ │ ├── bounceInRight.css │ │ │ └── bounceInUp.css │ │ │ ├── bouncing_exits │ │ │ ├── bounceOut.css │ │ │ ├── bounceOutDown.css │ │ │ ├── bounceOutLeft.css │ │ │ ├── bounceOutRight.css │ │ │ └── bounceOutUp.css │ │ │ ├── fading_entrances │ │ │ ├── fadeIn.css │ │ │ ├── fadeInDown.css │ │ │ ├── fadeInDownBig.css │ │ │ ├── fadeInLeft.css │ │ │ ├── fadeInLeftBig.css │ │ │ ├── fadeInRight.css │ │ │ ├── fadeInRightBig.css │ │ │ ├── fadeInUp.css │ │ │ └── fadeInUpBig.css │ │ │ ├── fading_exits │ │ │ ├── fadeOut.css │ │ │ ├── fadeOutDown.css │ │ │ ├── fadeOutDownBig.css │ │ │ ├── fadeOutLeft.css │ │ │ ├── fadeOutLeftBig.css │ │ │ ├── fadeOutRight.css │ │ │ ├── fadeOutRightBig.css │ │ │ ├── fadeOutUp.css │ │ │ └── fadeOutUpBig.css │ │ │ ├── flippers │ │ │ ├── flip.css │ │ │ ├── flipInX.css │ │ │ ├── flipInY.css │ │ │ ├── flipOutX.css │ │ │ └── flipOutY.css │ │ │ ├── lightspeed │ │ │ ├── lightSpeedIn.css │ │ │ └── lightSpeedOut.css │ │ │ ├── rotating_entrances │ │ │ ├── rotateIn.css │ │ │ ├── rotateInDownLeft.css │ │ │ ├── rotateInDownRight.css │ │ │ ├── rotateInUpLeft.css │ │ │ └── rotateInUpRight.css │ │ │ ├── rotating_exits │ │ │ ├── rotateOut.css │ │ │ ├── rotateOutDownLeft.css │ │ │ ├── rotateOutDownRight.css │ │ │ ├── rotateOutUpLeft.css │ │ │ └── rotateOutUpRight.css │ │ │ ├── sliding_entrances │ │ │ ├── slideInDown.css │ │ │ ├── slideInLeft.css │ │ │ ├── slideInRight.css │ │ │ └── slideInUp.css │ │ │ ├── sliding_exits │ │ │ ├── slideOutDown.css │ │ │ ├── slideOutLeft.css │ │ │ ├── slideOutRight.css │ │ │ └── slideOutUp.css │ │ │ ├── specials │ │ │ ├── hinge.css │ │ │ ├── jackInTheBox.css │ │ │ ├── rollIn.css │ │ │ └── rollOut.css │ │ │ ├── zooming_entrances │ │ │ ├── zoomIn.css │ │ │ ├── zoomInDown.css │ │ │ ├── zoomInLeft.css │ │ │ ├── zoomInRight.css │ │ │ └── zoomInUp.css │ │ │ └── zooming_exits │ │ │ ├── zoomOut.css │ │ │ ├── zoomOutDown.css │ │ │ ├── zoomOutLeft.css │ │ │ ├── zoomOutRight.css │ │ │ └── zoomOutUp.css │ ├── bootstrap-datepicker │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-notify │ │ └── bootstrap-notify.min.js │ ├── bootstrap-rtl │ │ └── bootstrap-rtl.css │ ├── bootstrap-tagsinput │ │ └── dist │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ ├── bootstrap-tagsinput-typeahead.css │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ └── bootstrap-tagsinput.zip │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.min.js │ ├── chart.js │ │ └── dist │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.extension.js │ │ │ ├── Chart.min.css │ │ │ └── Chart.min.js │ ├── clipboard │ │ └── dist │ │ │ └── clipboard.min.js │ ├── datatables.net-bs4 │ │ ├── css │ │ │ └── dataTables.bootstrap4.min.css │ │ └── js │ │ │ └── dataTables.bootstrap4.min.js │ ├── datatables.net-buttons-bs4 │ │ ├── css │ │ │ └── buttons.bootstrap4.min.css │ │ └── js │ │ │ └── buttons.bootstrap4.min.js │ ├── datatables.net-buttons │ │ ├── License.txt │ │ ├── js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.flash.min.js │ │ │ ├── buttons.html5.min.js │ │ │ ├── buttons.print.min.js │ │ │ └── dataTables.buttons.min.js │ │ └── swf │ │ │ └── flashExport.swf │ ├── datatables.net-responsive-bs4 │ │ ├── css │ │ │ └── responsive.bootstrap4.min.css │ │ └── js │ │ │ └── responsive.bootstrap4.min.js │ ├── datatables.net-select-bs4 │ │ ├── css │ │ │ └── select.bootstrap4.min.css │ │ └── js │ │ │ └── select.bootstrap4.min.js │ ├── datatables.net-select │ │ ├── License.txt │ │ └── js │ │ │ └── dataTables.select.min.js │ ├── datatables.net │ │ ├── License.txt │ │ └── js │ │ │ └── jquery.dataTables.min.js │ ├── dropzone │ │ └── dist │ │ │ ├── basic.css │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone.css │ │ │ ├── dropzone.js │ │ │ └── min │ │ │ ├── basic.min.css │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ ├── font-awesome │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── fullcalendar │ │ └── dist │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.min.css │ │ │ ├── gcal.min.js │ │ │ ├── locale-all.js │ │ │ └── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ ├── gulp-copy │ │ ├── index.js │ │ ├── lib │ │ │ └── gulp-copy.js │ │ └── node_modules │ │ │ ├── arr-diff │ │ │ └── index.js │ │ │ ├── arr-union │ │ │ └── index.js │ │ │ ├── array-slice │ │ │ └── index.js │ │ │ ├── extend-shallow │ │ │ └── index.js │ │ │ ├── glob-watcher │ │ │ └── index.js │ │ │ ├── gulp │ │ │ ├── bin │ │ │ │ └── gulp.js │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ └── gulp-cli │ │ │ │ ├── bin │ │ │ │ └── gulp.js │ │ │ │ ├── completion │ │ │ │ ├── bash │ │ │ │ ├── fish │ │ │ │ ├── powershell │ │ │ │ └── zsh │ │ │ │ ├── gulp.1 │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ ├── shared │ │ │ │ ├── ansi.js │ │ │ │ ├── cli-options.js │ │ │ │ ├── completion.js │ │ │ │ ├── config │ │ │ │ │ ├── cli-flags.js │ │ │ │ │ ├── env-flags.js │ │ │ │ │ └── load-files.js │ │ │ │ ├── exit.js │ │ │ │ ├── get-blacklist.js │ │ │ │ ├── log │ │ │ │ │ ├── blacklist-error.js │ │ │ │ │ ├── copy-tree.js │ │ │ │ │ ├── tasks.js │ │ │ │ │ ├── to-console.js │ │ │ │ │ └── verify.js │ │ │ │ ├── make-title.js │ │ │ │ ├── register-exports.js │ │ │ │ ├── tildify.js │ │ │ │ └── verify-dependencies.js │ │ │ │ └── versioned │ │ │ │ ├── ^3.7.0 │ │ │ │ ├── format-error.js │ │ │ │ ├── index.js │ │ │ │ ├── log │ │ │ │ │ ├── events.js │ │ │ │ │ └── tasks-simple.js │ │ │ │ └── task-tree.js │ │ │ │ ├── ^4.0.0-alpha.1 │ │ │ │ └── index.js │ │ │ │ ├── ^4.0.0-alpha.2 │ │ │ │ └── index.js │ │ │ │ └── ^4.0.0 │ │ │ │ ├── format-error.js │ │ │ │ ├── index.js │ │ │ │ └── log │ │ │ │ ├── events.js │ │ │ │ ├── get-task.js │ │ │ │ ├── sync-task.js │ │ │ │ └── tasks-simple.js │ │ │ ├── kind-of │ │ │ └── index.js │ │ │ ├── plugin-error │ │ │ └── index.js │ │ │ ├── yargs-parser │ │ │ ├── LICENSE.txt │ │ │ ├── index.js │ │ │ └── lib │ │ │ │ └── tokenize-arg-string.js │ │ │ └── yargs │ │ │ ├── completion.sh.hbs │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── apply-extends.js │ │ │ ├── argsert.js │ │ │ ├── assign.js │ │ │ ├── command.js │ │ │ ├── completion.js │ │ │ ├── levenshtein.js │ │ │ ├── obj-filter.js │ │ │ ├── usage.js │ │ │ ├── validation.js │ │ │ └── yerror.js │ │ │ ├── locales │ │ │ ├── be.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pirate.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── pt_BR.json │ │ │ ├── ru.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── zh_CN.json │ │ │ └── zh_TW.json │ │ │ └── yargs.js │ ├── headroom.js │ │ └── dist │ │ │ ├── angular.headroom.min.js │ │ │ ├── headroom.min.js │ │ │ └── jQuery.headroom.min.js │ ├── holderjs │ │ ├── holder.min.js │ │ └── package.js │ ├── jekyll │ │ ├── CONTRIBUTING.markdown │ │ ├── Gemfile │ │ ├── History.markdown │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── benchmark │ │ │ ├── flat-map │ │ │ ├── hash-fetch │ │ │ ├── jekyll-sanitize-path │ │ │ ├── proc-call-vs-yield │ │ │ ├── sequential-assignment │ │ │ ├── string-concat │ │ │ ├── string-replacement │ │ │ └── symbol-to-proc │ │ ├── bin │ │ │ └── jekyll │ │ ├── features │ │ │ ├── collections.feature │ │ │ ├── create_sites.feature │ │ │ ├── data.feature │ │ │ ├── drafts.feature │ │ │ ├── embed_filters.feature │ │ │ ├── frontmatter_defaults.feature │ │ │ ├── include_tag.feature │ │ │ ├── incremental_rebuild.feature │ │ │ ├── markdown.feature │ │ │ ├── pagination.feature │ │ │ ├── permalinks.feature │ │ │ ├── plugins.feature │ │ │ ├── post_data.feature │ │ │ ├── post_excerpts.feature │ │ │ ├── rendering.feature │ │ │ ├── site_configuration.feature │ │ │ ├── site_data.feature │ │ │ ├── step_definitions │ │ │ │ └── jekyll_steps.rb │ │ │ └── support │ │ │ │ ├── env.rb │ │ │ │ └── overview.rb │ │ ├── jekyll.gemspec │ │ ├── lib │ │ │ ├── jekyll.rb │ │ │ ├── jekyll │ │ │ │ ├── cleaner.rb │ │ │ │ ├── collection.rb │ │ │ │ ├── command.rb │ │ │ │ ├── commands │ │ │ │ │ ├── build.rb │ │ │ │ │ ├── clean.rb │ │ │ │ │ ├── doctor.rb │ │ │ │ │ ├── help.rb │ │ │ │ │ ├── new.rb │ │ │ │ │ └── serve.rb │ │ │ │ ├── configuration.rb │ │ │ │ ├── converter.rb │ │ │ │ ├── converters │ │ │ │ │ ├── identity.rb │ │ │ │ │ ├── markdown.rb │ │ │ │ │ └── markdown │ │ │ │ │ │ ├── kramdown_parser.rb │ │ │ │ │ │ ├── maruku_parser.rb │ │ │ │ │ │ ├── rdiscount_parser.rb │ │ │ │ │ │ └── redcarpet_parser.rb │ │ │ │ ├── convertible.rb │ │ │ │ ├── deprecator.rb │ │ │ │ ├── document.rb │ │ │ │ ├── draft.rb │ │ │ │ ├── entry_filter.rb │ │ │ │ ├── errors.rb │ │ │ │ ├── excerpt.rb │ │ │ │ ├── external.rb │ │ │ │ ├── filters.rb │ │ │ │ ├── frontmatter_defaults.rb │ │ │ │ ├── generator.rb │ │ │ │ ├── layout.rb │ │ │ │ ├── layout_reader.rb │ │ │ │ ├── liquid_extensions.rb │ │ │ │ ├── log_adapter.rb │ │ │ │ ├── mime.types │ │ │ │ ├── page.rb │ │ │ │ ├── plugin.rb │ │ │ │ ├── plugin_manager.rb │ │ │ │ ├── post.rb │ │ │ │ ├── publisher.rb │ │ │ │ ├── regenerator.rb │ │ │ │ ├── related_posts.rb │ │ │ │ ├── renderer.rb │ │ │ │ ├── site.rb │ │ │ │ ├── static_file.rb │ │ │ │ ├── stevenson.rb │ │ │ │ ├── tags │ │ │ │ │ ├── highlight.rb │ │ │ │ │ ├── include.rb │ │ │ │ │ └── post_url.rb │ │ │ │ ├── url.rb │ │ │ │ ├── utils.rb │ │ │ │ └── version.rb │ │ │ └── site_template │ │ │ │ ├── _includes │ │ │ │ ├── footer.html │ │ │ │ ├── head.html │ │ │ │ └── header.html │ │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ ├── page.html │ │ │ │ └── post.html │ │ │ │ ├── _posts │ │ │ │ └── 0000-00-00-welcome-to-jekyll.markdown.erb │ │ │ │ ├── feed.xml │ │ │ │ └── index.html │ │ ├── script │ │ │ ├── bootstrap │ │ │ ├── branding │ │ │ ├── cibuild │ │ │ ├── console │ │ │ ├── cucumber │ │ │ ├── proof │ │ │ ├── rebund │ │ │ ├── stackprof │ │ │ └── test │ │ └── site │ │ │ ├── CNAME │ │ │ ├── _includes │ │ │ ├── analytics.html │ │ │ ├── anchor_links.html │ │ │ ├── docs_contents.html │ │ │ ├── docs_contents_mobile.html │ │ │ ├── docs_option.html │ │ │ ├── docs_ul.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── news_contents.html │ │ │ ├── news_contents_mobile.html │ │ │ ├── news_item.html │ │ │ ├── primary-nav-items.html │ │ │ ├── section_nav.html │ │ │ └── top.html │ │ │ ├── _layouts │ │ │ ├── default.html │ │ │ ├── docs.html │ │ │ ├── news.html │ │ │ └── news_item.html │ │ │ ├── _posts │ │ │ ├── 2013-05-06-jekyll-1-0-0-released.markdown │ │ │ ├── 2013-05-08-jekyll-1-0-1-released.markdown │ │ │ ├── 2013-05-12-jekyll-1-0-2-released.markdown │ │ │ ├── 2013-06-07-jekyll-1-0-3-released.markdown │ │ │ ├── 2013-07-14-jekyll-1-1-0-released.markdown │ │ │ ├── 2013-07-24-jekyll-1-1-1-released.markdown │ │ │ ├── 2013-07-25-jekyll-1-0-4-released.markdown │ │ │ ├── 2013-07-25-jekyll-1-1-2-released.markdown │ │ │ ├── 2013-09-06-jekyll-1-2-0-released.markdown │ │ │ ├── 2013-09-14-jekyll-1-2-1-released.markdown │ │ │ ├── 2013-10-28-jekyll-1-3-0-rc1-released.markdown │ │ │ ├── 2013-11-04-jekyll-1-3-0-released.markdown │ │ │ ├── 2013-11-26-jekyll-1-3-1-released.markdown │ │ │ ├── 2013-12-07-jekyll-1-4-0-released.markdown │ │ │ ├── 2013-12-09-jekyll-1-4-1-released.markdown │ │ │ ├── 2013-12-16-jekyll-1-4-2-released.markdown │ │ │ ├── 2014-01-13-jekyll-1-4-3-released.markdown │ │ │ ├── 2014-03-24-jekyll-1-5-0-released.markdown │ │ │ ├── 2014-03-27-jekyll-1-5-1-released.markdown │ │ │ ├── 2014-05-06-jekyll-turns-2-0-0.markdown │ │ │ ├── 2014-05-08-jekyll-2-0-3-released.markdown │ │ │ ├── 2014-06-04-jekyll-stickers-1-dollar-stickermule.markdown │ │ │ ├── 2014-06-28-jekyll-turns-21-i-mean-2-1-0.markdown │ │ │ ├── 2014-07-01-jekyll-2-1-1-released.markdown │ │ │ ├── 2014-07-29-jekyll-2-2-0-released.markdown │ │ │ ├── 2014-08-10-jekyll-2-3-0-released.markdown │ │ │ ├── 2014-09-09-jekyll-2-4-0-released.markdown │ │ │ ├── 2014-11-06-jekylls-midlife-crisis-jekyll-turns-2-5-0.markdown │ │ │ ├── 2014-11-08-jekyll-2-5-1-released.markdown │ │ │ ├── 2014-11-12-jekyll-2-5-2-released.markdown │ │ │ ├── 2014-12-22-jekyll-2-5-3-released.markdown │ │ │ ├── 2015-01-20-jekyll-meet-and-greet.markdown │ │ │ └── 2015-01-24-jekyll-3-0-0-beta1-released.markdown │ │ │ ├── favicon.ico │ │ │ ├── feed.xml │ │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ │ ├── freenode.txt │ │ │ ├── img │ │ │ ├── article-footer.png │ │ │ ├── footer-arrow.png │ │ │ ├── footer-logo.png │ │ │ ├── jekyll-sticker.jpg │ │ │ ├── logo-2x.png │ │ │ ├── logo-rss.png │ │ │ └── octojekyll.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── html5shiv.min.js │ │ │ └── respond.min.js │ │ │ ├── latest_version.txt │ │ │ └── news │ │ │ ├── index.html │ │ │ └── releases │ │ │ └── index.html │ ├── jquery-scroll-lock │ │ └── dist │ │ │ └── jquery-scrollLock.min.js │ ├── jquery.scrollbar │ │ ├── index.js │ │ ├── jquery.scrollbar.css │ │ ├── jquery.scrollbar.min.js │ │ ├── license-gpl.txt │ │ ├── license-mit.txt │ │ ├── meteor │ │ │ └── tests.js │ │ ├── package.js │ │ ├── sass │ │ │ └── config.rb │ │ └── scrollbar.jquery.json │ ├── jquery │ │ └── dist │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ ├── js-cookie │ │ └── js.cookie.js │ ├── jvectormap-next │ │ ├── LICENSE-AGPL │ │ ├── LICENSE-COMMERCIAL │ │ ├── jquery-jvectormap.css │ │ └── jquery-jvectormap.min.js │ ├── lavalamp │ │ ├── css │ │ │ └── jquery.lavalamp.css │ │ ├── demo.html │ │ ├── images │ │ │ ├── 103332256.jpg │ │ │ ├── 104209996.jpg │ │ │ ├── 146672189.jpg │ │ │ └── sb10065850n-001.jpg │ │ ├── js │ │ │ ├── jquery-3.1.1.min.js │ │ │ └── jquery.lavalamp.min.js │ │ └── lavalamp.jquery.json │ ├── list.js │ │ └── dist │ │ │ └── list.min.js │ ├── minimatch │ │ └── minimatch.js │ ├── moment.min.js │ ├── moment │ │ ├── ender.js │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-SG.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ └── package.js │ ├── nouislider │ │ └── distribute │ │ │ ├── nouislider.min.css │ │ │ └── nouislider.min.js │ ├── nucleo │ │ ├── css │ │ │ ├── nucleo-svg.css │ │ │ └── nucleo.css │ │ └── fonts │ │ │ ├── nucleo-icons.eot │ │ │ ├── nucleo-icons.svg │ │ │ ├── nucleo-icons.ttf │ │ │ ├── nucleo-icons.woff │ │ │ └── nucleo-icons.woff2 │ ├── onscreen │ │ └── dist │ │ │ ├── on-screen.es6.js │ │ │ └── on-screen.umd.min.js │ ├── prismjs │ │ ├── components.js │ │ ├── components.json │ │ ├── components │ │ │ ├── index.js │ │ │ ├── prism-abap.min.js │ │ │ ├── prism-abnf.min.js │ │ │ ├── prism-actionscript.min.js │ │ │ ├── prism-ada.min.js │ │ │ ├── prism-antlr4.min.js │ │ │ ├── prism-apacheconf.min.js │ │ │ ├── prism-apl.min.js │ │ │ ├── prism-applescript.min.js │ │ │ ├── prism-aql.min.js │ │ │ ├── prism-arduino.min.js │ │ │ ├── prism-arff.min.js │ │ │ ├── prism-asciidoc.min.js │ │ │ ├── prism-asm6502.min.js │ │ │ ├── prism-aspnet.min.js │ │ │ ├── prism-autohotkey.min.js │ │ │ ├── prism-autoit.min.js │ │ │ ├── prism-bash.min.js │ │ │ ├── prism-basic.min.js │ │ │ ├── prism-batch.min.js │ │ │ ├── prism-bbcode.min.js │ │ │ ├── prism-bison.min.js │ │ │ ├── prism-bnf.min.js │ │ │ ├── prism-brainfuck.min.js │ │ │ ├── prism-brightscript.min.js │ │ │ ├── prism-bro.min.js │ │ │ ├── prism-c.min.js │ │ │ ├── prism-cil.min.js │ │ │ ├── prism-clike.min.js │ │ │ ├── prism-clojure.min.js │ │ │ ├── prism-cmake.min.js │ │ │ ├── prism-coffeescript.min.js │ │ │ ├── prism-core.min.js │ │ │ ├── prism-cpp.min.js │ │ │ ├── prism-crystal.min.js │ │ │ ├── prism-csharp.min.js │ │ │ ├── prism-csp.min.js │ │ │ ├── prism-css-extras.min.js │ │ │ ├── prism-css.min.js │ │ │ ├── prism-d.min.js │ │ │ ├── prism-dart.min.js │ │ │ ├── prism-diff.min.js │ │ │ ├── prism-django.min.js │ │ │ ├── prism-dns-zone-file.min.js │ │ │ ├── prism-docker.min.js │ │ │ ├── prism-ebnf.min.js │ │ │ ├── prism-eiffel.min.js │ │ │ ├── prism-ejs.min.js │ │ │ ├── prism-elixir.min.js │ │ │ ├── prism-elm.min.js │ │ │ ├── prism-erb.min.js │ │ │ ├── prism-erlang.min.js │ │ │ ├── prism-etlua.min.js │ │ │ ├── prism-firestore-security-rules.min.js │ │ │ ├── prism-flow.min.js │ │ │ ├── prism-fortran.min.js │ │ │ ├── prism-fsharp.min.js │ │ │ ├── prism-ftl.min.js │ │ │ ├── prism-gcode.min.js │ │ │ ├── prism-gdscript.min.js │ │ │ ├── prism-gedcom.min.js │ │ │ ├── prism-gherkin.min.js │ │ │ ├── prism-git.min.js │ │ │ ├── prism-glsl.min.js │ │ │ ├── prism-gml.min.js │ │ │ ├── prism-go.min.js │ │ │ ├── prism-graphql.min.js │ │ │ ├── prism-groovy.min.js │ │ │ ├── prism-haml.min.js │ │ │ ├── prism-handlebars.min.js │ │ │ ├── prism-haskell.min.js │ │ │ ├── prism-haxe.min.js │ │ │ ├── prism-hcl.min.js │ │ │ ├── prism-hpkp.min.js │ │ │ ├── prism-hsts.min.js │ │ │ ├── prism-http.min.js │ │ │ ├── prism-ichigojam.min.js │ │ │ ├── prism-icon.min.js │ │ │ ├── prism-inform7.min.js │ │ │ ├── prism-ini.min.js │ │ │ ├── prism-io.min.js │ │ │ ├── prism-j.min.js │ │ │ ├── prism-java.min.js │ │ │ ├── prism-javadoc.min.js │ │ │ ├── prism-javadoclike.min.js │ │ │ ├── prism-javascript.min.js │ │ │ ├── prism-javastacktrace.min.js │ │ │ ├── prism-jolie.min.js │ │ │ ├── prism-jq.min.js │ │ │ ├── prism-js-extras.min.js │ │ │ ├── prism-js-templates.min.js │ │ │ ├── prism-jsdoc.min.js │ │ │ ├── prism-json.min.js │ │ │ ├── prism-json5.min.js │ │ │ ├── prism-jsonp.min.js │ │ │ ├── prism-jsx.min.js │ │ │ ├── prism-julia.min.js │ │ │ ├── prism-keyman.min.js │ │ │ ├── prism-kotlin.min.js │ │ │ ├── prism-latex.min.js │ │ │ ├── prism-latte.min.js │ │ │ ├── prism-less.min.js │ │ │ ├── prism-lilypond.min.js │ │ │ ├── prism-liquid.min.js │ │ │ ├── prism-lisp.min.js │ │ │ ├── prism-livescript.min.js │ │ │ ├── prism-lolcode.min.js │ │ │ ├── prism-lua.min.js │ │ │ ├── prism-makefile.min.js │ │ │ ├── prism-markdown.min.js │ │ │ ├── prism-markup-templating.min.js │ │ │ ├── prism-markup.min.js │ │ │ ├── prism-matlab.min.js │ │ │ ├── prism-mel.min.js │ │ │ ├── prism-mizar.min.js │ │ │ ├── prism-monkey.min.js │ │ │ ├── prism-moonscript.min.js │ │ │ ├── prism-n1ql.min.js │ │ │ ├── prism-n4js.min.js │ │ │ ├── prism-nand2tetris-hdl.min.js │ │ │ ├── prism-nasm.min.js │ │ │ ├── prism-neon.min.js │ │ │ ├── prism-nginx.min.js │ │ │ ├── prism-nim.min.js │ │ │ ├── prism-nix.min.js │ │ │ ├── prism-nsis.min.js │ │ │ ├── prism-objectivec.min.js │ │ │ ├── prism-ocaml.min.js │ │ │ ├── prism-opencl.min.js │ │ │ ├── prism-oz.min.js │ │ │ ├── prism-parigp.min.js │ │ │ ├── prism-parser.min.js │ │ │ ├── prism-pascal.min.js │ │ │ ├── prism-pascaligo.min.js │ │ │ ├── prism-pcaxis.min.js │ │ │ ├── prism-perl.min.js │ │ │ ├── prism-php-extras.min.js │ │ │ ├── prism-php.min.js │ │ │ ├── prism-phpdoc.min.js │ │ │ ├── prism-plsql.min.js │ │ │ ├── prism-powershell.min.js │ │ │ ├── prism-processing.min.js │ │ │ ├── prism-prolog.min.js │ │ │ ├── prism-properties.min.js │ │ │ ├── prism-protobuf.min.js │ │ │ ├── prism-pug.min.js │ │ │ ├── prism-puppet.min.js │ │ │ ├── prism-pure.min.js │ │ │ ├── prism-python.min.js │ │ │ ├── prism-q.min.js │ │ │ ├── prism-qml.min.js │ │ │ ├── prism-qore.min.js │ │ │ ├── prism-r.min.js │ │ │ ├── prism-reason.min.js │ │ │ ├── prism-regex.min.js │ │ │ ├── prism-renpy.min.js │ │ │ ├── prism-rest.min.js │ │ │ ├── prism-rip.min.js │ │ │ ├── prism-roboconf.min.js │ │ │ ├── prism-robotframework.min.js │ │ │ ├── prism-ruby.min.js │ │ │ ├── prism-rust.min.js │ │ │ ├── prism-sas.min.js │ │ │ ├── prism-sass.min.js │ │ │ ├── prism-scala.min.js │ │ │ ├── prism-scheme.min.js │ │ │ ├── prism-scss.min.js │ │ │ ├── prism-shell-session.min.js │ │ │ ├── prism-smalltalk.min.js │ │ │ ├── prism-smarty.min.js │ │ │ ├── prism-solidity.min.js │ │ │ ├── prism-soy.min.js │ │ │ ├── prism-sparql.min.js │ │ │ ├── prism-splunk-spl.min.js │ │ │ ├── prism-sqf.min.js │ │ │ ├── prism-sql.min.js │ │ │ ├── prism-stylus.min.js │ │ │ ├── prism-swift.min.js │ │ │ ├── prism-t4-cs.min.js │ │ │ ├── prism-t4-templating.min.js │ │ │ ├── prism-t4-vb.min.js │ │ │ ├── prism-tap.min.js │ │ │ ├── prism-tcl.min.js │ │ │ ├── prism-textile.min.js │ │ │ ├── prism-toml.min.js │ │ │ ├── prism-tsx.min.js │ │ │ ├── prism-tt2.min.js │ │ │ ├── prism-turtle.min.js │ │ │ ├── prism-twig.min.js │ │ │ ├── prism-typescript.min.js │ │ │ ├── prism-vala.min.js │ │ │ ├── prism-vbnet.min.js │ │ │ ├── prism-velocity.min.js │ │ │ ├── prism-verilog.min.js │ │ │ ├── prism-vhdl.min.js │ │ │ ├── prism-vim.min.js │ │ │ ├── prism-visual-basic.min.js │ │ │ ├── prism-wasm.min.js │ │ │ ├── prism-wiki.min.js │ │ │ ├── prism-xeora.min.js │ │ │ ├── prism-xojo.min.js │ │ │ ├── prism-xquery.min.js │ │ │ ├── prism-yaml.min.js │ │ │ └── prism-zig.min.js │ │ ├── dependencies.js │ │ ├── plugins │ │ │ ├── autolinker │ │ │ │ ├── prism-autolinker.css │ │ │ │ └── prism-autolinker.min.js │ │ │ ├── autoloader │ │ │ │ └── prism-autoloader.min.js │ │ │ ├── command-line │ │ │ │ ├── prism-command-line.css │ │ │ │ └── prism-command-line.min.js │ │ │ ├── copy-to-clipboard │ │ │ │ └── prism-copy-to-clipboard.min.js │ │ │ ├── custom-class │ │ │ │ └── prism-custom-class.min.js │ │ │ ├── data-uri-highlight │ │ │ │ └── prism-data-uri-highlight.min.js │ │ │ ├── diff-highlight │ │ │ │ ├── prism-diff-highlight.css │ │ │ │ └── prism-diff-highlight.min.js │ │ │ ├── download-button │ │ │ │ └── prism-download-button.min.js │ │ │ ├── file-highlight │ │ │ │ └── prism-file-highlight.min.js │ │ │ ├── filter-highlight-all │ │ │ │ └── prism-filter-highlight-all.min.js │ │ │ ├── highlight-keywords │ │ │ │ └── prism-highlight-keywords.min.js │ │ │ ├── inline-color │ │ │ │ ├── prism-inline-color.css │ │ │ │ └── prism-inline-color.min.js │ │ │ ├── jsonp-highlight │ │ │ │ └── prism-jsonp-highlight.min.js │ │ │ ├── keep-markup │ │ │ │ └── prism-keep-markup.min.js │ │ │ ├── line-highlight │ │ │ │ ├── prism-line-highlight.css │ │ │ │ └── prism-line-highlight.min.js │ │ │ ├── line-numbers │ │ │ │ ├── prism-line-numbers.css │ │ │ │ └── prism-line-numbers.min.js │ │ │ ├── match-braces │ │ │ │ ├── prism-match-braces.css │ │ │ │ └── prism-match-braces.min.js │ │ │ ├── normalize-whitespace │ │ │ │ └── prism-normalize-whitespace.min.js │ │ │ ├── previewers │ │ │ │ ├── prism-previewers.css │ │ │ │ └── prism-previewers.min.js │ │ │ ├── remove-initial-line-feed │ │ │ │ └── prism-remove-initial-line-feed.min.js │ │ │ ├── show-invisibles │ │ │ │ ├── prism-show-invisibles.css │ │ │ │ └── prism-show-invisibles.min.js │ │ │ ├── show-language │ │ │ │ └── prism-show-language.min.js │ │ │ ├── toolbar │ │ │ │ ├── prism-toolbar.css │ │ │ │ └── prism-toolbar.min.js │ │ │ ├── unescaped-markup │ │ │ │ ├── prism-unescaped-markup.css │ │ │ │ └── prism-unescaped-markup.min.js │ │ │ └── wpd │ │ │ │ ├── prism-wpd.css │ │ │ │ └── prism-wpd.min.js │ │ ├── prism.js │ │ └── themes │ │ │ ├── prism-coy.css │ │ │ ├── prism-dark.css │ │ │ ├── prism-funky.css │ │ │ ├── prism-okaidia.css │ │ │ ├── prism-solarizedlight.css │ │ │ ├── prism-tomorrow.css │ │ │ ├── prism-twilight.css │ │ │ └── prism.css │ ├── quill │ │ └── dist │ │ │ ├── quill.bubble.css │ │ │ ├── quill.core.css │ │ │ ├── quill.core.js │ │ │ ├── quill.min.js │ │ │ └── quill.snow.css │ ├── select2 │ │ └── dist │ │ │ ├── css │ │ │ └── select2.min.css │ │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── build.txt │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.js │ ├── sudo │ │ └── lib │ │ │ └── sudo.js │ └── sweetalert2 │ │ └── dist │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js └── web.config ├── resources ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── vendor │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ ├── all.min.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.min.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.min.css │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ ├── all.min.js │ │ │ ├── brands.min.js │ │ │ ├── conflict-detection.min.js │ │ │ ├── fontawesome.min.js │ │ │ ├── regular.min.js │ │ │ ├── solid.min.js │ │ │ └── v4-shims.min.js │ │ │ ├── sprites │ │ │ ├── brands.svg │ │ │ ├── regular.svg │ │ │ └── solid.svg │ │ │ ├── svgs │ │ │ ├── brands │ │ │ │ ├── 500px.svg │ │ │ │ ├── accessible-icon.svg │ │ │ │ ├── accusoft.svg │ │ │ │ ├── acquisitions-incorporated.svg │ │ │ │ ├── adn.svg │ │ │ │ ├── adobe.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── airbnb.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── artstation.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── atlassian.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── battle-net.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── bootstrap.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buffer.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buy-n-large.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── canadian-maple-leaf.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── centos.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── chromecast.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── confluence.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cotton-bureau.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons-zero.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── critical-role.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d-beyond.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── dev.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── dhl.svg │ │ │ │ ├── diaspora.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── evernote.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── fantasy-flight-games.svg │ │ │ │ ├── fedex.svg │ │ │ │ ├── fedora.svg │ │ │ │ ├── figma.svg │ │ │ │ ├── firefox-browser.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-alt.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── ideal.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── intercom.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── invision.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itch-io.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── jira.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── mdb.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── mendeley.svg │ │ │ │ ├── microblog.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── orcid.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── penny-arcade.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper-square.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── raspberry-pi.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── reacteurope.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── redhat.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── salesforce.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── sketch.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── sourcetree.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── speaker-deck.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── stackpath.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── suse.svg │ │ │ │ ├── swift.svg │ │ │ │ ├── symfony.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── think-peaks.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── ubuntu.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── umbraco.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── unity.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── ups.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── usps.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── waze.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wizards-of-the-coast.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── wpressr.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yammer.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yarn.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── baby-carriage.svg │ │ │ │ ├── baby.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── bacon.svg │ │ │ │ ├── bahai.svg │ │ │ │ ├── balance-scale-left.svg │ │ │ │ ├── balance-scale-right.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── biking.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── biohazard.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender-phone.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── blog.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-dead.svg │ │ │ │ ├── book-medical.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── border-all.svg │ │ │ │ ├── border-none.svg │ │ │ │ ├── border-style.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── bread-slice.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-day.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar-week.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── campground.svg │ │ │ │ ├── candy-cane.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caravan.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── carrot.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── cash-register.svg │ │ │ │ ├── cat.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chair.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheese.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clinic-medical.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-meatball.svg │ │ │ │ ├── cloud-moon-rain.svg │ │ │ │ ├── cloud-moon.svg │ │ │ │ ├── cloud-rain.svg │ │ │ │ ├── cloud-showers-heavy.svg │ │ │ │ ├── cloud-sun-rain.svg │ │ │ │ ├── cloud-sun.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-medical.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress-alt.svg │ │ │ │ ├── compress-arrows-alt.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── crutch.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── democrat.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-d20.svg │ │ │ │ ├── dice-d6.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dog.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── dragon.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── drumstick-bite.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── dumpster-fire.svg │ │ │ │ ├── dumpster.svg │ │ │ │ ├── dungeon.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── egg.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── ethernet.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-alt.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fan.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-csv.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-alt.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── fist-raised.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag-usa.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── ghost.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── gifts.svg │ │ │ │ ├── glass-cheers.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glass-whiskey.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe-europe.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-lines-vertical.svg │ │ │ │ ├── grip-lines.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── guitar.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamburger.svg │ │ │ │ ├── hammer.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-middle-finger.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hanukiah.svg │ │ │ │ ├── hard-hat.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── hat-cowboy-side.svg │ │ │ │ ├── hat-cowboy.svg │ │ │ │ ├── hat-wizard.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart-broken.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── hiking.svg │ │ │ │ ├── hippo.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── holly-berry.svg │ │ │ │ ├── home.svg │ │ │ │ ├── horse-head.svg │ │ │ │ ├── horse.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotdog.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── house-damage.svg │ │ │ │ ├── hryvnia.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── ice-cream.svg │ │ │ │ ├── icicles.svg │ │ │ │ ├── icons.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── igloo.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── italic.svg │ │ │ │ ├── jedi.svg │ │ │ │ ├── joint.svg │ │ │ │ ├── journal-whills.svg │ │ │ │ ├── kaaba.svg │ │ │ │ ├── key.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── khanda.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── kiwi-bird.svg │ │ │ │ ├── landmark.svg │ │ │ │ ├── language.svg │ │ │ │ ├── laptop-code.svg │ │ │ │ ├── laptop-medical.svg │ │ │ │ ├── laptop.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── mask.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── meteor.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mitten.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mountain.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── mouse.svg │ │ │ │ ├── mug-hot.svg │ │ │ │ ├── music.svg │ │ │ │ ├── network-wired.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── otter.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── pager.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── pepper-hot.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── person-booth.svg │ │ │ │ ├── phone-alt.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square-alt.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── photo-video.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── pizza-slice.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo-storm.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── radiation-alt.svg │ │ │ │ ├── radiation.svg │ │ │ │ ├── rainbow.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── record-vinyl.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── remove-format.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── republican.svg │ │ │ │ ├── restroom.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── ring.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── running.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── satellite-dish.svg │ │ │ │ ├── satellite.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── scroll.svg │ │ │ │ ├── sd-card.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sim-card.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skating.svg │ │ │ │ ├── skiing-nordic.svg │ │ │ │ ├── skiing.svg │ │ │ │ ├── skull-crossbones.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── slash.svg │ │ │ │ ├── sleigh.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smog.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── sms.svg │ │ │ │ ├── snowboarding.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── snowman.svg │ │ │ │ ├── snowplow.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down-alt.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up-alt.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down-alt.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up-alt.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down-alt.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up-alt.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spell-check.svg │ │ │ │ ├── spider.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.svg │ │ │ │ ├── stamp.svg │ │ │ │ ├── star-and-crescent.svg │ │ │ │ ├── star-half-alt.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star-of-david.svg │ │ │ │ ├── star-of-life.svg │ │ │ │ ├── star.svg │ │ │ │ ├── step-backward.svg │ │ │ │ ├── step-forward.svg │ │ │ │ ├── stethoscope.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── stop.svg │ │ │ │ ├── stopwatch.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 │ │ │ │ ├── tape.svg │ │ │ │ ├── tasks.svg │ │ │ │ ├── taxi.svg │ │ │ │ ├── teeth-open.svg │ │ │ │ ├── teeth.svg │ │ │ │ ├── temperature-high.svg │ │ │ │ ├── temperature-low.svg │ │ │ │ ├── tenge.svg │ │ │ │ ├── terminal.svg │ │ │ │ ├── text-height.svg │ │ │ │ ├── text-width.svg │ │ │ │ ├── th-large.svg │ │ │ │ ├── th-list.svg │ │ │ │ ├── th.svg │ │ │ │ ├── theater-masks.svg │ │ │ │ ├── thermometer-empty.svg │ │ │ │ ├── thermometer-full.svg │ │ │ │ ├── thermometer-half.svg │ │ │ │ ├── thermometer-quarter.svg │ │ │ │ ├── thermometer-three-quarters.svg │ │ │ │ ├── thermometer.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── thumbtack.svg │ │ │ │ ├── ticket-alt.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── times.svg │ │ │ │ ├── tint-slash.svg │ │ │ │ ├── tint.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── toggle-off.svg │ │ │ │ ├── toggle-on.svg │ │ │ │ ├── toilet-paper.svg │ │ │ │ ├── toilet.svg │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tools.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── tractor.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── trailer.svg │ │ │ │ ├── train.svg │ │ │ │ ├── tram.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash-restore-alt.svg │ │ │ │ ├── trash-restore.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-injured.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-nurse.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── voicemail.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-mute.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── vote-yea.svg │ │ │ │ ├── vr-cardboard.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── water.svg │ │ │ │ ├── wave-square.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── wind.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-bottle.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ ├── anchor-js │ │ └── anchor.min.js │ ├── animate.css │ │ ├── animate-config.json │ │ ├── animate.min.css │ │ └── source │ │ │ ├── _base.css │ │ │ ├── _vars.css │ │ │ ├── attention_seekers │ │ │ ├── bounce.css │ │ │ ├── flash.css │ │ │ ├── headShake.css │ │ │ ├── heartBeat.css │ │ │ ├── jello.css │ │ │ ├── pulse.css │ │ │ ├── rubberBand.css │ │ │ ├── shake.css │ │ │ ├── swing.css │ │ │ ├── tada.css │ │ │ └── wobble.css │ │ │ ├── bouncing_entrances │ │ │ ├── bounceIn.css │ │ │ ├── bounceInDown.css │ │ │ ├── bounceInLeft.css │ │ │ ├── bounceInRight.css │ │ │ └── bounceInUp.css │ │ │ ├── bouncing_exits │ │ │ ├── bounceOut.css │ │ │ ├── bounceOutDown.css │ │ │ ├── bounceOutLeft.css │ │ │ ├── bounceOutRight.css │ │ │ └── bounceOutUp.css │ │ │ ├── fading_entrances │ │ │ ├── fadeIn.css │ │ │ ├── fadeInDown.css │ │ │ ├── fadeInDownBig.css │ │ │ ├── fadeInLeft.css │ │ │ ├── fadeInLeftBig.css │ │ │ ├── fadeInRight.css │ │ │ ├── fadeInRightBig.css │ │ │ ├── fadeInUp.css │ │ │ └── fadeInUpBig.css │ │ │ ├── fading_exits │ │ │ ├── fadeOut.css │ │ │ ├── fadeOutDown.css │ │ │ ├── fadeOutDownBig.css │ │ │ ├── fadeOutLeft.css │ │ │ ├── fadeOutLeftBig.css │ │ │ ├── fadeOutRight.css │ │ │ ├── fadeOutRightBig.css │ │ │ ├── fadeOutUp.css │ │ │ └── fadeOutUpBig.css │ │ │ ├── flippers │ │ │ ├── flip.css │ │ │ ├── flipInX.css │ │ │ ├── flipInY.css │ │ │ ├── flipOutX.css │ │ │ └── flipOutY.css │ │ │ ├── lightspeed │ │ │ ├── lightSpeedIn.css │ │ │ └── lightSpeedOut.css │ │ │ ├── rotating_entrances │ │ │ ├── rotateIn.css │ │ │ ├── rotateInDownLeft.css │ │ │ ├── rotateInDownRight.css │ │ │ ├── rotateInUpLeft.css │ │ │ └── rotateInUpRight.css │ │ │ ├── rotating_exits │ │ │ ├── rotateOut.css │ │ │ ├── rotateOutDownLeft.css │ │ │ ├── rotateOutDownRight.css │ │ │ ├── rotateOutUpLeft.css │ │ │ └── rotateOutUpRight.css │ │ │ ├── sliding_entrances │ │ │ ├── slideInDown.css │ │ │ ├── slideInLeft.css │ │ │ ├── slideInRight.css │ │ │ └── slideInUp.css │ │ │ ├── sliding_exits │ │ │ ├── slideOutDown.css │ │ │ ├── slideOutLeft.css │ │ │ ├── slideOutRight.css │ │ │ └── slideOutUp.css │ │ │ ├── specials │ │ │ ├── hinge.css │ │ │ ├── jackInTheBox.css │ │ │ ├── rollIn.css │ │ │ └── rollOut.css │ │ │ ├── zooming_entrances │ │ │ ├── zoomIn.css │ │ │ ├── zoomInDown.css │ │ │ ├── zoomInLeft.css │ │ │ ├── zoomInRight.css │ │ │ └── zoomInUp.css │ │ │ └── zooming_exits │ │ │ ├── zoomOut.css │ │ │ ├── zoomOutDown.css │ │ │ ├── zoomOutLeft.css │ │ │ ├── zoomOutRight.css │ │ │ └── zoomOutUp.css │ ├── bootstrap-datepicker │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.standalone.min.css │ │ │ ├── bootstrap-datepicker3.min.css │ │ │ └── bootstrap-datepicker3.standalone.min.css │ │ │ ├── js │ │ │ └── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ ├── bootstrap-datetimepicker.js │ ├── bootstrap-notify │ │ └── bootstrap-notify.min.js │ ├── bootstrap-rtl │ │ └── bootstrap-rtl.css │ ├── bootstrap-tagsinput │ │ └── dist │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ ├── bootstrap-tagsinput-typeahead.css │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ └── bootstrap-tagsinput.zip │ ├── bootstrap │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-reboot.min.css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ ├── bootstrap.bundle.min.js │ │ │ └── bootstrap.min.js │ ├── chart.js │ │ └── dist │ │ │ ├── Chart.bundle.min.js │ │ │ ├── Chart.extension.js │ │ │ ├── Chart.min.css │ │ │ └── Chart.min.js │ ├── clipboard │ │ └── dist │ │ │ └── clipboard.min.js │ ├── datatables.net-bs4 │ │ ├── css │ │ │ └── dataTables.bootstrap4.min.css │ │ └── js │ │ │ └── dataTables.bootstrap4.min.js │ ├── datatables.net-buttons-bs4 │ │ ├── css │ │ │ └── buttons.bootstrap4.min.css │ │ └── js │ │ │ └── buttons.bootstrap4.min.js │ ├── datatables.net-buttons │ │ ├── License.txt │ │ ├── js │ │ │ ├── buttons.colVis.min.js │ │ │ ├── buttons.flash.min.js │ │ │ ├── buttons.html5.min.js │ │ │ ├── buttons.print.min.js │ │ │ └── dataTables.buttons.min.js │ │ └── swf │ │ │ └── flashExport.swf │ ├── datatables.net-responsive-bs4 │ │ ├── css │ │ │ └── responsive.bootstrap4.min.css │ │ └── js │ │ │ └── responsive.bootstrap4.min.js │ ├── datatables.net-select-bs4 │ │ ├── css │ │ │ └── select.bootstrap4.min.css │ │ └── js │ │ │ └── select.bootstrap4.min.js │ ├── datatables.net-select │ │ ├── License.txt │ │ └── js │ │ │ └── dataTables.select.min.js │ ├── datatables.net │ │ ├── License.txt │ │ └── js │ │ │ └── jquery.dataTables.min.js │ ├── dropzone │ │ └── dist │ │ │ ├── basic.css │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone.css │ │ │ ├── dropzone.js │ │ │ └── min │ │ │ ├── basic.min.css │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ ├── font-awesome │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── fullcalendar │ │ └── dist │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.min.css │ │ │ ├── gcal.min.js │ │ │ ├── locale-all.js │ │ │ └── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-nz.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ ├── gulp-copy │ │ ├── index.js │ │ ├── lib │ │ │ └── gulp-copy.js │ │ └── node_modules │ │ │ ├── arr-diff │ │ │ └── index.js │ │ │ ├── arr-union │ │ │ └── index.js │ │ │ ├── array-slice │ │ │ └── index.js │ │ │ ├── extend-shallow │ │ │ └── index.js │ │ │ ├── glob-watcher │ │ │ └── index.js │ │ │ ├── gulp │ │ │ ├── bin │ │ │ │ └── gulp.js │ │ │ ├── index.js │ │ │ └── node_modules │ │ │ │ └── gulp-cli │ │ │ │ ├── bin │ │ │ │ └── gulp.js │ │ │ │ ├── completion │ │ │ │ ├── bash │ │ │ │ ├── fish │ │ │ │ ├── powershell │ │ │ │ └── zsh │ │ │ │ ├── gulp.1 │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ ├── shared │ │ │ │ ├── ansi.js │ │ │ │ ├── cli-options.js │ │ │ │ ├── completion.js │ │ │ │ ├── config │ │ │ │ │ ├── cli-flags.js │ │ │ │ │ ├── env-flags.js │ │ │ │ │ └── load-files.js │ │ │ │ ├── exit.js │ │ │ │ ├── get-blacklist.js │ │ │ │ ├── log │ │ │ │ │ ├── blacklist-error.js │ │ │ │ │ ├── copy-tree.js │ │ │ │ │ ├── tasks.js │ │ │ │ │ ├── to-console.js │ │ │ │ │ └── verify.js │ │ │ │ ├── make-title.js │ │ │ │ ├── register-exports.js │ │ │ │ ├── tildify.js │ │ │ │ └── verify-dependencies.js │ │ │ │ └── versioned │ │ │ │ ├── ^3.7.0 │ │ │ │ ├── format-error.js │ │ │ │ ├── index.js │ │ │ │ ├── log │ │ │ │ │ ├── events.js │ │ │ │ │ └── tasks-simple.js │ │ │ │ └── task-tree.js │ │ │ │ ├── ^4.0.0-alpha.1 │ │ │ │ └── index.js │ │ │ │ ├── ^4.0.0-alpha.2 │ │ │ │ └── index.js │ │ │ │ └── ^4.0.0 │ │ │ │ ├── format-error.js │ │ │ │ ├── index.js │ │ │ │ └── log │ │ │ │ ├── events.js │ │ │ │ ├── get-task.js │ │ │ │ ├── sync-task.js │ │ │ │ └── tasks-simple.js │ │ │ ├── kind-of │ │ │ └── index.js │ │ │ ├── plugin-error │ │ │ └── index.js │ │ │ ├── yargs-parser │ │ │ ├── LICENSE.txt │ │ │ ├── index.js │ │ │ └── lib │ │ │ │ └── tokenize-arg-string.js │ │ │ └── yargs │ │ │ ├── completion.sh.hbs │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── apply-extends.js │ │ │ ├── argsert.js │ │ │ ├── assign.js │ │ │ ├── command.js │ │ │ ├── completion.js │ │ │ ├── levenshtein.js │ │ │ ├── obj-filter.js │ │ │ ├── usage.js │ │ │ ├── validation.js │ │ │ └── yerror.js │ │ │ ├── locales │ │ │ ├── be.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── pirate.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── pt_BR.json │ │ │ ├── ru.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── zh_CN.json │ │ │ └── zh_TW.json │ │ │ └── yargs.js │ ├── headroom.js │ │ └── dist │ │ │ ├── angular.headroom.min.js │ │ │ ├── headroom.min.js │ │ │ └── jQuery.headroom.min.js │ ├── holderjs │ │ ├── holder.min.js │ │ └── package.js │ ├── jekyll │ │ ├── CONTRIBUTING.markdown │ │ ├── Gemfile │ │ ├── History.markdown │ │ ├── README.markdown │ │ ├── Rakefile │ │ ├── benchmark │ │ │ ├── flat-map │ │ │ ├── hash-fetch │ │ │ ├── jekyll-sanitize-path │ │ │ ├── proc-call-vs-yield │ │ │ ├── sequential-assignment │ │ │ ├── string-concat │ │ │ ├── string-replacement │ │ │ └── symbol-to-proc │ │ ├── bin │ │ │ └── jekyll │ │ ├── features │ │ │ ├── collections.feature │ │ │ ├── create_sites.feature │ │ │ ├── data.feature │ │ │ ├── drafts.feature │ │ │ ├── embed_filters.feature │ │ │ ├── frontmatter_defaults.feature │ │ │ ├── include_tag.feature │ │ │ ├── incremental_rebuild.feature │ │ │ ├── markdown.feature │ │ │ ├── pagination.feature │ │ │ ├── permalinks.feature │ │ │ ├── plugins.feature │ │ │ ├── post_data.feature │ │ │ ├── post_excerpts.feature │ │ │ ├── rendering.feature │ │ │ ├── site_configuration.feature │ │ │ ├── site_data.feature │ │ │ ├── step_definitions │ │ │ │ └── jekyll_steps.rb │ │ │ └── support │ │ │ │ ├── env.rb │ │ │ │ └── overview.rb │ │ ├── jekyll.gemspec │ │ ├── lib │ │ │ ├── jekyll.rb │ │ │ ├── jekyll │ │ │ │ ├── cleaner.rb │ │ │ │ ├── collection.rb │ │ │ │ ├── command.rb │ │ │ │ ├── commands │ │ │ │ │ ├── build.rb │ │ │ │ │ ├── clean.rb │ │ │ │ │ ├── doctor.rb │ │ │ │ │ ├── help.rb │ │ │ │ │ ├── new.rb │ │ │ │ │ └── serve.rb │ │ │ │ ├── configuration.rb │ │ │ │ ├── converter.rb │ │ │ │ ├── converters │ │ │ │ │ ├── identity.rb │ │ │ │ │ ├── markdown.rb │ │ │ │ │ └── markdown │ │ │ │ │ │ ├── kramdown_parser.rb │ │ │ │ │ │ ├── maruku_parser.rb │ │ │ │ │ │ ├── rdiscount_parser.rb │ │ │ │ │ │ └── redcarpet_parser.rb │ │ │ │ ├── convertible.rb │ │ │ │ ├── deprecator.rb │ │ │ │ ├── document.rb │ │ │ │ ├── draft.rb │ │ │ │ ├── entry_filter.rb │ │ │ │ ├── errors.rb │ │ │ │ ├── excerpt.rb │ │ │ │ ├── external.rb │ │ │ │ ├── filters.rb │ │ │ │ ├── frontmatter_defaults.rb │ │ │ │ ├── generator.rb │ │ │ │ ├── layout.rb │ │ │ │ ├── layout_reader.rb │ │ │ │ ├── liquid_extensions.rb │ │ │ │ ├── log_adapter.rb │ │ │ │ ├── mime.types │ │ │ │ ├── page.rb │ │ │ │ ├── plugin.rb │ │ │ │ ├── plugin_manager.rb │ │ │ │ ├── post.rb │ │ │ │ ├── publisher.rb │ │ │ │ ├── regenerator.rb │ │ │ │ ├── related_posts.rb │ │ │ │ ├── renderer.rb │ │ │ │ ├── site.rb │ │ │ │ ├── static_file.rb │ │ │ │ ├── stevenson.rb │ │ │ │ ├── tags │ │ │ │ │ ├── highlight.rb │ │ │ │ │ ├── include.rb │ │ │ │ │ └── post_url.rb │ │ │ │ ├── url.rb │ │ │ │ ├── utils.rb │ │ │ │ └── version.rb │ │ │ └── site_template │ │ │ │ ├── _includes │ │ │ │ ├── footer.html │ │ │ │ ├── head.html │ │ │ │ └── header.html │ │ │ │ ├── _layouts │ │ │ │ ├── default.html │ │ │ │ ├── page.html │ │ │ │ └── post.html │ │ │ │ ├── _posts │ │ │ │ └── 0000-00-00-welcome-to-jekyll.markdown.erb │ │ │ │ ├── feed.xml │ │ │ │ └── index.html │ │ ├── script │ │ │ ├── bootstrap │ │ │ ├── branding │ │ │ ├── cibuild │ │ │ ├── console │ │ │ ├── cucumber │ │ │ ├── proof │ │ │ ├── rebund │ │ │ ├── stackprof │ │ │ └── test │ │ └── site │ │ │ ├── CNAME │ │ │ ├── _includes │ │ │ ├── analytics.html │ │ │ ├── anchor_links.html │ │ │ ├── docs_contents.html │ │ │ ├── docs_contents_mobile.html │ │ │ ├── docs_option.html │ │ │ ├── docs_ul.html │ │ │ ├── footer.html │ │ │ ├── header.html │ │ │ ├── news_contents.html │ │ │ ├── news_contents_mobile.html │ │ │ ├── news_item.html │ │ │ ├── primary-nav-items.html │ │ │ ├── section_nav.html │ │ │ └── top.html │ │ │ ├── _layouts │ │ │ ├── default.html │ │ │ ├── docs.html │ │ │ ├── news.html │ │ │ └── news_item.html │ │ │ ├── _posts │ │ │ ├── 2013-05-06-jekyll-1-0-0-released.markdown │ │ │ ├── 2013-05-08-jekyll-1-0-1-released.markdown │ │ │ ├── 2013-05-12-jekyll-1-0-2-released.markdown │ │ │ ├── 2013-06-07-jekyll-1-0-3-released.markdown │ │ │ ├── 2013-07-14-jekyll-1-1-0-released.markdown │ │ │ ├── 2013-07-24-jekyll-1-1-1-released.markdown │ │ │ ├── 2013-07-25-jekyll-1-0-4-released.markdown │ │ │ ├── 2013-07-25-jekyll-1-1-2-released.markdown │ │ │ ├── 2013-09-06-jekyll-1-2-0-released.markdown │ │ │ ├── 2013-09-14-jekyll-1-2-1-released.markdown │ │ │ ├── 2013-10-28-jekyll-1-3-0-rc1-released.markdown │ │ │ ├── 2013-11-04-jekyll-1-3-0-released.markdown │ │ │ ├── 2013-11-26-jekyll-1-3-1-released.markdown │ │ │ ├── 2013-12-07-jekyll-1-4-0-released.markdown │ │ │ ├── 2013-12-09-jekyll-1-4-1-released.markdown │ │ │ ├── 2013-12-16-jekyll-1-4-2-released.markdown │ │ │ ├── 2014-01-13-jekyll-1-4-3-released.markdown │ │ │ ├── 2014-03-24-jekyll-1-5-0-released.markdown │ │ │ ├── 2014-03-27-jekyll-1-5-1-released.markdown │ │ │ ├── 2014-05-06-jekyll-turns-2-0-0.markdown │ │ │ ├── 2014-05-08-jekyll-2-0-3-released.markdown │ │ │ ├── 2014-06-04-jekyll-stickers-1-dollar-stickermule.markdown │ │ │ ├── 2014-06-28-jekyll-turns-21-i-mean-2-1-0.markdown │ │ │ ├── 2014-07-01-jekyll-2-1-1-released.markdown │ │ │ ├── 2014-07-29-jekyll-2-2-0-released.markdown │ │ │ ├── 2014-08-10-jekyll-2-3-0-released.markdown │ │ │ ├── 2014-09-09-jekyll-2-4-0-released.markdown │ │ │ ├── 2014-11-06-jekylls-midlife-crisis-jekyll-turns-2-5-0.markdown │ │ │ ├── 2014-11-08-jekyll-2-5-1-released.markdown │ │ │ ├── 2014-11-12-jekyll-2-5-2-released.markdown │ │ │ ├── 2014-12-22-jekyll-2-5-3-released.markdown │ │ │ ├── 2015-01-20-jekyll-meet-and-greet.markdown │ │ │ └── 2015-01-24-jekyll-3-0-0-beta1-released.markdown │ │ │ ├── favicon.ico │ │ │ ├── feed.xml │ │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ │ ├── freenode.txt │ │ │ ├── img │ │ │ ├── article-footer.png │ │ │ ├── footer-arrow.png │ │ │ ├── footer-logo.png │ │ │ ├── jekyll-sticker.jpg │ │ │ ├── logo-2x.png │ │ │ ├── logo-rss.png │ │ │ └── octojekyll.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── html5shiv.min.js │ │ │ └── respond.min.js │ │ │ ├── latest_version.txt │ │ │ └── news │ │ │ ├── index.html │ │ │ └── releases │ │ │ └── index.html │ ├── jquery-scroll-lock │ │ └── dist │ │ │ └── jquery-scrollLock.min.js │ ├── jquery.scrollbar │ │ ├── index.js │ │ ├── jquery.scrollbar.css │ │ ├── jquery.scrollbar.min.js │ │ ├── license-gpl.txt │ │ ├── license-mit.txt │ │ ├── meteor │ │ │ └── tests.js │ │ ├── package.js │ │ ├── sass │ │ │ └── config.rb │ │ └── scrollbar.jquery.json │ ├── jquery │ │ └── dist │ │ │ ├── core.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.slim.min.js │ ├── js-cookie │ │ └── js.cookie.js │ ├── jvectormap-next │ │ ├── LICENSE-AGPL │ │ ├── LICENSE-COMMERCIAL │ │ ├── jquery-jvectormap.css │ │ └── jquery-jvectormap.min.js │ ├── lavalamp │ │ ├── css │ │ │ └── jquery.lavalamp.css │ │ ├── demo.html │ │ ├── images │ │ │ ├── 103332256.jpg │ │ │ ├── 104209996.jpg │ │ │ ├── 146672189.jpg │ │ │ └── sb10065850n-001.jpg │ │ ├── js │ │ │ ├── jquery-3.1.1.min.js │ │ │ └── jquery.lavalamp.min.js │ │ └── lavalamp.jquery.json │ ├── list.js │ │ └── dist │ │ │ └── list.min.js │ ├── minimatch │ │ └── minimatch.js │ ├── moment.min.js │ ├── moment │ │ ├── ender.js │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-SG.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-nz.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ └── package.js │ ├── nouislider │ │ └── distribute │ │ │ ├── nouislider.min.css │ │ │ └── nouislider.min.js │ ├── nucleo │ │ ├── css │ │ │ ├── nucleo-svg.css │ │ │ └── nucleo.css │ │ └── fonts │ │ │ ├── nucleo-icons.eot │ │ │ ├── nucleo-icons.svg │ │ │ ├── nucleo-icons.ttf │ │ │ ├── nucleo-icons.woff │ │ │ └── nucleo-icons.woff2 │ ├── onscreen │ │ └── dist │ │ │ ├── on-screen.es6.js │ │ │ └── on-screen.umd.min.js │ ├── prismjs │ │ ├── components.js │ │ ├── components.json │ │ ├── components │ │ │ ├── index.js │ │ │ ├── prism-abap.min.js │ │ │ ├── prism-abnf.min.js │ │ │ ├── prism-actionscript.min.js │ │ │ ├── prism-ada.min.js │ │ │ ├── prism-antlr4.min.js │ │ │ ├── prism-apacheconf.min.js │ │ │ ├── prism-apl.min.js │ │ │ ├── prism-applescript.min.js │ │ │ ├── prism-aql.min.js │ │ │ ├── prism-arduino.min.js │ │ │ ├── prism-arff.min.js │ │ │ ├── prism-asciidoc.min.js │ │ │ ├── prism-asm6502.min.js │ │ │ ├── prism-aspnet.min.js │ │ │ ├── prism-autohotkey.min.js │ │ │ ├── prism-autoit.min.js │ │ │ ├── prism-bash.min.js │ │ │ ├── prism-basic.min.js │ │ │ ├── prism-batch.min.js │ │ │ ├── prism-bbcode.min.js │ │ │ ├── prism-bison.min.js │ │ │ ├── prism-bnf.min.js │ │ │ ├── prism-brainfuck.min.js │ │ │ ├── prism-brightscript.min.js │ │ │ ├── prism-bro.min.js │ │ │ ├── prism-c.min.js │ │ │ ├── prism-cil.min.js │ │ │ ├── prism-clike.min.js │ │ │ ├── prism-clojure.min.js │ │ │ ├── prism-cmake.min.js │ │ │ ├── prism-coffeescript.min.js │ │ │ ├── prism-core.min.js │ │ │ ├── prism-cpp.min.js │ │ │ ├── prism-crystal.min.js │ │ │ ├── prism-csharp.min.js │ │ │ ├── prism-csp.min.js │ │ │ ├── prism-css-extras.min.js │ │ │ ├── prism-css.min.js │ │ │ ├── prism-d.min.js │ │ │ ├── prism-dart.min.js │ │ │ ├── prism-diff.min.js │ │ │ ├── prism-django.min.js │ │ │ ├── prism-dns-zone-file.min.js │ │ │ ├── prism-docker.min.js │ │ │ ├── prism-ebnf.min.js │ │ │ ├── prism-eiffel.min.js │ │ │ ├── prism-ejs.min.js │ │ │ ├── prism-elixir.min.js │ │ │ ├── prism-elm.min.js │ │ │ ├── prism-erb.min.js │ │ │ ├── prism-erlang.min.js │ │ │ ├── prism-etlua.min.js │ │ │ ├── prism-firestore-security-rules.min.js │ │ │ ├── prism-flow.min.js │ │ │ ├── prism-fortran.min.js │ │ │ ├── prism-fsharp.min.js │ │ │ ├── prism-ftl.min.js │ │ │ ├── prism-gcode.min.js │ │ │ ├── prism-gdscript.min.js │ │ │ ├── prism-gedcom.min.js │ │ │ ├── prism-gherkin.min.js │ │ │ ├── prism-git.min.js │ │ │ ├── prism-glsl.min.js │ │ │ ├── prism-gml.min.js │ │ │ ├── prism-go.min.js │ │ │ ├── prism-graphql.min.js │ │ │ ├── prism-groovy.min.js │ │ │ ├── prism-haml.min.js │ │ │ ├── prism-handlebars.min.js │ │ │ ├── prism-haskell.min.js │ │ │ ├── prism-haxe.min.js │ │ │ ├── prism-hcl.min.js │ │ │ ├── prism-hpkp.min.js │ │ │ ├── prism-hsts.min.js │ │ │ ├── prism-http.min.js │ │ │ ├── prism-ichigojam.min.js │ │ │ ├── prism-icon.min.js │ │ │ ├── prism-inform7.min.js │ │ │ ├── prism-ini.min.js │ │ │ ├── prism-io.min.js │ │ │ ├── prism-j.min.js │ │ │ ├── prism-java.min.js │ │ │ ├── prism-javadoc.min.js │ │ │ ├── prism-javadoclike.min.js │ │ │ ├── prism-javascript.min.js │ │ │ ├── prism-javastacktrace.min.js │ │ │ ├── prism-jolie.min.js │ │ │ ├── prism-jq.min.js │ │ │ ├── prism-js-extras.min.js │ │ │ ├── prism-js-templates.min.js │ │ │ ├── prism-jsdoc.min.js │ │ │ ├── prism-json.min.js │ │ │ ├── prism-json5.min.js │ │ │ ├── prism-jsonp.min.js │ │ │ ├── prism-jsx.min.js │ │ │ ├── prism-julia.min.js │ │ │ ├── prism-keyman.min.js │ │ │ ├── prism-kotlin.min.js │ │ │ ├── prism-latex.min.js │ │ │ ├── prism-latte.min.js │ │ │ ├── prism-less.min.js │ │ │ ├── prism-lilypond.min.js │ │ │ ├── prism-liquid.min.js │ │ │ ├── prism-lisp.min.js │ │ │ ├── prism-livescript.min.js │ │ │ ├── prism-lolcode.min.js │ │ │ ├── prism-lua.min.js │ │ │ ├── prism-makefile.min.js │ │ │ ├── prism-markdown.min.js │ │ │ ├── prism-markup-templating.min.js │ │ │ ├── prism-markup.min.js │ │ │ ├── prism-matlab.min.js │ │ │ ├── prism-mel.min.js │ │ │ ├── prism-mizar.min.js │ │ │ ├── prism-monkey.min.js │ │ │ ├── prism-moonscript.min.js │ │ │ ├── prism-n1ql.min.js │ │ │ ├── prism-n4js.min.js │ │ │ ├── prism-nand2tetris-hdl.min.js │ │ │ ├── prism-nasm.min.js │ │ │ ├── prism-neon.min.js │ │ │ ├── prism-nginx.min.js │ │ │ ├── prism-nim.min.js │ │ │ ├── prism-nix.min.js │ │ │ ├── prism-nsis.min.js │ │ │ ├── prism-objectivec.min.js │ │ │ ├── prism-ocaml.min.js │ │ │ ├── prism-opencl.min.js │ │ │ ├── prism-oz.min.js │ │ │ ├── prism-parigp.min.js │ │ │ ├── prism-parser.min.js │ │ │ ├── prism-pascal.min.js │ │ │ ├── prism-pascaligo.min.js │ │ │ ├── prism-pcaxis.min.js │ │ │ ├── prism-perl.min.js │ │ │ ├── prism-php-extras.min.js │ │ │ ├── prism-php.min.js │ │ │ ├── prism-phpdoc.min.js │ │ │ ├── prism-plsql.min.js │ │ │ ├── prism-powershell.min.js │ │ │ ├── prism-processing.min.js │ │ │ ├── prism-prolog.min.js │ │ │ ├── prism-properties.min.js │ │ │ ├── prism-protobuf.min.js │ │ │ ├── prism-pug.min.js │ │ │ ├── prism-puppet.min.js │ │ │ ├── prism-pure.min.js │ │ │ ├── prism-python.min.js │ │ │ ├── prism-q.min.js │ │ │ ├── prism-qml.min.js │ │ │ ├── prism-qore.min.js │ │ │ ├── prism-r.min.js │ │ │ ├── prism-reason.min.js │ │ │ ├── prism-regex.min.js │ │ │ ├── prism-renpy.min.js │ │ │ ├── prism-rest.min.js │ │ │ ├── prism-rip.min.js │ │ │ ├── prism-roboconf.min.js │ │ │ ├── prism-robotframework.min.js │ │ │ ├── prism-ruby.min.js │ │ │ ├── prism-rust.min.js │ │ │ ├── prism-sas.min.js │ │ │ ├── prism-sass.min.js │ │ │ ├── prism-scala.min.js │ │ │ ├── prism-scheme.min.js │ │ │ ├── prism-scss.min.js │ │ │ ├── prism-shell-session.min.js │ │ │ ├── prism-smalltalk.min.js │ │ │ ├── prism-smarty.min.js │ │ │ ├── prism-solidity.min.js │ │ │ ├── prism-soy.min.js │ │ │ ├── prism-sparql.min.js │ │ │ ├── prism-splunk-spl.min.js │ │ │ ├── prism-sqf.min.js │ │ │ ├── prism-sql.min.js │ │ │ ├── prism-stylus.min.js │ │ │ ├── prism-swift.min.js │ │ │ ├── prism-t4-cs.min.js │ │ │ ├── prism-t4-templating.min.js │ │ │ ├── prism-t4-vb.min.js │ │ │ ├── prism-tap.min.js │ │ │ ├── prism-tcl.min.js │ │ │ ├── prism-textile.min.js │ │ │ ├── prism-toml.min.js │ │ │ ├── prism-tsx.min.js │ │ │ ├── prism-tt2.min.js │ │ │ ├── prism-turtle.min.js │ │ │ ├── prism-twig.min.js │ │ │ ├── prism-typescript.min.js │ │ │ ├── prism-vala.min.js │ │ │ ├── prism-vbnet.min.js │ │ │ ├── prism-velocity.min.js │ │ │ ├── prism-verilog.min.js │ │ │ ├── prism-vhdl.min.js │ │ │ ├── prism-vim.min.js │ │ │ ├── prism-visual-basic.min.js │ │ │ ├── prism-wasm.min.js │ │ │ ├── prism-wiki.min.js │ │ │ ├── prism-xeora.min.js │ │ │ ├── prism-xojo.min.js │ │ │ ├── prism-xquery.min.js │ │ │ ├── prism-yaml.min.js │ │ │ └── prism-zig.min.js │ │ ├── dependencies.js │ │ ├── plugins │ │ │ ├── autolinker │ │ │ │ ├── prism-autolinker.css │ │ │ │ └── prism-autolinker.min.js │ │ │ ├── autoloader │ │ │ │ └── prism-autoloader.min.js │ │ │ ├── command-line │ │ │ │ ├── prism-command-line.css │ │ │ │ └── prism-command-line.min.js │ │ │ ├── copy-to-clipboard │ │ │ │ └── prism-copy-to-clipboard.min.js │ │ │ ├── custom-class │ │ │ │ └── prism-custom-class.min.js │ │ │ ├── data-uri-highlight │ │ │ │ └── prism-data-uri-highlight.min.js │ │ │ ├── diff-highlight │ │ │ │ ├── prism-diff-highlight.css │ │ │ │ └── prism-diff-highlight.min.js │ │ │ ├── download-button │ │ │ │ └── prism-download-button.min.js │ │ │ ├── file-highlight │ │ │ │ └── prism-file-highlight.min.js │ │ │ ├── filter-highlight-all │ │ │ │ └── prism-filter-highlight-all.min.js │ │ │ ├── highlight-keywords │ │ │ │ └── prism-highlight-keywords.min.js │ │ │ ├── inline-color │ │ │ │ ├── prism-inline-color.css │ │ │ │ └── prism-inline-color.min.js │ │ │ ├── jsonp-highlight │ │ │ │ └── prism-jsonp-highlight.min.js │ │ │ ├── keep-markup │ │ │ │ └── prism-keep-markup.min.js │ │ │ ├── line-highlight │ │ │ │ ├── prism-line-highlight.css │ │ │ │ └── prism-line-highlight.min.js │ │ │ ├── line-numbers │ │ │ │ ├── prism-line-numbers.css │ │ │ │ └── prism-line-numbers.min.js │ │ │ ├── match-braces │ │ │ │ ├── prism-match-braces.css │ │ │ │ └── prism-match-braces.min.js │ │ │ ├── normalize-whitespace │ │ │ │ └── prism-normalize-whitespace.min.js │ │ │ ├── previewers │ │ │ │ ├── prism-previewers.css │ │ │ │ └── prism-previewers.min.js │ │ │ ├── remove-initial-line-feed │ │ │ │ └── prism-remove-initial-line-feed.min.js │ │ │ ├── show-invisibles │ │ │ │ ├── prism-show-invisibles.css │ │ │ │ └── prism-show-invisibles.min.js │ │ │ ├── show-language │ │ │ │ └── prism-show-language.min.js │ │ │ ├── toolbar │ │ │ │ ├── prism-toolbar.css │ │ │ │ └── prism-toolbar.min.js │ │ │ ├── unescaped-markup │ │ │ │ ├── prism-unescaped-markup.css │ │ │ │ └── prism-unescaped-markup.min.js │ │ │ └── wpd │ │ │ │ ├── prism-wpd.css │ │ │ │ └── prism-wpd.min.js │ │ ├── prism.js │ │ └── themes │ │ │ ├── prism-coy.css │ │ │ ├── prism-dark.css │ │ │ ├── prism-funky.css │ │ │ ├── prism-okaidia.css │ │ │ ├── prism-solarizedlight.css │ │ │ ├── prism-tomorrow.css │ │ │ ├── prism-twilight.css │ │ │ └── prism.css │ ├── quill │ │ └── dist │ │ │ ├── quill.bubble.css │ │ │ ├── quill.core.css │ │ │ ├── quill.core.js │ │ │ ├── quill.min.js │ │ │ └── quill.snow.css │ ├── select2 │ │ └── dist │ │ │ ├── css │ │ │ └── select2.min.css │ │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── build.txt │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.js │ ├── sudo │ │ └── lib │ │ │ └── sudo.js │ └── sweetalert2 │ │ └── dist │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js └── views │ ├── Components │ ├── footer.blade.php │ ├── nav.blade.php │ └── sidebar.blade.php │ ├── Layouts │ └── app.blade.php │ ├── Libraries │ ├── scripts.blade.php │ └── styles.blade.php │ └── Pages │ ├── Home │ └── home.blade.php │ └── Metamsk │ └── metamask.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ └── ExampleTest.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = space 8 | indent_size = 4 9 | trim_trailing_whitespace = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.scss linguist-vendored 4 | *.js linguist-vendored 5 | CHANGELOG.md export-ignore 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /public/hot 3 | /public/storage 4 | /storage/*.key 5 | /vendor 6 | .env 7 | .env.backup 8 | .phpunit.result.cache 9 | docker-compose.override.yml 10 | Homestead.json 11 | Homestead.yaml 12 | npm-debug.log 13 | yarn-error.log 14 | -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- 1 | php: 2 | preset: laravel 3 | disabled: 4 | - no_unused_imports 5 | finder: 6 | not-name: 7 | - index.php 8 | - server.php 9 | js: 10 | finder: 11 | not-name: 12 | - webpack.mix.js 13 | css: true 14 | -------------------------------------------------------------------------------- /app/Http/Controllers/Home/HomeController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /public/vendor/animate.css/source/_vars.css: -------------------------------------------------------------------------------- 1 | .animated { 2 | --animate-duration: 1s; 3 | --animate-delay: 1s; 4 | } 5 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | from, 3 | 50%, 4 | to { 5 | opacity: 1; 6 | } 7 | 8 | 25%, 9 | 75% { 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .flash { 15 | animation-name: flash; 16 | } 17 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/bouncing_exits/bounceOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutLeft { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(-2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutLeft { 14 | animation-name: bounceOutLeft; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/bouncing_exits/bounceOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutRight { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(-20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutRight { 14 | animation-name: bounceOutRight; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | from { 3 | opacity: 0; 4 | } 5 | 6 | to { 7 | opacity: 1; 8 | } 9 | } 10 | 11 | .fadeIn { 12 | animation-name: fadeIn; 13 | } 14 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDown { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDown { 14 | animation-name: fadeInDown; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDownBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDownBig { 14 | animation-name: fadeInDownBig; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeft { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeft { 14 | animation-name: fadeInLeft; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeftBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeftBig { 14 | animation-name: fadeInLeftBig; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRight { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRight { 14 | animation-name: fadeInRight; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRightBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRightBig { 14 | animation-name: fadeInRightBig; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUp { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUp { 14 | animation-name: fadeInUp; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_entrances/fadeInUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUpBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUpBig { 14 | animation-name: fadeInUpBig; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .fadeOut { 12 | animation-name: fadeOut; 13 | } 14 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDown { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutDown { 13 | animation-name: fadeOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDownBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutDownBig { 13 | animation-name: fadeOutDownBig; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeft { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeft { 13 | animation-name: fadeOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeftBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeftBig { 13 | animation-name: fadeOutLeftBig; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRight { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRight { 13 | animation-name: fadeOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRightBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRightBig { 13 | animation-name: fadeOutRightBig; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUp { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutUp { 13 | animation-name: fadeOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/fading_exits/fadeOutUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUpBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutUpBig { 13 | animation-name: fadeOutUpBig; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/lightspeed/lightSpeedOut.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | transform: translate3d(100%, 0, 0) skewX(30deg); 8 | opacity: 0; 9 | } 10 | } 11 | 12 | .lightSpeedOut { 13 | animation-name: lightSpeedOut; 14 | animation-timing-function: ease-in; 15 | } 16 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/rotating_exits/rotateOut.css: -------------------------------------------------------------------------------- 1 | @keyframes rotateOut { 2 | from { 3 | transform-origin: center; 4 | opacity: 1; 5 | } 6 | 7 | to { 8 | transform-origin: center; 9 | transform: rotate3d(0, 0, 1, 200deg); 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .rotateOut { 15 | animation-name: rotateOut; 16 | } 17 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_entrances/slideInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInDown { 2 | from { 3 | transform: translate3d(0, -100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInDown { 13 | animation-name: slideInDown; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_entrances/slideInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInLeft { 2 | from { 3 | transform: translate3d(-100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInLeft { 13 | animation-name: slideInLeft; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_entrances/slideInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInRight { 2 | from { 3 | transform: translate3d(100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInRight { 13 | animation-name: slideInRight; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_entrances/slideInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInUp { 2 | from { 3 | transform: translate3d(0, 100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInUp { 13 | animation-name: slideInUp; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_exits/slideOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutDown { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .slideOutDown { 13 | animation-name: slideOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_exits/slideOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutLeft { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutLeft { 13 | animation-name: slideOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_exits/slideOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutRight { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutRight { 13 | animation-name: slideOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/sliding_exits/slideOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutUp { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .slideOutUp { 13 | animation-name: slideOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/zooming_entrances/zoomIn.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomIn { 2 | from { 3 | opacity: 0; 4 | transform: scale3d(0.3, 0.3, 0.3); 5 | } 6 | 7 | 50% { 8 | opacity: 1; 9 | } 10 | } 11 | 12 | .zoomIn { 13 | animation-name: zoomIn; 14 | } 15 | -------------------------------------------------------------------------------- /public/vendor/animate.css/source/zooming_exits/zoomOut.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | 50% { 7 | opacity: 0; 8 | transform: scale3d(0.3, 0.3, 0.3); 9 | } 10 | 11 | to { 12 | opacity: 0; 13 | } 14 | } 15 | 16 | .zoomOut { 17 | animation-name: zoomOut; 18 | } 19 | -------------------------------------------------------------------------------- /public/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip -------------------------------------------------------------------------------- /public/vendor/datatables.net-buttons/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/datatables.net-buttons/swf/flashExport.swf -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/vendor/gulp-copy/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/gulp-copy'); 4 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/bin/gulp.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('gulp-cli')(); 4 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/bin/gulp.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict'; 4 | 5 | require('../')(); 6 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/completion/fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | 3 | # Usage: 4 | # 5 | # To enable fish completion for gulp, add the following line to 6 | # your ~/.config/fish/config.fish file: 7 | # 8 | # gulp --completion=fish | source 9 | 10 | complete -c gulp -a "(gulp --tasks-simple)" -f 11 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/shared/make-title.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function makeTitle(cmd, argv) { 4 | if (!argv || argv.length === 0) { 5 | return cmd; 6 | } 7 | 8 | return [cmd].concat(argv).join(' '); 9 | } 10 | 11 | module.exports = makeTitle; 12 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/shared/tildify.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var replaceHomedir = require('replace-homedir'); 4 | 5 | function tildify(filepath) { 6 | return replaceHomedir(filepath, '~'); 7 | } 8 | 9 | module.exports = tildify; 10 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/tasks-simple.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function logTasksSimple(env, localGulp) { 4 | console.log(Object.keys(localGulp.tasks) 5 | .join('\n') 6 | .trim()); 7 | } 8 | 9 | module.exports = logTasksSimple; 10 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/tasks-simple.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function logTasksSimple(nodes) { 4 | console.log(nodes.join('\n').trim()); 5 | } 6 | 7 | module.exports = logTasksSimple; 8 | -------------------------------------------------------------------------------- /public/vendor/gulp-copy/node_modules/yargs/lib/yerror.js: -------------------------------------------------------------------------------- 1 | function YError (msg) { 2 | this.name = 'YError' 3 | this.message = msg || 'yargs error' 4 | Error.captureStackTrace(this, YError) 5 | } 6 | 7 | YError.prototype = Object.create(Error.prototype) 8 | YError.prototype.constructor = YError 9 | 10 | module.exports = YError 11 | -------------------------------------------------------------------------------- /public/vendor/jekyll/benchmark/hash-fetch: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | h = {:bar => 'uco'} 4 | 5 | Benchmark.ips do |x| 6 | x.report('fetch with no block') { h.fetch(:bar, (0..9).to_a) } 7 | x.report('fetch with a block') { h.fetch(:bar) { (0..9).to_a } } 8 | x.report('brackets with an ||') { h[:bar] || (0..9).to_a } 9 | end 10 | -------------------------------------------------------------------------------- /public/vendor/jekyll/benchmark/proc-call-vs-yield: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | def fast 4 | yield 5 | end 6 | 7 | def slow(&block) 8 | block.call 9 | end 10 | 11 | Benchmark.ips do |x| 12 | x.report('yield') { fast { (0..9).to_a } } 13 | x.report('block.call') { slow { (0..9).to_a } } 14 | end 15 | -------------------------------------------------------------------------------- /public/vendor/jekyll/benchmark/sequential-assignment: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | Benchmark.ips do |x| 4 | x.report('parallel assignment') do 5 | a, b = 1, 2 6 | end 7 | x.report('multi-line assignment') do 8 | a = 1 9 | b = 2 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /public/vendor/jekyll/benchmark/string-concat: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | url = "http://jekyllrb.com" 4 | 5 | Benchmark.ips do |x| 6 | x.report('+=') { url += '/' } 7 | x.report('<<') { url << '/' } 8 | end 9 | -------------------------------------------------------------------------------- /public/vendor/jekyll/benchmark/symbol-to-proc: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | Benchmark.ips do |x| 4 | x.report('block') { (1..100).map { |i| i.to_s } } 5 | x.report('&:to_s') { (1..100).map(&:to_s) } 6 | end 7 | -------------------------------------------------------------------------------- /public/vendor/jekyll/lib/jekyll/errors.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | module Errors 3 | class FatalException < RuntimeError 4 | end 5 | 6 | class MissingDependencyException < FatalException 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /public/vendor/jekyll/lib/jekyll/generator.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | class Generator < Plugin 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /public/vendor/jekyll/lib/jekyll/version.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | VERSION = '3.0.0-beta1' 3 | end 4 | -------------------------------------------------------------------------------- /public/vendor/jekyll/lib/site_template/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 | 6 |
7 |

{{ page.title }}

8 |
9 | 10 |
11 | {{ content }} 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /public/vendor/jekyll/script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | script/branding 4 | bundle install -j8 5 | -------------------------------------------------------------------------------- /public/vendor/jekyll/script/cibuild: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | script/branding 4 | 5 | set -e 6 | 7 | if test -z "$TEST_SUITE"; then 8 | script/test 9 | script/cucumber 10 | else 11 | script/$TEST_SUITE 12 | fi 13 | -------------------------------------------------------------------------------- /public/vendor/jekyll/script/cucumber: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | time bundle exec cucumber \ 4 | -f Features::Support::Overview \ 5 | "$@" 6 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/CNAME: -------------------------------------------------------------------------------- 1 | jekyllrb.com 2 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/_includes/docs_contents.html: -------------------------------------------------------------------------------- 1 |
2 | 8 |
9 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include top.html %} 2 | 3 | 4 | {% include header.html %} 5 | 6 | {{ content }} 7 | 8 | {% include footer.html %} 9 | {% include anchor_links.html %} 10 | {% include analytics.html %} 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/favicon.ico -------------------------------------------------------------------------------- /public/vendor/jekyll/site/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/vendor/jekyll/site/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/vendor/jekyll/site/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/vendor/jekyll/site/freenode.txt: -------------------------------------------------------------------------------- 1 | aS3gAc4g 2 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/article-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/article-footer.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/footer-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/footer-arrow.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/footer-logo.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/jekyll-sticker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/jekyll-sticker.jpg -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/logo-2x.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/logo-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/logo-rss.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/img/octojekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/jekyll/site/img/octojekyll.png -------------------------------------------------------------------------------- /public/vendor/jekyll/site/latest_version.txt: -------------------------------------------------------------------------------- 1 | 2.5.3 -------------------------------------------------------------------------------- /public/vendor/jekyll/site/news/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: news 3 | title: News 4 | permalink: /news/ 5 | author: all 6 | --- 7 | 8 | {% for post in site.posts %} 9 | {% include news_item.html %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /public/vendor/jekyll/site/news/releases/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: news 3 | title: Releases 4 | permalink: /news/releases/ 5 | author: all 6 | --- 7 | 8 | {% for post in site.categories.release %} 9 | {% include news_item.html %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /public/vendor/jquery.scrollbar/index.js: -------------------------------------------------------------------------------- 1 | require('./jquery.scrollbar'); 2 | module.exports = 'jQueryScrollbar'; 3 | 4 | -------------------------------------------------------------------------------- /public/vendor/jquery.scrollbar/sass/config.rb: -------------------------------------------------------------------------------- 1 | require 'compass/import-once/activate' 2 | line_comments = false 3 | -------------------------------------------------------------------------------- /public/vendor/lavalamp/images/103332256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/lavalamp/images/103332256.jpg -------------------------------------------------------------------------------- /public/vendor/lavalamp/images/104209996.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/lavalamp/images/104209996.jpg -------------------------------------------------------------------------------- /public/vendor/lavalamp/images/146672189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/lavalamp/images/146672189.jpg -------------------------------------------------------------------------------- /public/vendor/lavalamp/images/sb10065850n-001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/lavalamp/images/sb10065850n-001.jpg -------------------------------------------------------------------------------- /public/vendor/moment/ender.js: -------------------------------------------------------------------------------- 1 | $.ender({ moment: require('moment') }) 2 | -------------------------------------------------------------------------------- /public/vendor/moment/package.js: -------------------------------------------------------------------------------- 1 | var profile = { 2 | resourceTags: { 3 | ignore: function(filename, mid){ 4 | // only include moment/moment 5 | return mid != "moment/moment"; 6 | }, 7 | amd: function(filename, mid){ 8 | return /\.js$/.test(filename); 9 | } 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /public/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /public/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /public/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/public/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-arff.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.arff={comment:/%.*/,string:{pattern:/(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,greedy:!0},keyword:/@(?:attribute|data|end|relation)\b/i,number:/\b\d+(?:\.\d+)?\b/,punctuation:/[{},]/}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-bnf.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.bnf={string:{pattern:/"[^\r\n"]*"|'[^\r\n']*'/},definition:{pattern:/<[^<>\r\n\t]+>(?=\s*::=)/,alias:["rule","keyword"],inside:{punctuation:/^<|>$/}},rule:{pattern:/<[^<>\r\n\t]+>/,inside:{punctuation:/^<|>$/}},operator:/::=|[|()[\]{}*+?]|\.{3}/},Prism.languages.rbnf=Prism.languages.bnf; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-brainfuck.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.brainfuck={pointer:{pattern:/<|>/,alias:"keyword"},increment:{pattern:/\+/,alias:"inserted"},decrement:{pattern:/-/,alias:"deleted"},branching:{pattern:/\[|\]/,alias:"important"},operator:/[.,]/,comment:/\S+/}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-gcode.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.gcode={comment:/;.*|\B\(.*?\)\B/,string:{pattern:/"(?:""|[^"])*"/,greedy:!0},keyword:/\b[GM]\d+(?:\.\d+)?\b/,property:/\b[A-Z]/,checksum:{pattern:/\*\d+/,alias:"punctuation"},punctuation:/:/}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-git.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-hpkp.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.hpkp={directive:{pattern:/\b(?:(?:includeSubDomains|preload|strict)(?: |;)|pin-sha256="[a-zA-Z\d+=/]+"|(?:max-age|report-uri)=|report-to )/,alias:"keyword"},safe:{pattern:/\d{7,}/,alias:"selector"},unsafe:{pattern:/\d{1,6}/,alias:"function"}}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-hsts.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.hsts={directive:{pattern:/\b(?:max-age=|includeSubDomains|preload)/,alias:"keyword"},safe:{pattern:/\d{8,}/,alias:"selector"},unsafe:{pattern:/\d{1,7}/,alias:"function"}}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-ini.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.ini={comment:/^[ \t]*[;#].*$/m,selector:/^[ \t]*\[.*?\]/m,constant:/^[ \t]*[^\s=]+?(?=[ \t]*=)/m,"attr-value":{pattern:/=.*/,inside:{punctuation:/^[=]/}}}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-jsonp.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.jsonp=Prism.languages.extend("json",{punctuation:/[{}[\]();,.]/}),Prism.languages.insertBefore("jsonp","punctuation",{function:/[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\()/}); -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-nand2tetris-hdl.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages["nand2tetris-hdl"]={comment:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,keyword:/\b(?:CHIP|IN|OUT|PARTS|BUILTIN|CLOCKED)\b/,boolean:/\b(?:true|false)\b/,function:/[A-Za-z][A-Za-z0-9]*(?=\()/,number:/\b\d+\b/,operator:/=|\.\./,punctuation:/[{}[\];(),:]/}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-php-extras.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.insertBefore("php","variable",{this:/\$this\b/,global:/\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)\b/,scope:{pattern:/\b[\w\\]+::/,inside:{keyword:/static|self|parent/,punctuation:/::|\\/}}}); -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-properties.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.properties={comment:/^[ \t]*[#!].*$/m,"attr-value":{pattern:/(^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?: *[=:] *| ))(?:\\(?:\r\n|[\s\S])|[^\\\r\n])+/m,lookbehind:!0},"attr-name":/^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?= *[=:] *| )/m,punctuation:/[=:]/}; -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-t4-cs.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.t4=Prism.languages["t4-cs"]=Prism.languages["t4-templating"].createT4("csharp"); -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-t4-vb.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages["t4-vb"]=Prism.languages["t4-templating"].createT4("visual-basic"); -------------------------------------------------------------------------------- /public/vendor/prismjs/components/prism-tsx.min.js: -------------------------------------------------------------------------------- 1 | var typescript=Prism.util.clone(Prism.languages.typescript);Prism.languages.tsx=Prism.languages.extend("jsx",typescript); -------------------------------------------------------------------------------- /public/vendor/prismjs/plugins/autolinker/prism-autolinker.css: -------------------------------------------------------------------------------- 1 | .token a { 2 | color: inherit; 3 | } -------------------------------------------------------------------------------- /public/vendor/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js: -------------------------------------------------------------------------------- 1 | "undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("wrap",function(e){"keyword"===e.type&&e.classes.push("keyword-"+e.content)}); -------------------------------------------------------------------------------- /public/vendor/prismjs/plugins/inline-color/prism-inline-color.css: -------------------------------------------------------------------------------- 1 | span.inline-color { 2 | display: inline-block; 3 | height: 1.333ch; 4 | width: 1.333ch; 5 | margin: 0 .333ch; 6 | box-sizing: border-box; 7 | border: 1px solid white; 8 | outline: 1px solid black; 9 | } 10 | -------------------------------------------------------------------------------- /public/vendor/prismjs/plugins/wpd/prism-wpd.css: -------------------------------------------------------------------------------- 1 | code[class*="language-"] a[href], 2 | pre[class*="language-"] a[href] { 3 | cursor: help; 4 | text-decoration: none; 5 | } 6 | 7 | code[class*="language-"] a[href]:hover, 8 | pre[class*="language-"] a[href]:hover { 9 | cursor: help; 10 | text-decoration: underline; 11 | } -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/adobe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/figma.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/adjust.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/bolt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/burn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-square-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/comment-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/dot-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/ellipsis-v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-martini.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/glass-whiskey.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/ice-cream.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/map-marker.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/minus-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/mobile.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/paper-plane.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/play-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/qrcode.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/record-vinyl.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sort.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/step-backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/step-forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/sticky-note.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/stop-circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/tablet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/utensil-spoon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/voicemail.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/_vars.css: -------------------------------------------------------------------------------- 1 | .animated { 2 | --animate-duration: 1s; 3 | --animate-delay: 1s; 4 | } 5 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/attention_seekers/flash.css: -------------------------------------------------------------------------------- 1 | @keyframes flash { 2 | from, 3 | 50%, 4 | to { 5 | opacity: 1; 6 | } 7 | 8 | 25%, 9 | 75% { 10 | opacity: 0; 11 | } 12 | } 13 | 14 | .flash { 15 | animation-name: flash; 16 | } 17 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/bouncing_exits/bounceOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutLeft { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(-2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutLeft { 14 | animation-name: bounceOutLeft; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/bouncing_exits/bounceOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes bounceOutRight { 2 | 20% { 3 | opacity: 1; 4 | transform: translate3d(-20px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 0; 9 | transform: translate3d(2000px, 0, 0); 10 | } 11 | } 12 | 13 | .bounceOutRight { 14 | animation-name: bounceOutRight; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeIn.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeIn { 2 | from { 3 | opacity: 0; 4 | } 5 | 6 | to { 7 | opacity: 1; 8 | } 9 | } 10 | 11 | .fadeIn { 12 | animation-name: fadeIn; 13 | } 14 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDown { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDown { 14 | animation-name: fadeInDown; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInDownBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, -2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInDownBig { 14 | animation-name: fadeInDownBig; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeft { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeft { 14 | animation-name: fadeInLeft; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInLeftBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(-2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInLeftBig { 14 | animation-name: fadeInLeftBig; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRight { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(100%, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRight { 14 | animation-name: fadeInRight; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInRightBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(2000px, 0, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInRightBig { 14 | animation-name: fadeInRightBig; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUp { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 100%, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUp { 14 | animation-name: fadeInUp; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_entrances/fadeInUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeInUpBig { 2 | from { 3 | opacity: 0; 4 | transform: translate3d(0, 2000px, 0); 5 | } 6 | 7 | to { 8 | opacity: 1; 9 | transform: translate3d(0, 0, 0); 10 | } 11 | } 12 | 13 | .fadeInUpBig { 14 | animation-name: fadeInUpBig; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOut.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | } 9 | } 10 | 11 | .fadeOut { 12 | animation-name: fadeOut; 13 | } 14 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDown { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutDown { 13 | animation-name: fadeOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutDownBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutDownBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, 2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutDownBig { 13 | animation-name: fadeOutDownBig; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeft { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeft { 13 | animation-name: fadeOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutLeftBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutLeftBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(-2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutLeftBig { 13 | animation-name: fadeOutLeftBig; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRight { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRight { 13 | animation-name: fadeOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutRightBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutRightBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(2000px, 0, 0); 9 | } 10 | } 11 | 12 | .fadeOutRightBig { 13 | animation-name: fadeOutRightBig; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUp { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .fadeOutUp { 13 | animation-name: fadeOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/fading_exits/fadeOutUpBig.css: -------------------------------------------------------------------------------- 1 | @keyframes fadeOutUpBig { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | opacity: 0; 8 | transform: translate3d(0, -2000px, 0); 9 | } 10 | } 11 | 12 | .fadeOutUpBig { 13 | animation-name: fadeOutUpBig; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/lightspeed/lightSpeedOut.css: -------------------------------------------------------------------------------- 1 | @keyframes lightSpeedOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | to { 7 | transform: translate3d(100%, 0, 0) skewX(30deg); 8 | opacity: 0; 9 | } 10 | } 11 | 12 | .lightSpeedOut { 13 | animation-name: lightSpeedOut; 14 | animation-timing-function: ease-in; 15 | } 16 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_entrances/slideInDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInDown { 2 | from { 3 | transform: translate3d(0, -100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInDown { 13 | animation-name: slideInDown; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_entrances/slideInLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInLeft { 2 | from { 3 | transform: translate3d(-100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInLeft { 13 | animation-name: slideInLeft; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_entrances/slideInRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInRight { 2 | from { 3 | transform: translate3d(100%, 0, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInRight { 13 | animation-name: slideInRight; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_entrances/slideInUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideInUp { 2 | from { 3 | transform: translate3d(0, 100%, 0); 4 | visibility: visible; 5 | } 6 | 7 | to { 8 | transform: translate3d(0, 0, 0); 9 | } 10 | } 11 | 12 | .slideInUp { 13 | animation-name: slideInUp; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_exits/slideOutDown.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutDown { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, 100%, 0); 9 | } 10 | } 11 | 12 | .slideOutDown { 13 | animation-name: slideOutDown; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_exits/slideOutLeft.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutLeft { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(-100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutLeft { 13 | animation-name: slideOutLeft; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_exits/slideOutRight.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutRight { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(100%, 0, 0); 9 | } 10 | } 11 | 12 | .slideOutRight { 13 | animation-name: slideOutRight; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/sliding_exits/slideOutUp.css: -------------------------------------------------------------------------------- 1 | @keyframes slideOutUp { 2 | from { 3 | transform: translate3d(0, 0, 0); 4 | } 5 | 6 | to { 7 | visibility: hidden; 8 | transform: translate3d(0, -100%, 0); 9 | } 10 | } 11 | 12 | .slideOutUp { 13 | animation-name: slideOutUp; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/zooming_entrances/zoomIn.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomIn { 2 | from { 3 | opacity: 0; 4 | transform: scale3d(0.3, 0.3, 0.3); 5 | } 6 | 7 | 50% { 8 | opacity: 1; 9 | } 10 | } 11 | 12 | .zoomIn { 13 | animation-name: zoomIn; 14 | } 15 | -------------------------------------------------------------------------------- /resources/vendor/animate.css/source/zooming_exits/zoomOut.css: -------------------------------------------------------------------------------- 1 | @keyframes zoomOut { 2 | from { 3 | opacity: 1; 4 | } 5 | 6 | 50% { 7 | opacity: 0; 8 | transform: scale3d(0.3, 0.3, 0.3); 9 | } 10 | 11 | to { 12 | opacity: 0; 13 | } 14 | } 15 | 16 | .zoomOut { 17 | animation-name: zoomOut; 18 | } 19 | -------------------------------------------------------------------------------- /resources/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/bootstrap-tagsinput/dist/bootstrap-tagsinput.zip -------------------------------------------------------------------------------- /resources/vendor/datatables.net-buttons/swf/flashExport.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/datatables.net-buttons/swf/flashExport.swf -------------------------------------------------------------------------------- /resources/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /resources/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /resources/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /resources/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /resources/vendor/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/gulp-copy'); 4 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/bin/gulp.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('gulp-cli')(); 4 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/bin/gulp.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict'; 4 | 5 | require('../')(); 6 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/completion/fish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env fish 2 | 3 | # Usage: 4 | # 5 | # To enable fish completion for gulp, add the following line to 6 | # your ~/.config/fish/config.fish file: 7 | # 8 | # gulp --completion=fish | source 9 | 10 | complete -c gulp -a "(gulp --tasks-simple)" -f 11 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/shared/make-title.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function makeTitle(cmd, argv) { 4 | if (!argv || argv.length === 0) { 5 | return cmd; 6 | } 7 | 8 | return [cmd].concat(argv).join(' '); 9 | } 10 | 11 | module.exports = makeTitle; 12 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/shared/tildify.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var replaceHomedir = require('replace-homedir'); 4 | 5 | function tildify(filepath) { 6 | return replaceHomedir(filepath, '~'); 7 | } 8 | 9 | module.exports = tildify; 10 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^3.7.0/log/tasks-simple.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function logTasksSimple(env, localGulp) { 4 | console.log(Object.keys(localGulp.tasks) 5 | .join('\n') 6 | .trim()); 7 | } 8 | 9 | module.exports = logTasksSimple; 10 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/gulp/node_modules/gulp-cli/lib/versioned/^4.0.0/log/tasks-simple.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function logTasksSimple(nodes) { 4 | console.log(nodes.join('\n').trim()); 5 | } 6 | 7 | module.exports = logTasksSimple; 8 | -------------------------------------------------------------------------------- /resources/vendor/gulp-copy/node_modules/yargs/lib/yerror.js: -------------------------------------------------------------------------------- 1 | function YError (msg) { 2 | this.name = 'YError' 3 | this.message = msg || 'yargs error' 4 | Error.captureStackTrace(this, YError) 5 | } 6 | 7 | YError.prototype = Object.create(Error.prototype) 8 | YError.prototype.constructor = YError 9 | 10 | module.exports = YError 11 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/benchmark/hash-fetch: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | h = {:bar => 'uco'} 4 | 5 | Benchmark.ips do |x| 6 | x.report('fetch with no block') { h.fetch(:bar, (0..9).to_a) } 7 | x.report('fetch with a block') { h.fetch(:bar) { (0..9).to_a } } 8 | x.report('brackets with an ||') { h[:bar] || (0..9).to_a } 9 | end 10 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/benchmark/proc-call-vs-yield: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | def fast 4 | yield 5 | end 6 | 7 | def slow(&block) 8 | block.call 9 | end 10 | 11 | Benchmark.ips do |x| 12 | x.report('yield') { fast { (0..9).to_a } } 13 | x.report('block.call') { slow { (0..9).to_a } } 14 | end 15 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/benchmark/sequential-assignment: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | Benchmark.ips do |x| 4 | x.report('parallel assignment') do 5 | a, b = 1, 2 6 | end 7 | x.report('multi-line assignment') do 8 | a = 1 9 | b = 2 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/benchmark/string-concat: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | url = "http://jekyllrb.com" 4 | 5 | Benchmark.ips do |x| 6 | x.report('+=') { url += '/' } 7 | x.report('<<') { url << '/' } 8 | end 9 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/benchmark/symbol-to-proc: -------------------------------------------------------------------------------- 1 | require 'benchmark/ips' 2 | 3 | Benchmark.ips do |x| 4 | x.report('block') { (1..100).map { |i| i.to_s } } 5 | x.report('&:to_s') { (1..100).map(&:to_s) } 6 | end 7 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/lib/jekyll/errors.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | module Errors 3 | class FatalException < RuntimeError 4 | end 5 | 6 | class MissingDependencyException < FatalException 7 | end 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/lib/jekyll/generator.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | class Generator < Plugin 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/lib/jekyll/version.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | VERSION = '3.0.0-beta1' 3 | end 4 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/lib/site_template/_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 |
5 | 6 |
7 |

{{ page.title }}

8 |
9 | 10 |
11 | {{ content }} 12 |
13 | 14 |
15 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | script/branding 4 | bundle install -j8 5 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/script/cibuild: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | 3 | script/branding 4 | 5 | set -e 6 | 7 | if test -z "$TEST_SUITE"; then 8 | script/test 9 | script/cucumber 10 | else 11 | script/$TEST_SUITE 12 | fi 13 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/script/cucumber: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | time bundle exec cucumber \ 4 | -f Features::Support::Overview \ 5 | "$@" 6 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/CNAME: -------------------------------------------------------------------------------- 1 | jekyllrb.com 2 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/_includes/docs_contents.html: -------------------------------------------------------------------------------- 1 |
2 | 8 |
9 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/_layouts/default.html: -------------------------------------------------------------------------------- 1 | {% include top.html %} 2 | 3 | 4 | {% include header.html %} 5 | 6 | {{ content }} 7 | 8 | {% include footer.html %} 9 | {% include anchor_links.html %} 10 | {% include analytics.html %} 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/favicon.ico -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/freenode.txt: -------------------------------------------------------------------------------- 1 | aS3gAc4g 2 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/article-footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/article-footer.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/footer-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/footer-arrow.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/footer-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/footer-logo.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/jekyll-sticker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/jekyll-sticker.jpg -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/logo-2x.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/logo-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/logo-rss.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/img/octojekyll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/jekyll/site/img/octojekyll.png -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/latest_version.txt: -------------------------------------------------------------------------------- 1 | 2.5.3 -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/news/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: news 3 | title: News 4 | permalink: /news/ 5 | author: all 6 | --- 7 | 8 | {% for post in site.posts %} 9 | {% include news_item.html %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /resources/vendor/jekyll/site/news/releases/index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: news 3 | title: Releases 4 | permalink: /news/releases/ 5 | author: all 6 | --- 7 | 8 | {% for post in site.categories.release %} 9 | {% include news_item.html %} 10 | {% endfor %} 11 | -------------------------------------------------------------------------------- /resources/vendor/jquery.scrollbar/index.js: -------------------------------------------------------------------------------- 1 | require('./jquery.scrollbar'); 2 | module.exports = 'jQueryScrollbar'; 3 | 4 | -------------------------------------------------------------------------------- /resources/vendor/jquery.scrollbar/sass/config.rb: -------------------------------------------------------------------------------- 1 | require 'compass/import-once/activate' 2 | line_comments = false 3 | -------------------------------------------------------------------------------- /resources/vendor/lavalamp/images/103332256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/lavalamp/images/103332256.jpg -------------------------------------------------------------------------------- /resources/vendor/lavalamp/images/104209996.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/lavalamp/images/104209996.jpg -------------------------------------------------------------------------------- /resources/vendor/lavalamp/images/146672189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/lavalamp/images/146672189.jpg -------------------------------------------------------------------------------- /resources/vendor/lavalamp/images/sb10065850n-001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/lavalamp/images/sb10065850n-001.jpg -------------------------------------------------------------------------------- /resources/vendor/moment/ender.js: -------------------------------------------------------------------------------- 1 | $.ender({ moment: require('moment') }) 2 | -------------------------------------------------------------------------------- /resources/vendor/moment/package.js: -------------------------------------------------------------------------------- 1 | var profile = { 2 | resourceTags: { 3 | ignore: function(filename, mid){ 4 | // only include moment/moment 5 | return mid != "moment/moment"; 6 | }, 7 | amd: function(filename, mid){ 8 | return /\.js$/.test(filename); 9 | } 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /resources/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /resources/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /resources/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /resources/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lathindu1/tutorials/f2d7d8026b0cba6c7fdd4473480226384304c707/resources/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-arff.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.arff={comment:/%.*/,string:{pattern:/(["'])(?:\\.|(?!\1)[^\\\r\n])*\1/,greedy:!0},keyword:/@(?:attribute|data|end|relation)\b/i,number:/\b\d+(?:\.\d+)?\b/,punctuation:/[{},]/}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-bnf.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.bnf={string:{pattern:/"[^\r\n"]*"|'[^\r\n']*'/},definition:{pattern:/<[^<>\r\n\t]+>(?=\s*::=)/,alias:["rule","keyword"],inside:{punctuation:/^<|>$/}},rule:{pattern:/<[^<>\r\n\t]+>/,inside:{punctuation:/^<|>$/}},operator:/::=|[|()[\]{}*+?]|\.{3}/},Prism.languages.rbnf=Prism.languages.bnf; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-brainfuck.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.brainfuck={pointer:{pattern:/<|>/,alias:"keyword"},increment:{pattern:/\+/,alias:"inserted"},decrement:{pattern:/-/,alias:"deleted"},branching:{pattern:/\[|\]/,alias:"important"},operator:/[.,]/,comment:/\S+/}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-gcode.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.gcode={comment:/;.*|\B\(.*?\)\B/,string:{pattern:/"(?:""|[^"])*"/,greedy:!0},keyword:/\b[GM]\d+(?:\.\d+)?\b/,property:/\b[A-Z]/,checksum:{pattern:/\*\d+/,alias:"punctuation"},punctuation:/:/}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-git.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.git={comment:/^#.*/m,deleted:/^[-–].*/m,inserted:/^\+.*/m,string:/("|')(?:\\.|(?!\1)[^\\\r\n])*\1/m,command:{pattern:/^.*\$ git .*$/m,inside:{parameter:/\s--?\w+/m}},coord:/^@@.*@@$/m,commit_sha1:/^commit \w{40}$/m}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-hpkp.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.hpkp={directive:{pattern:/\b(?:(?:includeSubDomains|preload|strict)(?: |;)|pin-sha256="[a-zA-Z\d+=/]+"|(?:max-age|report-uri)=|report-to )/,alias:"keyword"},safe:{pattern:/\d{7,}/,alias:"selector"},unsafe:{pattern:/\d{1,6}/,alias:"function"}}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-hsts.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.hsts={directive:{pattern:/\b(?:max-age=|includeSubDomains|preload)/,alias:"keyword"},safe:{pattern:/\d{8,}/,alias:"selector"},unsafe:{pattern:/\d{1,7}/,alias:"function"}}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-ini.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.ini={comment:/^[ \t]*[;#].*$/m,selector:/^[ \t]*\[.*?\]/m,constant:/^[ \t]*[^\s=]+?(?=[ \t]*=)/m,"attr-value":{pattern:/=.*/,inside:{punctuation:/^[=]/}}}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-jsonp.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.jsonp=Prism.languages.extend("json",{punctuation:/[{}[\]();,.]/}),Prism.languages.insertBefore("jsonp","punctuation",{function:/[_$a-zA-Z\xA0-\uFFFF][$\w\xA0-\uFFFF]*(?=\s*\()/}); -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-nand2tetris-hdl.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages["nand2tetris-hdl"]={comment:/\/\/.*|\/\*[\s\S]*?(?:\*\/|$)/,keyword:/\b(?:CHIP|IN|OUT|PARTS|BUILTIN|CLOCKED)\b/,boolean:/\b(?:true|false)\b/,function:/[A-Za-z][A-Za-z0-9]*(?=\()/,number:/\b\d+\b/,operator:/=|\.\./,punctuation:/[{}[\];(),:]/}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-php-extras.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.insertBefore("php","variable",{this:/\$this\b/,global:/\$(?:_(?:SERVER|GET|POST|FILES|REQUEST|SESSION|ENV|COOKIE)|GLOBALS|HTTP_RAW_POST_DATA|argc|argv|php_errormsg|http_response_header)\b/,scope:{pattern:/\b[\w\\]+::/,inside:{keyword:/static|self|parent/,punctuation:/::|\\/}}}); -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-properties.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.properties={comment:/^[ \t]*[#!].*$/m,"attr-value":{pattern:/(^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?: *[=:] *| ))(?:\\(?:\r\n|[\s\S])|[^\\\r\n])+/m,lookbehind:!0},"attr-name":/^[ \t]*(?:\\(?:\r\n|[\s\S])|[^\\\s:=])+?(?= *[=:] *| )/m,punctuation:/[=:]/}; -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-t4-cs.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages.t4=Prism.languages["t4-cs"]=Prism.languages["t4-templating"].createT4("csharp"); -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-t4-vb.min.js: -------------------------------------------------------------------------------- 1 | Prism.languages["t4-vb"]=Prism.languages["t4-templating"].createT4("visual-basic"); -------------------------------------------------------------------------------- /resources/vendor/prismjs/components/prism-tsx.min.js: -------------------------------------------------------------------------------- 1 | var typescript=Prism.util.clone(Prism.languages.typescript);Prism.languages.tsx=Prism.languages.extend("jsx",typescript); -------------------------------------------------------------------------------- /resources/vendor/prismjs/plugins/autolinker/prism-autolinker.css: -------------------------------------------------------------------------------- 1 | .token a { 2 | color: inherit; 3 | } -------------------------------------------------------------------------------- /resources/vendor/prismjs/plugins/highlight-keywords/prism-highlight-keywords.min.js: -------------------------------------------------------------------------------- 1 | "undefined"!=typeof self&&!self.Prism||"undefined"!=typeof global&&!global.Prism||Prism.hooks.add("wrap",function(e){"keyword"===e.type&&e.classes.push("keyword-"+e.content)}); -------------------------------------------------------------------------------- /resources/vendor/prismjs/plugins/inline-color/prism-inline-color.css: -------------------------------------------------------------------------------- 1 | span.inline-color { 2 | display: inline-block; 3 | height: 1.333ch; 4 | width: 1.333ch; 5 | margin: 0 .333ch; 6 | box-sizing: border-box; 7 | border: 1px solid white; 8 | outline: 1px solid black; 9 | } 10 | -------------------------------------------------------------------------------- /resources/vendor/prismjs/plugins/wpd/prism-wpd.css: -------------------------------------------------------------------------------- 1 | code[class*="language-"] a[href], 2 | pre[class*="language-"] a[href] { 3 | cursor: help; 4 | text-decoration: none; 5 | } 6 | 7 | code[class*="language-"] a[href]:hover, 8 | pre[class*="language-"] a[href]:hover { 9 | cursor: help; 10 | text-decoration: underline; 11 | } -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | compiled.php 2 | config.php 3 | down 4 | events.scanned.php 5 | maintenance.php 6 | routes.php 7 | routes.scanned.php 8 | schedule-* 9 | services.json 10 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | assertTrue(true); 17 | } 18 | } 19 | --------------------------------------------------------------------------------