├── .editorconfig ├── .env-example.example ├── .gitattributes ├── .gitignore ├── .styleci.yml ├── .vscode └── launch.json ├── LICENSE ├── New Text Document.txt ├── README.md ├── app ├── Console │ └── Kernel.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── Admin │ │ │ ├── AccountController.php │ │ │ ├── DashboardController.php │ │ │ ├── ProfileController.php │ │ │ └── TyphoonController.php │ │ ├── Auth │ │ │ ├── ConfirmPasswordController.php │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── Controller.php │ │ └── Volunteer │ │ │ ├── ConstituentsController.php │ │ │ ├── DashboardController.php │ │ │ ├── EvacueesController.php │ │ │ └── ProfileController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── EncryptCookies.php │ │ ├── PreventRequestsDuringMaintenance.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── Role.php │ │ ├── TrimStrings.php │ │ ├── TrustHosts.php │ │ ├── TrustProxies.php │ │ ├── UserActivity.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── PasswordRequest.php │ │ ├── ProfileRequest.php │ │ └── UserRequest.php ├── Models │ ├── Admin │ │ ├── Barangay.php │ │ ├── Evacuation.php │ │ └── Typhoon.php │ ├── User.php │ └── Volunteer │ │ ├── Constituents.php │ │ └── Evacuees.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php └── Rules │ └── CurrentPasswordCheckRule.php ├── artisan ├── bootstrap ├── app.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── cors.php ├── database.php ├── datatables.php ├── debugbar.php ├── filesystems.php ├── hashing.php ├── larapex-charts.php ├── logging.php ├── mail.php ├── queue.php ├── services.php ├── session.php └── view.php ├── database ├── .gitignore ├── factories │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ ├── 2020_11_15_160348_create_barangays_table.php │ ├── 2020_11_15_160540_create_evacuations_table.php │ ├── 2020_11_22_154909_create_users_table.php │ ├── 2020_12_06_140333_create_typhoons_table.php │ ├── 2021_01_05_091541_create_constituents_table.php │ └── 2021_02_07_090501_create_evacuees_table.php └── seeders │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── argon │ ├── css │ │ ├── argon.css │ │ └── argon.min.css │ ├── 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 │ │ │ ├── profile-cover.jpg │ │ │ ├── react.jpg │ │ │ ├── sketch.jpg │ │ │ ├── team-1-800x800.jpg │ │ │ ├── team-2-800x800.jpg │ │ │ ├── team-3-800x800.jpg │ │ │ ├── team-4-800x800.jpg │ │ │ └── vue.jpg │ │ └── undraw_warning_cyit.svg │ ├── js │ │ ├── argon.js │ │ └── argon.min.js │ └── 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 │ │ │ ├── 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 │ │ │ │ ├── adn.svg │ │ │ │ ├── adversal.svg │ │ │ │ ├── affiliatetheme.svg │ │ │ │ ├── algolia.svg │ │ │ │ ├── alipay.svg │ │ │ │ ├── amazon-pay.svg │ │ │ │ ├── amazon.svg │ │ │ │ ├── amilia.svg │ │ │ │ ├── android.svg │ │ │ │ ├── angellist.svg │ │ │ │ ├── angrycreative.svg │ │ │ │ ├── angular.svg │ │ │ │ ├── app-store-ios.svg │ │ │ │ ├── app-store.svg │ │ │ │ ├── apper.svg │ │ │ │ ├── apple-pay.svg │ │ │ │ ├── apple.svg │ │ │ │ ├── asymmetrik.svg │ │ │ │ ├── audible.svg │ │ │ │ ├── autoprefixer.svg │ │ │ │ ├── avianex.svg │ │ │ │ ├── aviato.svg │ │ │ │ ├── aws.svg │ │ │ │ ├── bandcamp.svg │ │ │ │ ├── behance-square.svg │ │ │ │ ├── behance.svg │ │ │ │ ├── bimobject.svg │ │ │ │ ├── bitbucket.svg │ │ │ │ ├── bitcoin.svg │ │ │ │ ├── bity.svg │ │ │ │ ├── black-tie.svg │ │ │ │ ├── blackberry.svg │ │ │ │ ├── blogger-b.svg │ │ │ │ ├── blogger.svg │ │ │ │ ├── bluetooth-b.svg │ │ │ │ ├── bluetooth.svg │ │ │ │ ├── btc.svg │ │ │ │ ├── buromobelexperte.svg │ │ │ │ ├── buysellads.svg │ │ │ │ ├── cc-amazon-pay.svg │ │ │ │ ├── cc-amex.svg │ │ │ │ ├── cc-apple-pay.svg │ │ │ │ ├── cc-diners-club.svg │ │ │ │ ├── cc-discover.svg │ │ │ │ ├── cc-jcb.svg │ │ │ │ ├── cc-mastercard.svg │ │ │ │ ├── cc-paypal.svg │ │ │ │ ├── cc-stripe.svg │ │ │ │ ├── cc-visa.svg │ │ │ │ ├── centercode.svg │ │ │ │ ├── chrome.svg │ │ │ │ ├── cloudscale.svg │ │ │ │ ├── cloudsmith.svg │ │ │ │ ├── cloudversify.svg │ │ │ │ ├── codepen.svg │ │ │ │ ├── codiepie.svg │ │ │ │ ├── connectdevelop.svg │ │ │ │ ├── contao.svg │ │ │ │ ├── cpanel.svg │ │ │ │ ├── creative-commons-by.svg │ │ │ │ ├── creative-commons-nc-eu.svg │ │ │ │ ├── creative-commons-nc-jp.svg │ │ │ │ ├── creative-commons-nc.svg │ │ │ │ ├── creative-commons-nd.svg │ │ │ │ ├── creative-commons-pd-alt.svg │ │ │ │ ├── creative-commons-pd.svg │ │ │ │ ├── creative-commons-remix.svg │ │ │ │ ├── creative-commons-sa.svg │ │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ │ ├── creative-commons-sampling.svg │ │ │ │ ├── creative-commons-share.svg │ │ │ │ ├── creative-commons.svg │ │ │ │ ├── css3-alt.svg │ │ │ │ ├── css3.svg │ │ │ │ ├── cuttlefish.svg │ │ │ │ ├── d-and-d.svg │ │ │ │ ├── dashcube.svg │ │ │ │ ├── delicious.svg │ │ │ │ ├── deploydog.svg │ │ │ │ ├── deskpro.svg │ │ │ │ ├── deviantart.svg │ │ │ │ ├── digg.svg │ │ │ │ ├── digital-ocean.svg │ │ │ │ ├── discord.svg │ │ │ │ ├── discourse.svg │ │ │ │ ├── dochub.svg │ │ │ │ ├── docker.svg │ │ │ │ ├── draft2digital.svg │ │ │ │ ├── dribbble-square.svg │ │ │ │ ├── dribbble.svg │ │ │ │ ├── dropbox.svg │ │ │ │ ├── drupal.svg │ │ │ │ ├── dyalog.svg │ │ │ │ ├── earlybirds.svg │ │ │ │ ├── ebay.svg │ │ │ │ ├── edge.svg │ │ │ │ ├── elementor.svg │ │ │ │ ├── ello.svg │ │ │ │ ├── ember.svg │ │ │ │ ├── empire.svg │ │ │ │ ├── envira.svg │ │ │ │ ├── erlang.svg │ │ │ │ ├── ethereum.svg │ │ │ │ ├── etsy.svg │ │ │ │ ├── expeditedssl.svg │ │ │ │ ├── facebook-f.svg │ │ │ │ ├── facebook-messenger.svg │ │ │ │ ├── facebook-square.svg │ │ │ │ ├── facebook.svg │ │ │ │ ├── firefox.svg │ │ │ │ ├── first-order-alt.svg │ │ │ │ ├── first-order.svg │ │ │ │ ├── firstdraft.svg │ │ │ │ ├── flickr.svg │ │ │ │ ├── flipboard.svg │ │ │ │ ├── fly.svg │ │ │ │ ├── font-awesome-alt.svg │ │ │ │ ├── font-awesome-flag.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font-awesome.svg │ │ │ │ ├── fonticons-fi.svg │ │ │ │ ├── fonticons.svg │ │ │ │ ├── fort-awesome-alt.svg │ │ │ │ ├── fort-awesome.svg │ │ │ │ ├── forumbee.svg │ │ │ │ ├── foursquare.svg │ │ │ │ ├── free-code-camp.svg │ │ │ │ ├── freebsd.svg │ │ │ │ ├── fulcrum.svg │ │ │ │ ├── galactic-republic.svg │ │ │ │ ├── galactic-senate.svg │ │ │ │ ├── get-pocket.svg │ │ │ │ ├── gg-circle.svg │ │ │ │ ├── gg.svg │ │ │ │ ├── git-square.svg │ │ │ │ ├── git.svg │ │ │ │ ├── github-alt.svg │ │ │ │ ├── github-square.svg │ │ │ │ ├── github.svg │ │ │ │ ├── gitkraken.svg │ │ │ │ ├── gitlab.svg │ │ │ │ ├── gitter.svg │ │ │ │ ├── glide-g.svg │ │ │ │ ├── glide.svg │ │ │ │ ├── gofore.svg │ │ │ │ ├── goodreads-g.svg │ │ │ │ ├── goodreads.svg │ │ │ │ ├── google-drive.svg │ │ │ │ ├── google-play.svg │ │ │ │ ├── google-plus-g.svg │ │ │ │ ├── google-plus-square.svg │ │ │ │ ├── google-plus.svg │ │ │ │ ├── google-wallet.svg │ │ │ │ ├── google.svg │ │ │ │ ├── gratipay.svg │ │ │ │ ├── grav.svg │ │ │ │ ├── gripfire.svg │ │ │ │ ├── grunt.svg │ │ │ │ ├── gulp.svg │ │ │ │ ├── hacker-news-square.svg │ │ │ │ ├── hacker-news.svg │ │ │ │ ├── hackerrank.svg │ │ │ │ ├── hips.svg │ │ │ │ ├── hire-a-helper.svg │ │ │ │ ├── hooli.svg │ │ │ │ ├── hornbill.svg │ │ │ │ ├── hotjar.svg │ │ │ │ ├── houzz.svg │ │ │ │ ├── html5.svg │ │ │ │ ├── hubspot.svg │ │ │ │ ├── imdb.svg │ │ │ │ ├── instagram.svg │ │ │ │ ├── internet-explorer.svg │ │ │ │ ├── ioxhost.svg │ │ │ │ ├── itunes-note.svg │ │ │ │ ├── itunes.svg │ │ │ │ ├── java.svg │ │ │ │ ├── jedi-order.svg │ │ │ │ ├── jenkins.svg │ │ │ │ ├── joget.svg │ │ │ │ ├── joomla.svg │ │ │ │ ├── js-square.svg │ │ │ │ ├── js.svg │ │ │ │ ├── jsfiddle.svg │ │ │ │ ├── kaggle.svg │ │ │ │ ├── keybase.svg │ │ │ │ ├── keycdn.svg │ │ │ │ ├── kickstarter-k.svg │ │ │ │ ├── kickstarter.svg │ │ │ │ ├── korvue.svg │ │ │ │ ├── laravel.svg │ │ │ │ ├── lastfm-square.svg │ │ │ │ ├── lastfm.svg │ │ │ │ ├── leanpub.svg │ │ │ │ ├── less.svg │ │ │ │ ├── line.svg │ │ │ │ ├── linkedin-in.svg │ │ │ │ ├── linkedin.svg │ │ │ │ ├── linode.svg │ │ │ │ ├── linux.svg │ │ │ │ ├── lyft.svg │ │ │ │ ├── magento.svg │ │ │ │ ├── mailchimp.svg │ │ │ │ ├── mandalorian.svg │ │ │ │ ├── markdown.svg │ │ │ │ ├── mastodon.svg │ │ │ │ ├── maxcdn.svg │ │ │ │ ├── medapps.svg │ │ │ │ ├── medium-m.svg │ │ │ │ ├── medium.svg │ │ │ │ ├── medrt.svg │ │ │ │ ├── meetup.svg │ │ │ │ ├── megaport.svg │ │ │ │ ├── microsoft.svg │ │ │ │ ├── mix.svg │ │ │ │ ├── mixcloud.svg │ │ │ │ ├── mizuni.svg │ │ │ │ ├── modx.svg │ │ │ │ ├── monero.svg │ │ │ │ ├── napster.svg │ │ │ │ ├── neos.svg │ │ │ │ ├── nimblr.svg │ │ │ │ ├── nintendo-switch.svg │ │ │ │ ├── node-js.svg │ │ │ │ ├── node.svg │ │ │ │ ├── npm.svg │ │ │ │ ├── ns8.svg │ │ │ │ ├── nutritionix.svg │ │ │ │ ├── odnoklassniki-square.svg │ │ │ │ ├── odnoklassniki.svg │ │ │ │ ├── old-republic.svg │ │ │ │ ├── opencart.svg │ │ │ │ ├── openid.svg │ │ │ │ ├── opera.svg │ │ │ │ ├── optin-monster.svg │ │ │ │ ├── osi.svg │ │ │ │ ├── page4.svg │ │ │ │ ├── pagelines.svg │ │ │ │ ├── palfed.svg │ │ │ │ ├── patreon.svg │ │ │ │ ├── paypal.svg │ │ │ │ ├── periscope.svg │ │ │ │ ├── phabricator.svg │ │ │ │ ├── phoenix-framework.svg │ │ │ │ ├── phoenix-squadron.svg │ │ │ │ ├── php.svg │ │ │ │ ├── pied-piper-alt.svg │ │ │ │ ├── pied-piper-hat.svg │ │ │ │ ├── pied-piper-pp.svg │ │ │ │ ├── pied-piper.svg │ │ │ │ ├── pinterest-p.svg │ │ │ │ ├── pinterest-square.svg │ │ │ │ ├── pinterest.svg │ │ │ │ ├── playstation.svg │ │ │ │ ├── product-hunt.svg │ │ │ │ ├── pushed.svg │ │ │ │ ├── python.svg │ │ │ │ ├── qq.svg │ │ │ │ ├── quinscape.svg │ │ │ │ ├── quora.svg │ │ │ │ ├── r-project.svg │ │ │ │ ├── ravelry.svg │ │ │ │ ├── react.svg │ │ │ │ ├── readme.svg │ │ │ │ ├── rebel.svg │ │ │ │ ├── red-river.svg │ │ │ │ ├── reddit-alien.svg │ │ │ │ ├── reddit-square.svg │ │ │ │ ├── reddit.svg │ │ │ │ ├── rendact.svg │ │ │ │ ├── renren.svg │ │ │ │ ├── replyd.svg │ │ │ │ ├── researchgate.svg │ │ │ │ ├── resolving.svg │ │ │ │ ├── rev.svg │ │ │ │ ├── rocketchat.svg │ │ │ │ ├── rockrms.svg │ │ │ │ ├── safari.svg │ │ │ │ ├── sass.svg │ │ │ │ ├── schlix.svg │ │ │ │ ├── scribd.svg │ │ │ │ ├── searchengin.svg │ │ │ │ ├── sellcast.svg │ │ │ │ ├── sellsy.svg │ │ │ │ ├── servicestack.svg │ │ │ │ ├── shirtsinbulk.svg │ │ │ │ ├── shopware.svg │ │ │ │ ├── simplybuilt.svg │ │ │ │ ├── sistrix.svg │ │ │ │ ├── sith.svg │ │ │ │ ├── skyatlas.svg │ │ │ │ ├── skype.svg │ │ │ │ ├── slack-hash.svg │ │ │ │ ├── slack.svg │ │ │ │ ├── slideshare.svg │ │ │ │ ├── snapchat-ghost.svg │ │ │ │ ├── snapchat-square.svg │ │ │ │ ├── snapchat.svg │ │ │ │ ├── soundcloud.svg │ │ │ │ ├── speakap.svg │ │ │ │ ├── spotify.svg │ │ │ │ ├── squarespace.svg │ │ │ │ ├── stack-exchange.svg │ │ │ │ ├── stack-overflow.svg │ │ │ │ ├── staylinked.svg │ │ │ │ ├── steam-square.svg │ │ │ │ ├── steam-symbol.svg │ │ │ │ ├── steam.svg │ │ │ │ ├── sticker-mule.svg │ │ │ │ ├── strava.svg │ │ │ │ ├── stripe-s.svg │ │ │ │ ├── stripe.svg │ │ │ │ ├── studiovinari.svg │ │ │ │ ├── stumbleupon-circle.svg │ │ │ │ ├── stumbleupon.svg │ │ │ │ ├── superpowers.svg │ │ │ │ ├── supple.svg │ │ │ │ ├── teamspeak.svg │ │ │ │ ├── telegram-plane.svg │ │ │ │ ├── telegram.svg │ │ │ │ ├── tencent-weibo.svg │ │ │ │ ├── the-red-yeti.svg │ │ │ │ ├── themeco.svg │ │ │ │ ├── themeisle.svg │ │ │ │ ├── trade-federation.svg │ │ │ │ ├── trello.svg │ │ │ │ ├── tripadvisor.svg │ │ │ │ ├── tumblr-square.svg │ │ │ │ ├── tumblr.svg │ │ │ │ ├── twitch.svg │ │ │ │ ├── twitter-square.svg │ │ │ │ ├── twitter.svg │ │ │ │ ├── typo3.svg │ │ │ │ ├── uber.svg │ │ │ │ ├── uikit.svg │ │ │ │ ├── uniregistry.svg │ │ │ │ ├── untappd.svg │ │ │ │ ├── usb.svg │ │ │ │ ├── ussunnah.svg │ │ │ │ ├── vaadin.svg │ │ │ │ ├── viacoin.svg │ │ │ │ ├── viadeo-square.svg │ │ │ │ ├── viadeo.svg │ │ │ │ ├── viber.svg │ │ │ │ ├── vimeo-square.svg │ │ │ │ ├── vimeo-v.svg │ │ │ │ ├── vimeo.svg │ │ │ │ ├── vine.svg │ │ │ │ ├── vk.svg │ │ │ │ ├── vnv.svg │ │ │ │ ├── vuejs.svg │ │ │ │ ├── weebly.svg │ │ │ │ ├── weibo.svg │ │ │ │ ├── weixin.svg │ │ │ │ ├── whatsapp-square.svg │ │ │ │ ├── whatsapp.svg │ │ │ │ ├── whmcs.svg │ │ │ │ ├── wikipedia-w.svg │ │ │ │ ├── windows.svg │ │ │ │ ├── wix.svg │ │ │ │ ├── wolf-pack-battalion.svg │ │ │ │ ├── wordpress-simple.svg │ │ │ │ ├── wordpress.svg │ │ │ │ ├── wpbeginner.svg │ │ │ │ ├── wpexplorer.svg │ │ │ │ ├── wpforms.svg │ │ │ │ ├── xbox.svg │ │ │ │ ├── xing-square.svg │ │ │ │ ├── xing.svg │ │ │ │ ├── y-combinator.svg │ │ │ │ ├── yahoo.svg │ │ │ │ ├── yandex-international.svg │ │ │ │ ├── yandex.svg │ │ │ │ ├── yelp.svg │ │ │ │ ├── yoast.svg │ │ │ │ ├── youtube-square.svg │ │ │ │ ├── youtube.svg │ │ │ │ └── zhihu.svg │ │ │ ├── regular │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── building.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── keyboard.svg │ │ │ │ ├── kiss-beam.svg │ │ │ │ ├── kiss-wink-heart.svg │ │ │ │ ├── kiss.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── map.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── square.svg │ │ │ │ ├── star-half.svg │ │ │ │ ├── star.svg │ │ │ │ ├── sticky-note.svg │ │ │ │ ├── stop-circle.svg │ │ │ │ ├── sun.svg │ │ │ │ ├── surprise.svg │ │ │ │ ├── thumbs-down.svg │ │ │ │ ├── thumbs-up.svg │ │ │ │ ├── times-circle.svg │ │ │ │ ├── tired.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ └── window-restore.svg │ │ │ └── solid │ │ │ │ ├── ad.svg │ │ │ │ ├── address-book.svg │ │ │ │ ├── address-card.svg │ │ │ │ ├── adjust.svg │ │ │ │ ├── air-freshener.svg │ │ │ │ ├── align-center.svg │ │ │ │ ├── align-justify.svg │ │ │ │ ├── align-left.svg │ │ │ │ ├── align-right.svg │ │ │ │ ├── allergies.svg │ │ │ │ ├── ambulance.svg │ │ │ │ ├── american-sign-language-interpreting.svg │ │ │ │ ├── anchor.svg │ │ │ │ ├── angle-double-down.svg │ │ │ │ ├── angle-double-left.svg │ │ │ │ ├── angle-double-right.svg │ │ │ │ ├── angle-double-up.svg │ │ │ │ ├── angle-down.svg │ │ │ │ ├── angle-left.svg │ │ │ │ ├── angle-right.svg │ │ │ │ ├── angle-up.svg │ │ │ │ ├── angry.svg │ │ │ │ ├── ankh.svg │ │ │ │ ├── apple-alt.svg │ │ │ │ ├── archive.svg │ │ │ │ ├── archway.svg │ │ │ │ ├── arrow-alt-circle-down.svg │ │ │ │ ├── arrow-alt-circle-left.svg │ │ │ │ ├── arrow-alt-circle-right.svg │ │ │ │ ├── arrow-alt-circle-up.svg │ │ │ │ ├── arrow-circle-down.svg │ │ │ │ ├── arrow-circle-left.svg │ │ │ │ ├── arrow-circle-right.svg │ │ │ │ ├── arrow-circle-up.svg │ │ │ │ ├── arrow-down.svg │ │ │ │ ├── arrow-left.svg │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── arrow-up.svg │ │ │ │ ├── arrows-alt-h.svg │ │ │ │ ├── arrows-alt-v.svg │ │ │ │ ├── arrows-alt.svg │ │ │ │ ├── assistive-listening-systems.svg │ │ │ │ ├── asterisk.svg │ │ │ │ ├── at.svg │ │ │ │ ├── atlas.svg │ │ │ │ ├── atom.svg │ │ │ │ ├── audio-description.svg │ │ │ │ ├── award.svg │ │ │ │ ├── backspace.svg │ │ │ │ ├── backward.svg │ │ │ │ ├── balance-scale.svg │ │ │ │ ├── ban.svg │ │ │ │ ├── band-aid.svg │ │ │ │ ├── barcode.svg │ │ │ │ ├── bars.svg │ │ │ │ ├── baseball-ball.svg │ │ │ │ ├── basketball-ball.svg │ │ │ │ ├── bath.svg │ │ │ │ ├── battery-empty.svg │ │ │ │ ├── battery-full.svg │ │ │ │ ├── battery-half.svg │ │ │ │ ├── battery-quarter.svg │ │ │ │ ├── battery-three-quarters.svg │ │ │ │ ├── bed.svg │ │ │ │ ├── beer.svg │ │ │ │ ├── bell-slash.svg │ │ │ │ ├── bell.svg │ │ │ │ ├── bezier-curve.svg │ │ │ │ ├── bible.svg │ │ │ │ ├── bicycle.svg │ │ │ │ ├── binoculars.svg │ │ │ │ ├── birthday-cake.svg │ │ │ │ ├── blender.svg │ │ │ │ ├── blind.svg │ │ │ │ ├── bold.svg │ │ │ │ ├── bolt.svg │ │ │ │ ├── bomb.svg │ │ │ │ ├── bone.svg │ │ │ │ ├── bong.svg │ │ │ │ ├── book-open.svg │ │ │ │ ├── book-reader.svg │ │ │ │ ├── book.svg │ │ │ │ ├── bookmark.svg │ │ │ │ ├── bowling-ball.svg │ │ │ │ ├── box-open.svg │ │ │ │ ├── box.svg │ │ │ │ ├── boxes.svg │ │ │ │ ├── braille.svg │ │ │ │ ├── brain.svg │ │ │ │ ├── briefcase-medical.svg │ │ │ │ ├── briefcase.svg │ │ │ │ ├── broadcast-tower.svg │ │ │ │ ├── broom.svg │ │ │ │ ├── brush.svg │ │ │ │ ├── bug.svg │ │ │ │ ├── building.svg │ │ │ │ ├── bullhorn.svg │ │ │ │ ├── bullseye.svg │ │ │ │ ├── burn.svg │ │ │ │ ├── bus-alt.svg │ │ │ │ ├── bus.svg │ │ │ │ ├── business-time.svg │ │ │ │ ├── calculator.svg │ │ │ │ ├── calendar-alt.svg │ │ │ │ ├── calendar-check.svg │ │ │ │ ├── calendar-minus.svg │ │ │ │ ├── calendar-plus.svg │ │ │ │ ├── calendar-times.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── camera-retro.svg │ │ │ │ ├── camera.svg │ │ │ │ ├── cannabis.svg │ │ │ │ ├── capsules.svg │ │ │ │ ├── car-alt.svg │ │ │ │ ├── car-battery.svg │ │ │ │ ├── car-crash.svg │ │ │ │ ├── car-side.svg │ │ │ │ ├── car.svg │ │ │ │ ├── caret-down.svg │ │ │ │ ├── caret-left.svg │ │ │ │ ├── caret-right.svg │ │ │ │ ├── caret-square-down.svg │ │ │ │ ├── caret-square-left.svg │ │ │ │ ├── caret-square-right.svg │ │ │ │ ├── caret-square-up.svg │ │ │ │ ├── caret-up.svg │ │ │ │ ├── cart-arrow-down.svg │ │ │ │ ├── cart-plus.svg │ │ │ │ ├── certificate.svg │ │ │ │ ├── chalkboard-teacher.svg │ │ │ │ ├── chalkboard.svg │ │ │ │ ├── charging-station.svg │ │ │ │ ├── chart-area.svg │ │ │ │ ├── chart-bar.svg │ │ │ │ ├── chart-line.svg │ │ │ │ ├── chart-pie.svg │ │ │ │ ├── check-circle.svg │ │ │ │ ├── check-double.svg │ │ │ │ ├── check-square.svg │ │ │ │ ├── check.svg │ │ │ │ ├── chess-bishop.svg │ │ │ │ ├── chess-board.svg │ │ │ │ ├── chess-king.svg │ │ │ │ ├── chess-knight.svg │ │ │ │ ├── chess-pawn.svg │ │ │ │ ├── chess-queen.svg │ │ │ │ ├── chess-rook.svg │ │ │ │ ├── chess.svg │ │ │ │ ├── chevron-circle-down.svg │ │ │ │ ├── chevron-circle-left.svg │ │ │ │ ├── chevron-circle-right.svg │ │ │ │ ├── chevron-circle-up.svg │ │ │ │ ├── chevron-down.svg │ │ │ │ ├── chevron-left.svg │ │ │ │ ├── chevron-right.svg │ │ │ │ ├── chevron-up.svg │ │ │ │ ├── child.svg │ │ │ │ ├── church.svg │ │ │ │ ├── circle-notch.svg │ │ │ │ ├── circle.svg │ │ │ │ ├── city.svg │ │ │ │ ├── clipboard-check.svg │ │ │ │ ├── clipboard-list.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clock.svg │ │ │ │ ├── clone.svg │ │ │ │ ├── closed-captioning.svg │ │ │ │ ├── cloud-download-alt.svg │ │ │ │ ├── cloud-upload-alt.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cocktail.svg │ │ │ │ ├── code-branch.svg │ │ │ │ ├── code.svg │ │ │ │ ├── coffee.svg │ │ │ │ ├── cog.svg │ │ │ │ ├── cogs.svg │ │ │ │ ├── coins.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── comment-alt.svg │ │ │ │ ├── comment-dollar.svg │ │ │ │ ├── comment-dots.svg │ │ │ │ ├── comment-slash.svg │ │ │ │ ├── comment.svg │ │ │ │ ├── comments-dollar.svg │ │ │ │ ├── comments.svg │ │ │ │ ├── compact-disc.svg │ │ │ │ ├── compass.svg │ │ │ │ ├── compress.svg │ │ │ │ ├── concierge-bell.svg │ │ │ │ ├── cookie-bite.svg │ │ │ │ ├── cookie.svg │ │ │ │ ├── copy.svg │ │ │ │ ├── copyright.svg │ │ │ │ ├── couch.svg │ │ │ │ ├── credit-card.svg │ │ │ │ ├── crop-alt.svg │ │ │ │ ├── crop.svg │ │ │ │ ├── cross.svg │ │ │ │ ├── crosshairs.svg │ │ │ │ ├── crow.svg │ │ │ │ ├── crown.svg │ │ │ │ ├── cube.svg │ │ │ │ ├── cubes.svg │ │ │ │ ├── cut.svg │ │ │ │ ├── database.svg │ │ │ │ ├── deaf.svg │ │ │ │ ├── desktop.svg │ │ │ │ ├── dharmachakra.svg │ │ │ │ ├── diagnoses.svg │ │ │ │ ├── dice-five.svg │ │ │ │ ├── dice-four.svg │ │ │ │ ├── dice-one.svg │ │ │ │ ├── dice-six.svg │ │ │ │ ├── dice-three.svg │ │ │ │ ├── dice-two.svg │ │ │ │ ├── dice.svg │ │ │ │ ├── digital-tachograph.svg │ │ │ │ ├── directions.svg │ │ │ │ ├── divide.svg │ │ │ │ ├── dizzy.svg │ │ │ │ ├── dna.svg │ │ │ │ ├── dollar-sign.svg │ │ │ │ ├── dolly-flatbed.svg │ │ │ │ ├── dolly.svg │ │ │ │ ├── donate.svg │ │ │ │ ├── door-closed.svg │ │ │ │ ├── door-open.svg │ │ │ │ ├── dot-circle.svg │ │ │ │ ├── dove.svg │ │ │ │ ├── download.svg │ │ │ │ ├── drafting-compass.svg │ │ │ │ ├── draw-polygon.svg │ │ │ │ ├── drum-steelpan.svg │ │ │ │ ├── drum.svg │ │ │ │ ├── dumbbell.svg │ │ │ │ ├── edit.svg │ │ │ │ ├── eject.svg │ │ │ │ ├── ellipsis-h.svg │ │ │ │ ├── ellipsis-v.svg │ │ │ │ ├── envelope-open-text.svg │ │ │ │ ├── envelope-open.svg │ │ │ │ ├── envelope-square.svg │ │ │ │ ├── envelope.svg │ │ │ │ ├── equals.svg │ │ │ │ ├── eraser.svg │ │ │ │ ├── euro-sign.svg │ │ │ │ ├── exchange-alt.svg │ │ │ │ ├── exclamation-circle.svg │ │ │ │ ├── exclamation-triangle.svg │ │ │ │ ├── exclamation.svg │ │ │ │ ├── expand-arrows-alt.svg │ │ │ │ ├── expand.svg │ │ │ │ ├── external-link-alt.svg │ │ │ │ ├── external-link-square-alt.svg │ │ │ │ ├── eye-dropper.svg │ │ │ │ ├── eye-slash.svg │ │ │ │ ├── eye.svg │ │ │ │ ├── fast-backward.svg │ │ │ │ ├── fast-forward.svg │ │ │ │ ├── fax.svg │ │ │ │ ├── feather-alt.svg │ │ │ │ ├── feather.svg │ │ │ │ ├── female.svg │ │ │ │ ├── fighter-jet.svg │ │ │ │ ├── file-alt.svg │ │ │ │ ├── file-archive.svg │ │ │ │ ├── file-audio.svg │ │ │ │ ├── file-code.svg │ │ │ │ ├── file-contract.svg │ │ │ │ ├── file-download.svg │ │ │ │ ├── file-excel.svg │ │ │ │ ├── file-export.svg │ │ │ │ ├── file-image.svg │ │ │ │ ├── file-import.svg │ │ │ │ ├── file-invoice-dollar.svg │ │ │ │ ├── file-invoice.svg │ │ │ │ ├── file-medical-alt.svg │ │ │ │ ├── file-medical.svg │ │ │ │ ├── file-pdf.svg │ │ │ │ ├── file-powerpoint.svg │ │ │ │ ├── file-prescription.svg │ │ │ │ ├── file-signature.svg │ │ │ │ ├── file-upload.svg │ │ │ │ ├── file-video.svg │ │ │ │ ├── file-word.svg │ │ │ │ ├── file.svg │ │ │ │ ├── fill-drip.svg │ │ │ │ ├── fill.svg │ │ │ │ ├── film.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── fingerprint.svg │ │ │ │ ├── fire-extinguisher.svg │ │ │ │ ├── fire.svg │ │ │ │ ├── first-aid.svg │ │ │ │ ├── fish.svg │ │ │ │ ├── flag-checkered.svg │ │ │ │ ├── flag.svg │ │ │ │ ├── flask.svg │ │ │ │ ├── flushed.svg │ │ │ │ ├── folder-minus.svg │ │ │ │ ├── folder-open.svg │ │ │ │ ├── folder-plus.svg │ │ │ │ ├── folder.svg │ │ │ │ ├── font-awesome-logo-full.svg │ │ │ │ ├── font.svg │ │ │ │ ├── football-ball.svg │ │ │ │ ├── forward.svg │ │ │ │ ├── frog.svg │ │ │ │ ├── frown-open.svg │ │ │ │ ├── frown.svg │ │ │ │ ├── funnel-dollar.svg │ │ │ │ ├── futbol.svg │ │ │ │ ├── gamepad.svg │ │ │ │ ├── gas-pump.svg │ │ │ │ ├── gavel.svg │ │ │ │ ├── gem.svg │ │ │ │ ├── genderless.svg │ │ │ │ ├── gift.svg │ │ │ │ ├── glass-martini-alt.svg │ │ │ │ ├── glass-martini.svg │ │ │ │ ├── glasses.svg │ │ │ │ ├── globe-africa.svg │ │ │ │ ├── globe-americas.svg │ │ │ │ ├── globe-asia.svg │ │ │ │ ├── globe.svg │ │ │ │ ├── golf-ball.svg │ │ │ │ ├── gopuram.svg │ │ │ │ ├── graduation-cap.svg │ │ │ │ ├── greater-than-equal.svg │ │ │ │ ├── greater-than.svg │ │ │ │ ├── grimace.svg │ │ │ │ ├── grin-alt.svg │ │ │ │ ├── grin-beam-sweat.svg │ │ │ │ ├── grin-beam.svg │ │ │ │ ├── grin-hearts.svg │ │ │ │ ├── grin-squint-tears.svg │ │ │ │ ├── grin-squint.svg │ │ │ │ ├── grin-stars.svg │ │ │ │ ├── grin-tears.svg │ │ │ │ ├── grin-tongue-squint.svg │ │ │ │ ├── grin-tongue-wink.svg │ │ │ │ ├── grin-tongue.svg │ │ │ │ ├── grin-wink.svg │ │ │ │ ├── grin.svg │ │ │ │ ├── grip-horizontal.svg │ │ │ │ ├── grip-vertical.svg │ │ │ │ ├── h-square.svg │ │ │ │ ├── hamsa.svg │ │ │ │ ├── hand-holding-heart.svg │ │ │ │ ├── hand-holding-usd.svg │ │ │ │ ├── hand-holding.svg │ │ │ │ ├── hand-lizard.svg │ │ │ │ ├── hand-paper.svg │ │ │ │ ├── hand-peace.svg │ │ │ │ ├── hand-point-down.svg │ │ │ │ ├── hand-point-left.svg │ │ │ │ ├── hand-point-right.svg │ │ │ │ ├── hand-point-up.svg │ │ │ │ ├── hand-pointer.svg │ │ │ │ ├── hand-rock.svg │ │ │ │ ├── hand-scissors.svg │ │ │ │ ├── hand-spock.svg │ │ │ │ ├── hands-helping.svg │ │ │ │ ├── hands.svg │ │ │ │ ├── handshake.svg │ │ │ │ ├── hashtag.svg │ │ │ │ ├── haykal.svg │ │ │ │ ├── hdd.svg │ │ │ │ ├── heading.svg │ │ │ │ ├── headphones-alt.svg │ │ │ │ ├── headphones.svg │ │ │ │ ├── headset.svg │ │ │ │ ├── heart.svg │ │ │ │ ├── heartbeat.svg │ │ │ │ ├── helicopter.svg │ │ │ │ ├── highlighter.svg │ │ │ │ ├── history.svg │ │ │ │ ├── hockey-puck.svg │ │ │ │ ├── home.svg │ │ │ │ ├── hospital-alt.svg │ │ │ │ ├── hospital-symbol.svg │ │ │ │ ├── hospital.svg │ │ │ │ ├── hot-tub.svg │ │ │ │ ├── hotel.svg │ │ │ │ ├── hourglass-end.svg │ │ │ │ ├── hourglass-half.svg │ │ │ │ ├── hourglass-start.svg │ │ │ │ ├── hourglass.svg │ │ │ │ ├── i-cursor.svg │ │ │ │ ├── id-badge.svg │ │ │ │ ├── id-card-alt.svg │ │ │ │ ├── id-card.svg │ │ │ │ ├── image.svg │ │ │ │ ├── images.svg │ │ │ │ ├── inbox.svg │ │ │ │ ├── indent.svg │ │ │ │ ├── industry.svg │ │ │ │ ├── infinity.svg │ │ │ │ ├── info-circle.svg │ │ │ │ ├── info.svg │ │ │ │ ├── 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.svg │ │ │ │ ├── laugh-beam.svg │ │ │ │ ├── laugh-squint.svg │ │ │ │ ├── laugh-wink.svg │ │ │ │ ├── laugh.svg │ │ │ │ ├── layer-group.svg │ │ │ │ ├── leaf.svg │ │ │ │ ├── lemon.svg │ │ │ │ ├── less-than-equal.svg │ │ │ │ ├── less-than.svg │ │ │ │ ├── level-down-alt.svg │ │ │ │ ├── level-up-alt.svg │ │ │ │ ├── life-ring.svg │ │ │ │ ├── lightbulb.svg │ │ │ │ ├── link.svg │ │ │ │ ├── lira-sign.svg │ │ │ │ ├── list-alt.svg │ │ │ │ ├── list-ol.svg │ │ │ │ ├── list-ul.svg │ │ │ │ ├── list.svg │ │ │ │ ├── location-arrow.svg │ │ │ │ ├── lock-open.svg │ │ │ │ ├── lock.svg │ │ │ │ ├── long-arrow-alt-down.svg │ │ │ │ ├── long-arrow-alt-left.svg │ │ │ │ ├── long-arrow-alt-right.svg │ │ │ │ ├── long-arrow-alt-up.svg │ │ │ │ ├── low-vision.svg │ │ │ │ ├── luggage-cart.svg │ │ │ │ ├── magic.svg │ │ │ │ ├── magnet.svg │ │ │ │ ├── mail-bulk.svg │ │ │ │ ├── male.svg │ │ │ │ ├── map-marked-alt.svg │ │ │ │ ├── map-marked.svg │ │ │ │ ├── map-marker-alt.svg │ │ │ │ ├── map-marker.svg │ │ │ │ ├── map-pin.svg │ │ │ │ ├── map-signs.svg │ │ │ │ ├── map.svg │ │ │ │ ├── marker.svg │ │ │ │ ├── mars-double.svg │ │ │ │ ├── mars-stroke-h.svg │ │ │ │ ├── mars-stroke-v.svg │ │ │ │ ├── mars-stroke.svg │ │ │ │ ├── mars.svg │ │ │ │ ├── medal.svg │ │ │ │ ├── medkit.svg │ │ │ │ ├── meh-blank.svg │ │ │ │ ├── meh-rolling-eyes.svg │ │ │ │ ├── meh.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── menorah.svg │ │ │ │ ├── mercury.svg │ │ │ │ ├── microchip.svg │ │ │ │ ├── microphone-alt-slash.svg │ │ │ │ ├── microphone-alt.svg │ │ │ │ ├── microphone-slash.svg │ │ │ │ ├── microphone.svg │ │ │ │ ├── microscope.svg │ │ │ │ ├── minus-circle.svg │ │ │ │ ├── minus-square.svg │ │ │ │ ├── minus.svg │ │ │ │ ├── mobile-alt.svg │ │ │ │ ├── mobile.svg │ │ │ │ ├── money-bill-alt.svg │ │ │ │ ├── money-bill-wave-alt.svg │ │ │ │ ├── money-bill-wave.svg │ │ │ │ ├── money-bill.svg │ │ │ │ ├── money-check-alt.svg │ │ │ │ ├── money-check.svg │ │ │ │ ├── monument.svg │ │ │ │ ├── moon.svg │ │ │ │ ├── mortar-pestle.svg │ │ │ │ ├── mosque.svg │ │ │ │ ├── motorcycle.svg │ │ │ │ ├── mouse-pointer.svg │ │ │ │ ├── music.svg │ │ │ │ ├── neuter.svg │ │ │ │ ├── newspaper.svg │ │ │ │ ├── not-equal.svg │ │ │ │ ├── notes-medical.svg │ │ │ │ ├── object-group.svg │ │ │ │ ├── object-ungroup.svg │ │ │ │ ├── oil-can.svg │ │ │ │ ├── om.svg │ │ │ │ ├── outdent.svg │ │ │ │ ├── paint-brush.svg │ │ │ │ ├── paint-roller.svg │ │ │ │ ├── palette.svg │ │ │ │ ├── pallet.svg │ │ │ │ ├── paper-plane.svg │ │ │ │ ├── paperclip.svg │ │ │ │ ├── parachute-box.svg │ │ │ │ ├── paragraph.svg │ │ │ │ ├── parking.svg │ │ │ │ ├── passport.svg │ │ │ │ ├── pastafarianism.svg │ │ │ │ ├── paste.svg │ │ │ │ ├── pause-circle.svg │ │ │ │ ├── pause.svg │ │ │ │ ├── paw.svg │ │ │ │ ├── peace.svg │ │ │ │ ├── pen-alt.svg │ │ │ │ ├── pen-fancy.svg │ │ │ │ ├── pen-nib.svg │ │ │ │ ├── pen-square.svg │ │ │ │ ├── pen.svg │ │ │ │ ├── pencil-alt.svg │ │ │ │ ├── pencil-ruler.svg │ │ │ │ ├── people-carry.svg │ │ │ │ ├── percent.svg │ │ │ │ ├── percentage.svg │ │ │ │ ├── phone-slash.svg │ │ │ │ ├── phone-square.svg │ │ │ │ ├── phone-volume.svg │ │ │ │ ├── phone.svg │ │ │ │ ├── piggy-bank.svg │ │ │ │ ├── pills.svg │ │ │ │ ├── place-of-worship.svg │ │ │ │ ├── plane-arrival.svg │ │ │ │ ├── plane-departure.svg │ │ │ │ ├── plane.svg │ │ │ │ ├── play-circle.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plug.svg │ │ │ │ ├── plus-circle.svg │ │ │ │ ├── plus-square.svg │ │ │ │ ├── plus.svg │ │ │ │ ├── podcast.svg │ │ │ │ ├── poll-h.svg │ │ │ │ ├── poll.svg │ │ │ │ ├── poo.svg │ │ │ │ ├── poop.svg │ │ │ │ ├── portrait.svg │ │ │ │ ├── pound-sign.svg │ │ │ │ ├── power-off.svg │ │ │ │ ├── pray.svg │ │ │ │ ├── praying-hands.svg │ │ │ │ ├── prescription-bottle-alt.svg │ │ │ │ ├── prescription-bottle.svg │ │ │ │ ├── prescription.svg │ │ │ │ ├── print.svg │ │ │ │ ├── procedures.svg │ │ │ │ ├── project-diagram.svg │ │ │ │ ├── puzzle-piece.svg │ │ │ │ ├── qrcode.svg │ │ │ │ ├── question-circle.svg │ │ │ │ ├── question.svg │ │ │ │ ├── quidditch.svg │ │ │ │ ├── quote-left.svg │ │ │ │ ├── quote-right.svg │ │ │ │ ├── quran.svg │ │ │ │ ├── random.svg │ │ │ │ ├── receipt.svg │ │ │ │ ├── recycle.svg │ │ │ │ ├── redo-alt.svg │ │ │ │ ├── redo.svg │ │ │ │ ├── registered.svg │ │ │ │ ├── reply-all.svg │ │ │ │ ├── reply.svg │ │ │ │ ├── retweet.svg │ │ │ │ ├── ribbon.svg │ │ │ │ ├── road.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── rocket.svg │ │ │ │ ├── route.svg │ │ │ │ ├── rss-square.svg │ │ │ │ ├── rss.svg │ │ │ │ ├── ruble-sign.svg │ │ │ │ ├── ruler-combined.svg │ │ │ │ ├── ruler-horizontal.svg │ │ │ │ ├── ruler-vertical.svg │ │ │ │ ├── ruler.svg │ │ │ │ ├── rupee-sign.svg │ │ │ │ ├── sad-cry.svg │ │ │ │ ├── sad-tear.svg │ │ │ │ ├── save.svg │ │ │ │ ├── school.svg │ │ │ │ ├── screwdriver.svg │ │ │ │ ├── search-dollar.svg │ │ │ │ ├── search-location.svg │ │ │ │ ├── search-minus.svg │ │ │ │ ├── search-plus.svg │ │ │ │ ├── search.svg │ │ │ │ ├── seedling.svg │ │ │ │ ├── server.svg │ │ │ │ ├── shapes.svg │ │ │ │ ├── share-alt-square.svg │ │ │ │ ├── share-alt.svg │ │ │ │ ├── share-square.svg │ │ │ │ ├── share.svg │ │ │ │ ├── shekel-sign.svg │ │ │ │ ├── shield-alt.svg │ │ │ │ ├── ship.svg │ │ │ │ ├── shipping-fast.svg │ │ │ │ ├── shoe-prints.svg │ │ │ │ ├── shopping-bag.svg │ │ │ │ ├── shopping-basket.svg │ │ │ │ ├── shopping-cart.svg │ │ │ │ ├── shower.svg │ │ │ │ ├── shuttle-van.svg │ │ │ │ ├── sign-in-alt.svg │ │ │ │ ├── sign-language.svg │ │ │ │ ├── sign-out-alt.svg │ │ │ │ ├── sign.svg │ │ │ │ ├── signal.svg │ │ │ │ ├── signature.svg │ │ │ │ ├── sitemap.svg │ │ │ │ ├── skull.svg │ │ │ │ ├── sliders-h.svg │ │ │ │ ├── smile-beam.svg │ │ │ │ ├── smile-wink.svg │ │ │ │ ├── smile.svg │ │ │ │ ├── smoking-ban.svg │ │ │ │ ├── smoking.svg │ │ │ │ ├── snowflake.svg │ │ │ │ ├── socks.svg │ │ │ │ ├── solar-panel.svg │ │ │ │ ├── sort-alpha-down.svg │ │ │ │ ├── sort-alpha-up.svg │ │ │ │ ├── sort-amount-down.svg │ │ │ │ ├── sort-amount-up.svg │ │ │ │ ├── sort-down.svg │ │ │ │ ├── sort-numeric-down.svg │ │ │ │ ├── sort-numeric-up.svg │ │ │ │ ├── sort-up.svg │ │ │ │ ├── sort.svg │ │ │ │ ├── spa.svg │ │ │ │ ├── space-shuttle.svg │ │ │ │ ├── spinner.svg │ │ │ │ ├── splotch.svg │ │ │ │ ├── spray-can.svg │ │ │ │ ├── square-full.svg │ │ │ │ ├── square-root-alt.svg │ │ │ │ ├── square.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 │ │ │ │ ├── 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 │ │ │ │ ├── toolbox.svg │ │ │ │ ├── tooth.svg │ │ │ │ ├── torah.svg │ │ │ │ ├── torii-gate.svg │ │ │ │ ├── trademark.svg │ │ │ │ ├── traffic-light.svg │ │ │ │ ├── train.svg │ │ │ │ ├── transgender-alt.svg │ │ │ │ ├── transgender.svg │ │ │ │ ├── trash-alt.svg │ │ │ │ ├── trash.svg │ │ │ │ ├── tree.svg │ │ │ │ ├── trophy.svg │ │ │ │ ├── truck-loading.svg │ │ │ │ ├── truck-monster.svg │ │ │ │ ├── truck-moving.svg │ │ │ │ ├── truck-pickup.svg │ │ │ │ ├── truck.svg │ │ │ │ ├── tshirt.svg │ │ │ │ ├── tty.svg │ │ │ │ ├── tv.svg │ │ │ │ ├── umbrella-beach.svg │ │ │ │ ├── umbrella.svg │ │ │ │ ├── underline.svg │ │ │ │ ├── undo-alt.svg │ │ │ │ ├── undo.svg │ │ │ │ ├── universal-access.svg │ │ │ │ ├── university.svg │ │ │ │ ├── unlink.svg │ │ │ │ ├── unlock-alt.svg │ │ │ │ ├── unlock.svg │ │ │ │ ├── upload.svg │ │ │ │ ├── user-alt-slash.svg │ │ │ │ ├── user-alt.svg │ │ │ │ ├── user-astronaut.svg │ │ │ │ ├── user-check.svg │ │ │ │ ├── user-circle.svg │ │ │ │ ├── user-clock.svg │ │ │ │ ├── user-cog.svg │ │ │ │ ├── user-edit.svg │ │ │ │ ├── user-friends.svg │ │ │ │ ├── user-graduate.svg │ │ │ │ ├── user-lock.svg │ │ │ │ ├── user-md.svg │ │ │ │ ├── user-minus.svg │ │ │ │ ├── user-ninja.svg │ │ │ │ ├── user-plus.svg │ │ │ │ ├── user-secret.svg │ │ │ │ ├── user-shield.svg │ │ │ │ ├── user-slash.svg │ │ │ │ ├── user-tag.svg │ │ │ │ ├── user-tie.svg │ │ │ │ ├── user-times.svg │ │ │ │ ├── user.svg │ │ │ │ ├── users-cog.svg │ │ │ │ ├── users.svg │ │ │ │ ├── utensil-spoon.svg │ │ │ │ ├── utensils.svg │ │ │ │ ├── vector-square.svg │ │ │ │ ├── venus-double.svg │ │ │ │ ├── venus-mars.svg │ │ │ │ ├── venus.svg │ │ │ │ ├── vial.svg │ │ │ │ ├── vials.svg │ │ │ │ ├── video-slash.svg │ │ │ │ ├── video.svg │ │ │ │ ├── vihara.svg │ │ │ │ ├── volleyball-ball.svg │ │ │ │ ├── volume-down.svg │ │ │ │ ├── volume-off.svg │ │ │ │ ├── volume-up.svg │ │ │ │ ├── walking.svg │ │ │ │ ├── wallet.svg │ │ │ │ ├── warehouse.svg │ │ │ │ ├── weight-hanging.svg │ │ │ │ ├── weight.svg │ │ │ │ ├── wheelchair.svg │ │ │ │ ├── wifi.svg │ │ │ │ ├── window-close.svg │ │ │ │ ├── window-maximize.svg │ │ │ │ ├── window-minimize.svg │ │ │ │ ├── window-restore.svg │ │ │ │ ├── wine-glass-alt.svg │ │ │ │ ├── wine-glass.svg │ │ │ │ ├── won-sign.svg │ │ │ │ ├── wrench.svg │ │ │ │ ├── x-ray.svg │ │ │ │ ├── yen-sign.svg │ │ │ │ └── yin-yang.svg │ │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── anchor-js │ │ ├── anchor.min.js │ │ └── banner.js │ │ ├── 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.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 │ │ └── 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.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 │ │ ├── headroom.js │ │ └── dist │ │ │ ├── angular.headroom.min.js │ │ │ ├── headroom.min.js │ │ │ └── jQuery.headroom.min.js │ │ ├── holderjs │ │ ├── holder.min.js │ │ └── package.js │ │ ├── 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 │ │ ├── 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-actionscript.min.js │ │ ├── prism-ada.min.js │ │ ├── prism-apacheconf.min.js │ │ ├── prism-apl.min.js │ │ ├── prism-applescript.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-bison.min.js │ │ ├── prism-brainfuck.min.js │ │ ├── prism-bro.min.js │ │ ├── prism-c.min.js │ │ ├── prism-clike.min.js │ │ ├── prism-clojure.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-docker.min.js │ │ ├── prism-eiffel.min.js │ │ ├── prism-elixir.min.js │ │ ├── prism-elm.min.js │ │ ├── prism-erb.min.js │ │ ├── prism-erlang.min.js │ │ ├── prism-flow.min.js │ │ ├── prism-fortran.min.js │ │ ├── prism-fsharp.min.js │ │ ├── prism-gedcom.min.js │ │ ├── prism-gherkin.min.js │ │ ├── prism-git.min.js │ │ ├── prism-glsl.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-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-javascript.min.js │ │ ├── prism-jolie.min.js │ │ ├── prism-json.min.js │ │ ├── prism-jsx.min.js │ │ ├── prism-julia.min.js │ │ ├── prism-keyman.min.js │ │ ├── prism-kotlin.min.js │ │ ├── prism-latex.min.js │ │ ├── prism-less.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-n4js.min.js │ │ ├── prism-nasm.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-perl.min.js │ │ ├── prism-php-extras.min.js │ │ ├── prism-php.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-qore.min.js │ │ ├── prism-r.min.js │ │ ├── prism-reason.min.js │ │ ├── prism-renpy.min.js │ │ ├── prism-rest.min.js │ │ ├── prism-rip.min.js │ │ ├── prism-roboconf.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-smalltalk.min.js │ │ ├── prism-smarty.min.js │ │ ├── prism-soy.min.js │ │ ├── prism-sql.min.js │ │ ├── prism-stylus.min.js │ │ ├── prism-swift.min.js │ │ ├── prism-tap.min.js │ │ ├── prism-tcl.min.js │ │ ├── prism-textile.min.js │ │ ├── prism-tsx.min.js │ │ ├── prism-tt2.min.js │ │ ├── prism-twig.min.js │ │ ├── prism-typescript.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 │ │ ├── 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 │ │ ├── file-highlight │ │ │ └── prism-file-highlight.min.js │ │ ├── highlight-keywords │ │ │ └── prism-highlight-keywords.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 │ │ ├── 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 ├── assets │ ├── 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 │ ├── 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 │ ├── 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 │ ├── scss │ │ ├── argon.scss │ │ ├── bootstrap │ │ │ ├── _alert.scss │ │ │ ├── _badge.scss │ │ │ ├── _breadcrumb.scss │ │ │ ├── _button-group.scss │ │ │ ├── _buttons.scss │ │ │ ├── _card.scss │ │ │ ├── _carousel.scss │ │ │ ├── _close.scss │ │ │ ├── _code.scss │ │ │ ├── _custom-forms.scss │ │ │ ├── _dropdown.scss │ │ │ ├── _forms.scss │ │ │ ├── _functions.scss │ │ │ ├── _grid.scss │ │ │ ├── _images.scss │ │ │ ├── _input-group.scss │ │ │ ├── _jumbotron.scss │ │ │ ├── _list-group.scss │ │ │ ├── _media.scss │ │ │ ├── _mixins.scss │ │ │ ├── _modal.scss │ │ │ ├── _nav.scss │ │ │ ├── _navbar.scss │ │ │ ├── _pagination.scss │ │ │ ├── _popover.scss │ │ │ ├── _print.scss │ │ │ ├── _progress.scss │ │ │ ├── _reboot.scss │ │ │ ├── _root.scss │ │ │ ├── _spinners.scss │ │ │ ├── _tables.scss │ │ │ ├── _toasts.scss │ │ │ ├── _tooltip.scss │ │ │ ├── _transitions.scss │ │ │ ├── _type.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ ├── bootstrap-grid.scss │ │ │ ├── bootstrap-reboot.scss │ │ │ ├── bootstrap.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _border-radius.scss │ │ │ │ ├── _box-shadow.scss │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _caret.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _deprecate.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _gradients.scss │ │ │ │ ├── _grid-framework.scss │ │ │ │ ├── _grid.scss │ │ │ │ ├── _hover.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _lists.scss │ │ │ │ ├── _nav-divider.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _reset-text.scss │ │ │ │ ├── _resize.scss │ │ │ │ ├── _screen-reader.scss │ │ │ │ ├── _size.scss │ │ │ │ ├── _table-row.scss │ │ │ │ ├── _text-emphasis.scss │ │ │ │ ├── _text-hide.scss │ │ │ │ ├── _text-truncate.scss │ │ │ │ ├── _transition.scss │ │ │ │ └── _visibility.scss │ │ │ ├── utilities │ │ │ │ ├── _align.scss │ │ │ │ ├── _background.scss │ │ │ │ ├── _borders.scss │ │ │ │ ├── _clearfix.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _embed.scss │ │ │ │ ├── _flex.scss │ │ │ │ ├── _float.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _screenreaders.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _stretched-link.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _visibility.scss │ │ │ └── vendor │ │ │ │ └── _rfs.scss │ │ ├── core │ │ │ ├── alerts │ │ │ │ ├── _alert-dismissible.scss │ │ │ │ ├── _alert-notify.scss │ │ │ │ └── _alert.scss │ │ │ ├── avatars │ │ │ │ ├── _avatar-group.scss │ │ │ │ └── _avatar.scss │ │ │ ├── badges │ │ │ │ ├── _badge-circle.scss │ │ │ │ ├── _badge-dot.scss │ │ │ │ ├── _badge-floating.scss │ │ │ │ └── _badge.scss │ │ │ ├── breadcrumbs │ │ │ │ └── _breadcrumb.scss │ │ │ ├── buttons │ │ │ │ ├── _button-brand.scss │ │ │ │ ├── _button-group.scss │ │ │ │ ├── _button-icon.scss │ │ │ │ └── _button.scss │ │ │ ├── cards │ │ │ │ ├── _card-animations.scss │ │ │ │ ├── _card-blockquote.scss │ │ │ │ ├── _card-money.scss │ │ │ │ ├── _card-pricing.scss │ │ │ │ ├── _card-profile.scss │ │ │ │ ├── _card-stats.scss │ │ │ │ └── _card.scss │ │ │ ├── charts │ │ │ │ └── _chart.scss │ │ │ ├── close │ │ │ │ └── _close.scss │ │ │ ├── collapse │ │ │ │ └── _accordion.scss │ │ │ ├── content │ │ │ │ └── _main-content.scss │ │ │ ├── custom-forms │ │ │ │ ├── _custom-checkbox.scss │ │ │ │ ├── _custom-control.scss │ │ │ │ ├── _custom-form.scss │ │ │ │ ├── _custom-radio.scss │ │ │ │ └── _custom-toggle.scss │ │ │ ├── dropdowns │ │ │ │ └── _dropdown.scss │ │ │ ├── footers │ │ │ │ └── _footer.scss │ │ │ ├── forms │ │ │ │ ├── _form-extend.scss │ │ │ │ ├── _form-validation.scss │ │ │ │ ├── _form.scss │ │ │ │ └── _input-group.scss │ │ │ ├── free │ │ │ │ ├── _grid.scss │ │ │ │ ├── alerts │ │ │ │ │ ├── _alert-dismissible.scss │ │ │ │ │ └── _alert.scss │ │ │ │ ├── avatars │ │ │ │ │ ├── _avatar-group.scss │ │ │ │ │ └── _avatar.scss │ │ │ │ ├── badges │ │ │ │ │ ├── _badge-circle.scss │ │ │ │ │ ├── _badge-dot.scss │ │ │ │ │ └── _badge.scss │ │ │ │ ├── breadcrumbs │ │ │ │ │ └── _breadcrumb.scss │ │ │ │ ├── buttons │ │ │ │ │ ├── _button-brand.scss │ │ │ │ │ ├── _button-icon.scss │ │ │ │ │ └── _button.scss │ │ │ │ ├── cards │ │ │ │ │ ├── _card-animations.scss │ │ │ │ │ ├── _card-blockquote.scss │ │ │ │ │ ├── _card-profile.scss │ │ │ │ │ ├── _card-stats.scss │ │ │ │ │ └── _card.scss │ │ │ │ ├── charts │ │ │ │ │ └── _chart.scss │ │ │ │ ├── close │ │ │ │ │ └── _close.scss │ │ │ │ ├── collapse │ │ │ │ │ └── _accordion.scss │ │ │ │ ├── content │ │ │ │ │ └── _main-content.scss │ │ │ │ ├── custom-forms │ │ │ │ │ ├── _custom-checkbox.scss │ │ │ │ │ ├── _custom-control.scss │ │ │ │ │ ├── _custom-form.scss │ │ │ │ │ ├── _custom-radio.scss │ │ │ │ │ └── _custom-toggle.scss │ │ │ │ ├── dropdowns │ │ │ │ │ └── _dropdown.scss │ │ │ │ ├── footers │ │ │ │ │ └── _footer.scss │ │ │ │ ├── forms │ │ │ │ │ ├── _form-validation.scss │ │ │ │ │ ├── _form.scss │ │ │ │ │ └── _input-group.scss │ │ │ │ ├── grid │ │ │ │ │ └── _grid.scss │ │ │ │ ├── headers │ │ │ │ │ └── _header.scss │ │ │ │ ├── icons │ │ │ │ │ ├── _icon-shape.scss │ │ │ │ │ └── _icon.scss │ │ │ │ ├── list-groups │ │ │ │ │ └── _list-group.scss │ │ │ │ ├── maps │ │ │ │ │ └── _map.scss │ │ │ │ ├── masks │ │ │ │ │ └── _mask.scss │ │ │ │ ├── mixins │ │ │ │ │ ├── _alert.scss │ │ │ │ │ ├── _background-variant.scss │ │ │ │ │ ├── _badge.scss │ │ │ │ │ ├── _buttons.scss │ │ │ │ │ ├── _custom-forms.scss │ │ │ │ │ ├── _forms.scss │ │ │ │ │ ├── _icon.scss │ │ │ │ │ ├── _modals.scss │ │ │ │ │ └── _popover.scss │ │ │ │ ├── modals │ │ │ │ │ └── _modal.scss │ │ │ │ ├── navbars │ │ │ │ │ ├── _navbar-collapse.scss │ │ │ │ │ ├── _navbar-dropdown.scss │ │ │ │ │ ├── _navbar-search.scss │ │ │ │ │ ├── _navbar-top.scss │ │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ │ └── _navbar.scss │ │ │ │ ├── navs │ │ │ │ │ ├── _nav-pills.scss │ │ │ │ │ └── _nav.scss │ │ │ │ ├── paginations │ │ │ │ │ └── _pagination.scss │ │ │ │ ├── popovers │ │ │ │ │ └── _popover.scss │ │ │ │ ├── progresses │ │ │ │ │ └── _progress.scss │ │ │ │ ├── reboot │ │ │ │ │ └── _reboot.scss │ │ │ │ ├── sections │ │ │ │ │ └── _nucleo-icons.scss │ │ │ │ ├── separators │ │ │ │ │ └── _separator.scss │ │ │ │ ├── tables │ │ │ │ │ └── _table.scss │ │ │ │ ├── type │ │ │ │ │ ├── _article.scss │ │ │ │ │ ├── _display.scss │ │ │ │ │ ├── _heading.scss │ │ │ │ │ └── _type.scss │ │ │ │ ├── utilities │ │ │ │ │ ├── _backgrounds.scss │ │ │ │ │ ├── _blurable.scss │ │ │ │ │ ├── _floating.scss │ │ │ │ │ ├── _helper.scss │ │ │ │ │ ├── _image.scss │ │ │ │ │ ├── _opacity.scss │ │ │ │ │ ├── _overflow.scss │ │ │ │ │ ├── _position.scss │ │ │ │ │ ├── _shadows.scss │ │ │ │ │ ├── _sizing.scss │ │ │ │ │ ├── _spacing.scss │ │ │ │ │ ├── _text.scss │ │ │ │ │ └── _transform.scss │ │ │ │ └── vendors │ │ │ │ │ ├── _bootstrap-datepicker.scss │ │ │ │ │ ├── _chartjs.scss │ │ │ │ │ ├── _headroom.scss │ │ │ │ │ ├── _lavalamp.scss │ │ │ │ │ ├── _nouislider.scss │ │ │ │ │ ├── _scrollbar.scss │ │ │ │ │ └── _select2.scss │ │ │ ├── grid │ │ │ │ └── _grid.scss │ │ │ ├── headers │ │ │ │ └── _header.scss │ │ │ ├── icons │ │ │ │ ├── _icon-actions.scss │ │ │ │ ├── _icon-shape.scss │ │ │ │ └── _icon.scss │ │ │ ├── list-groups │ │ │ │ ├── _list-check.scss │ │ │ │ └── _list-group.scss │ │ │ ├── maps │ │ │ │ └── _map.scss │ │ │ ├── masks │ │ │ │ └── _mask.scss │ │ │ ├── medias │ │ │ │ ├── _media-comment.scss │ │ │ │ └── _media.scss │ │ │ ├── mixins │ │ │ │ ├── _alert.scss │ │ │ │ ├── _background-variant.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _custom-forms.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _modals.scss │ │ │ │ └── _popover.scss │ │ │ ├── modals │ │ │ │ └── _modal.scss │ │ │ ├── navbars │ │ │ │ ├── _navbar-collapse.scss │ │ │ │ ├── _navbar-dropdown.scss │ │ │ │ ├── _navbar-floating.scss │ │ │ │ ├── _navbar-search.scss │ │ │ │ ├── _navbar-top.scss │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ └── _navbar.scss │ │ │ ├── navs │ │ │ │ ├── _nav-pills.scss │ │ │ │ └── _nav.scss │ │ │ ├── paginations │ │ │ │ └── _pagination.scss │ │ │ ├── popovers │ │ │ │ └── _popover.scss │ │ │ ├── progresses │ │ │ │ └── _progress.scss │ │ │ ├── reboot │ │ │ │ └── _reboot.scss │ │ │ ├── rtl │ │ │ │ └── _rtl.scss │ │ │ ├── sections │ │ │ │ └── _nucleo-icons.scss │ │ │ ├── separators │ │ │ │ └── _separator.scss │ │ │ ├── shortcuts │ │ │ │ └── _shortcut.scss │ │ │ ├── tables │ │ │ │ ├── _table-actions.scss │ │ │ │ ├── _table-sortable.scss │ │ │ │ └── _table.scss │ │ │ ├── timeline │ │ │ │ └── _timeline.scss │ │ │ ├── type │ │ │ │ ├── _article.scss │ │ │ │ ├── _display.scss │ │ │ │ ├── _heading.scss │ │ │ │ └── _type.scss │ │ │ ├── utilities │ │ │ │ ├── _backgrounds.scss │ │ │ │ ├── _blurable.scss │ │ │ │ ├── _floating.scss │ │ │ │ ├── _helper.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _opacity.scss │ │ │ │ ├── _overflow.scss │ │ │ │ ├── _position.scss │ │ │ │ ├── _shadows.scss │ │ │ │ ├── _sizing.scss │ │ │ │ ├── _spacing.scss │ │ │ │ ├── _text.scss │ │ │ │ └── _transform.scss │ │ │ └── vendors │ │ │ │ ├── _bootstrap-datepicker.scss │ │ │ │ ├── _bootstrap-tagsinput.scss │ │ │ │ ├── _chartjs.scss │ │ │ │ ├── _datatables.scss │ │ │ │ ├── _dropzone.scss │ │ │ │ ├── _fullcalendar.scss │ │ │ │ ├── _headroom.scss │ │ │ │ ├── _jvectormap.scss │ │ │ │ ├── _lavalamp.scss │ │ │ │ ├── _nouislider.scss │ │ │ │ ├── _plugin-datetimepicker.scss │ │ │ │ ├── _quill.scss │ │ │ │ ├── _scrollbar.scss │ │ │ │ ├── _select2.scss │ │ │ │ └── _sweet-alert-2.scss │ │ └── custom │ │ │ ├── _components.scss │ │ │ ├── _functions.scss │ │ │ ├── _mixins.scss │ │ │ ├── _utilities.scss │ │ │ ├── _variables.scss │ │ │ └── _vendors.scss │ └── 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 ├── css │ └── app.css ├── favicon.ico ├── index.php ├── js │ └── app.js ├── mix-manifest.json ├── robots.txt └── web.config ├── resources ├── css │ └── app.css ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ └── ExampleComponent.vue ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── admin │ ├── accounts.blade.php │ ├── dashboard.blade.php │ ├── headers │ │ └── headercard.blade.php │ ├── modals │ │ ├── account.blade.php │ │ ├── barangayevacuation.blade.php │ │ └── typhoon.blade.php │ ├── navbar │ │ └── navbar.blade.php │ ├── profile │ │ └── edit.blade.php │ ├── resources.blade.php │ ├── sidebar │ │ └── sidebar.blade.php │ ├── tables │ │ ├── activeEvacueesTable.blade.php │ │ └── getbarangaytable.blade.php │ └── typhoon.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── confirm.blade.php │ │ ├── email.blade.php │ │ └── reset.blade.php │ ├── register.blade.php │ └── verify.blade.php │ ├── layouts │ ├── 404.blade.php │ ├── footer.blade.php │ ├── headers │ │ ├── cards.blade.php │ │ └── guest.blade.php │ ├── master.blade.php │ ├── navbars │ │ ├── navbar.blade.php │ │ ├── navs │ │ │ ├── auth.blade.php │ │ │ └── guest.blade.php │ │ └── sidebar.blade.php │ └── pagination.blade.php │ ├── pages │ ├── icons.blade.php │ ├── maps.blade.php │ ├── tables.blade.php │ └── upgrade.blade.php │ ├── profile │ └── edit.blade.php │ ├── users │ └── partials │ │ └── header.blade.php │ └── volunteer │ ├── constituents.blade.php │ ├── dashboard.blade.php │ ├── familymember.blade.php │ ├── headers │ └── headercard.blade.php │ ├── modals │ ├── constituents.blade.php │ ├── evacuees.blade.php │ └── indiedit.blade.php │ ├── navbar │ └── navbar.blade.php │ ├── profile │ └── edit.blade.php │ ├── sidebar │ └── sidebar.blade.php │ └── tables │ ├── evacueeshead.blade.php │ ├── evacueesindividual.blade.php │ ├── familyhead.blade.php │ └── individual.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── debugbar │ └── .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 └── web.php └── webpack.mix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env-example.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.env-example.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.styleci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.styleci.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/LICENSE -------------------------------------------------------------------------------- /New Text Document.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/README.md -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/AccountController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Admin/AccountController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Admin/DashboardController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Admin/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Admin/TyphoonController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Admin/TyphoonController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /app/Http/Controllers/Volunteer/EvacueesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Volunteer/EvacueesController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Volunteer/ProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Controllers/Volunteer/ProfileController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/Role.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/UserActivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/UserActivity.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/PasswordRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Requests/PasswordRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/ProfileRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Requests/ProfileRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Http/Requests/UserRequest.php -------------------------------------------------------------------------------- /app/Models/Admin/Barangay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/Admin/Barangay.php -------------------------------------------------------------------------------- /app/Models/Admin/Evacuation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/Admin/Evacuation.php -------------------------------------------------------------------------------- /app/Models/Admin/Typhoon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/Admin/Typhoon.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/Models/Volunteer/Constituents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/Volunteer/Constituents.php -------------------------------------------------------------------------------- /app/Models/Volunteer/Evacuees.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Models/Volunteer/Evacuees.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Rules/CurrentPasswordCheckRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/app/Rules/CurrentPasswordCheckRule.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/composer.lock -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/cors.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/database.php -------------------------------------------------------------------------------- /config/datatables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/datatables.php -------------------------------------------------------------------------------- /config/debugbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/debugbar.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/larapex-charts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/larapex-charts.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/session.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeders/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/database/seeders/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/argon/css/argon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/css/argon.css -------------------------------------------------------------------------------- /public/argon/css/argon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/css/argon.min.css -------------------------------------------------------------------------------- /public/argon/fonts/nucleo/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/fonts/nucleo/nucleo-icons.eot -------------------------------------------------------------------------------- /public/argon/fonts/nucleo/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/fonts/nucleo/nucleo-icons.svg -------------------------------------------------------------------------------- /public/argon/fonts/nucleo/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/fonts/nucleo/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/argon/fonts/nucleo/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/fonts/nucleo/nucleo-icons.woff -------------------------------------------------------------------------------- /public/argon/fonts/nucleo/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/fonts/nucleo/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/argon/img/brand/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/brand/blue.png -------------------------------------------------------------------------------- /public/argon/img/brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/brand/favicon.png -------------------------------------------------------------------------------- /public/argon/img/brand/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/brand/white.png -------------------------------------------------------------------------------- /public/argon/img/icons/common/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/icons/common/github.svg -------------------------------------------------------------------------------- /public/argon/img/icons/common/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/icons/common/google.svg -------------------------------------------------------------------------------- /public/argon/img/theme/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/angular.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/bootstrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/bootstrap.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/profile-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/profile-cover.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/react.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/sketch.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/team-1-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/team-1-800x800.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/team-2-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/team-2-800x800.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/team-3-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/team-3-800x800.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/team-4-800x800.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/team-4-800x800.jpg -------------------------------------------------------------------------------- /public/argon/img/theme/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/theme/vue.jpg -------------------------------------------------------------------------------- /public/argon/img/undraw_warning_cyit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/img/undraw_warning_cyit.svg -------------------------------------------------------------------------------- /public/argon/js/argon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/js/argon.js -------------------------------------------------------------------------------- /public/argon/js/argon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/js/argon.min.js -------------------------------------------------------------------------------- /public/argon/vendor/anchor-js/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/anchor-js/anchor.min.js -------------------------------------------------------------------------------- /public/argon/vendor/anchor-js/banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/anchor-js/banner.js -------------------------------------------------------------------------------- /public/argon/vendor/chart.js/dist/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/chart.js/dist/Chart.bundle.min.js -------------------------------------------------------------------------------- /public/argon/vendor/chart.js/dist/Chart.extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/chart.js/dist/Chart.extension.js -------------------------------------------------------------------------------- /public/argon/vendor/chart.js/dist/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/chart.js/dist/Chart.min.js -------------------------------------------------------------------------------- /public/argon/vendor/clipboard/dist/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/clipboard/dist/clipboard.min.js -------------------------------------------------------------------------------- /public/argon/vendor/datatables.net-select/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/datatables.net-select/License.txt -------------------------------------------------------------------------------- /public/argon/vendor/datatables.net/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/datatables.net/License.txt -------------------------------------------------------------------------------- /public/argon/vendor/headroom.js/dist/headroom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/headroom.js/dist/headroom.min.js -------------------------------------------------------------------------------- /public/argon/vendor/holderjs/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/holderjs/holder.min.js -------------------------------------------------------------------------------- /public/argon/vendor/holderjs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/holderjs/package.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery.scrollbar/index.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/license-gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery.scrollbar/license-gpl.txt -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/license-mit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery.scrollbar/license-mit.txt -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/meteor/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery.scrollbar/meteor/tests.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery.scrollbar/package.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery.scrollbar/sass/config.rb: -------------------------------------------------------------------------------- 1 | require 'compass/import-once/activate' 2 | line_comments = false 3 | -------------------------------------------------------------------------------- /public/argon/vendor/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery/dist/core.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /public/argon/vendor/jquery/dist/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/jquery/dist/jquery.slim.min.js -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/css/nucleo-svg.css -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/css/nucleo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/css/nucleo.css -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /public/argon/vendor/nucleo/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/nucleo/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/argon/vendor/onscreen/dist/on-screen.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/onscreen/dist/on-screen.es6.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components.json -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/index.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/prism-c.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/prism-c.min.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/prism-d.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/prism-d.min.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/prism-j.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/prism-j.min.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/prism-q.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/prism-q.min.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/components/prism-r.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/components/prism-r.min.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/plugins/autolinker/prism-autolinker.css: -------------------------------------------------------------------------------- 1 | .token a { 2 | color: inherit; 3 | } -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/plugins/wpd/prism-wpd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/plugins/wpd/prism-wpd.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/prism.js -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-coy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-coy.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-dark.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-funky.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-funky.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-okaidia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-okaidia.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-tomorrow.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism-twilight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism-twilight.css -------------------------------------------------------------------------------- /public/argon/vendor/prismjs/themes/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/argon/vendor/prismjs/themes/prism.css -------------------------------------------------------------------------------- /public/assets/css/argon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/argon.css -------------------------------------------------------------------------------- /public/assets/css/argon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/argon.min.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap-grid.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap-grid.min.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap-reboot.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap.css -------------------------------------------------------------------------------- /public/assets/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /public/assets/fonts/nucleo/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/fonts/nucleo/nucleo-icons.eot -------------------------------------------------------------------------------- /public/assets/fonts/nucleo/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/fonts/nucleo/nucleo-icons.svg -------------------------------------------------------------------------------- /public/assets/fonts/nucleo/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/fonts/nucleo/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/assets/fonts/nucleo/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/fonts/nucleo/nucleo-icons.woff -------------------------------------------------------------------------------- /public/assets/fonts/nucleo/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/fonts/nucleo/nucleo-icons.woff2 -------------------------------------------------------------------------------- /public/assets/img/brand/blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/brand/blue.png -------------------------------------------------------------------------------- /public/assets/img/brand/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/brand/favicon.png -------------------------------------------------------------------------------- /public/assets/img/brand/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/brand/white.png -------------------------------------------------------------------------------- /public/assets/img/icons/common/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/icons/common/github.svg -------------------------------------------------------------------------------- /public/assets/img/icons/common/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/icons/common/google.svg -------------------------------------------------------------------------------- /public/assets/img/theme/angular.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/angular.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/bootstrap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/bootstrap.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/img-1-1000x600.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/img-1-1000x600.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/profile-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/profile-cover.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/react.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/react.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/sketch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/sketch.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/team-1.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/team-2.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/team-3.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/team-4.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/team-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/team-5.jpg -------------------------------------------------------------------------------- /public/assets/img/theme/vue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/img/theme/vue.jpg -------------------------------------------------------------------------------- /public/assets/js/argon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/argon.js -------------------------------------------------------------------------------- /public/assets/js/argon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/argon.min.js -------------------------------------------------------------------------------- /public/assets/js/components/charts/chart-bars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/charts/chart-bars.js -------------------------------------------------------------------------------- /public/assets/js/components/charts/chart-bars.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/charts/chart-bars.min.js -------------------------------------------------------------------------------- /public/assets/js/components/charts/chart-line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/charts/chart-line.js -------------------------------------------------------------------------------- /public/assets/js/components/charts/chart-line.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/charts/chart-line.min.js -------------------------------------------------------------------------------- /public/assets/js/components/custom/form-control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/custom/form-control.js -------------------------------------------------------------------------------- /public/assets/js/components/init/chart-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/chart-init.js -------------------------------------------------------------------------------- /public/assets/js/components/init/chart-init.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/chart-init.min.js -------------------------------------------------------------------------------- /public/assets/js/components/init/copy-icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/copy-icon.js -------------------------------------------------------------------------------- /public/assets/js/components/init/copy-icon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/copy-icon.min.js -------------------------------------------------------------------------------- /public/assets/js/components/init/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/navbar.js -------------------------------------------------------------------------------- /public/assets/js/components/init/navbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/navbar.min.js -------------------------------------------------------------------------------- /public/assets/js/components/init/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/popover.js -------------------------------------------------------------------------------- /public/assets/js/components/init/popover.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/popover.min.js -------------------------------------------------------------------------------- /public/assets/js/components/init/scroll-to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/scroll-to.js -------------------------------------------------------------------------------- /public/assets/js/components/init/scroll-to.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/scroll-to.min.js -------------------------------------------------------------------------------- /public/assets/js/components/init/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/tooltip.js -------------------------------------------------------------------------------- /public/assets/js/components/init/tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/init/tooltip.min.js -------------------------------------------------------------------------------- /public/assets/js/components/maps/maps-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/maps/maps-default.js -------------------------------------------------------------------------------- /public/assets/js/components/maps/maps-default.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/maps/maps-default.min.js -------------------------------------------------------------------------------- /public/assets/js/components/vendor/nouislider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/vendor/nouislider.js -------------------------------------------------------------------------------- /public/assets/js/components/vendor/nouislider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/vendor/nouislider.min.js -------------------------------------------------------------------------------- /public/assets/js/components/vendor/scrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/vendor/scrollbar.js -------------------------------------------------------------------------------- /public/assets/js/components/vendor/scrollbar.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/js/components/vendor/scrollbar.min.js -------------------------------------------------------------------------------- /public/assets/scss/argon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/argon.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_card.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_close.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_code.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_custom-forms.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_functions.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_images.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_input-group.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_jumbotron.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_jumbotron.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_media.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_media.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_modal.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_print.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_progress.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_root.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_tables.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_type.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_float.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_hover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_hover.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_nav-divider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_nav-divider.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_size.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_table-row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_table-row.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_text-hide.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_text-hide.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/mixins/_visibility.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/mixins/_visibility.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_align.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_align.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_borders.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_clearfix.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_display.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_embed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_embed.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_flex.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_float.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_float.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_overflow.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_position.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_shadows.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_sizing.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_spacing.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/utilities/_text.scss -------------------------------------------------------------------------------- /public/assets/scss/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /public/assets/scss/core/alerts/_alert-notify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/alerts/_alert-notify.scss -------------------------------------------------------------------------------- /public/assets/scss/core/alerts/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/alerts/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/core/avatars/_avatar-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/avatars/_avatar-group.scss -------------------------------------------------------------------------------- /public/assets/scss/core/avatars/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/avatars/_avatar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/badges/_badge-circle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/badges/_badge-circle.scss -------------------------------------------------------------------------------- /public/assets/scss/core/badges/_badge-dot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/badges/_badge-dot.scss -------------------------------------------------------------------------------- /public/assets/scss/core/badges/_badge-floating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/badges/_badge-floating.scss -------------------------------------------------------------------------------- /public/assets/scss/core/badges/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/badges/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/core/breadcrumbs/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/breadcrumbs/_breadcrumb.scss -------------------------------------------------------------------------------- /public/assets/scss/core/buttons/_button-brand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/buttons/_button-brand.scss -------------------------------------------------------------------------------- /public/assets/scss/core/buttons/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/buttons/_button-group.scss -------------------------------------------------------------------------------- /public/assets/scss/core/buttons/_button-icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/buttons/_button-icon.scss -------------------------------------------------------------------------------- /public/assets/scss/core/buttons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/buttons/_button.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-animations.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-blockquote.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-blockquote.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-money.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-money.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-pricing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-pricing.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-profile.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card-stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card-stats.scss -------------------------------------------------------------------------------- /public/assets/scss/core/cards/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/cards/_card.scss -------------------------------------------------------------------------------- /public/assets/scss/core/charts/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/charts/_chart.scss -------------------------------------------------------------------------------- /public/assets/scss/core/close/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/close/_close.scss -------------------------------------------------------------------------------- /public/assets/scss/core/collapse/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/collapse/_accordion.scss -------------------------------------------------------------------------------- /public/assets/scss/core/content/_main-content.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/content/_main-content.scss -------------------------------------------------------------------------------- /public/assets/scss/core/dropdowns/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/dropdowns/_dropdown.scss -------------------------------------------------------------------------------- /public/assets/scss/core/footers/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/footers/_footer.scss -------------------------------------------------------------------------------- /public/assets/scss/core/forms/_form-extend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/forms/_form-extend.scss -------------------------------------------------------------------------------- /public/assets/scss/core/forms/_form-validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/forms/_form-validation.scss -------------------------------------------------------------------------------- /public/assets/scss/core/forms/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/forms/_form.scss -------------------------------------------------------------------------------- /public/assets/scss/core/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/forms/_input-group.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/alerts/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/alerts/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/avatars/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/avatars/_avatar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/badges/_badge-dot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/badges/_badge-dot.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/badges/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/badges/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/buttons/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/buttons/_button.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/cards/_card-profile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/cards/_card-profile.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/cards/_card-stats.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/cards/_card-stats.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/cards/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/cards/_card.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/charts/_chart.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/charts/_chart.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/close/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/close/_close.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/collapse/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/collapse/_accordion.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/dropdowns/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/dropdowns/_dropdown.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/footers/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/footers/_footer.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/forms/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/forms/_form.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/forms/_input-group.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/grid/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/grid/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/headers/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/headers/_header.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/icons/_icon-shape.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/icons/_icon-shape.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/icons/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/icons/_icon.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/maps/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/maps/_map.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/masks/_mask.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/masks/_mask.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_icon.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_modals.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/mixins/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/mixins/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/modals/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/modals/_modal.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/navbars/_navbar-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/navbars/_navbar-top.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/navbars/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/navbars/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/navs/_nav-pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/navs/_nav-pills.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/navs/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/navs/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/popovers/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/popovers/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/reboot/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/reboot/_reboot.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/tables/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/tables/_table.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/type/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/type/_article.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/type/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/type/_display.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/type/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/type/_heading.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/type/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/type/_type.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/utilities/_blurable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/utilities/_blurable.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/utilities/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/utilities/_image.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/utilities/_text.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/vendors/_chartjs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/vendors/_chartjs.scss -------------------------------------------------------------------------------- /public/assets/scss/core/free/vendors/_select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/free/vendors/_select2.scss -------------------------------------------------------------------------------- /public/assets/scss/core/grid/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/grid/_grid.scss -------------------------------------------------------------------------------- /public/assets/scss/core/headers/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/headers/_header.scss -------------------------------------------------------------------------------- /public/assets/scss/core/icons/_icon-actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/icons/_icon-actions.scss -------------------------------------------------------------------------------- /public/assets/scss/core/icons/_icon-shape.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/icons/_icon-shape.scss -------------------------------------------------------------------------------- /public/assets/scss/core/icons/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/icons/_icon.scss -------------------------------------------------------------------------------- /public/assets/scss/core/maps/_map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/maps/_map.scss -------------------------------------------------------------------------------- /public/assets/scss/core/masks/_mask.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/masks/_mask.scss -------------------------------------------------------------------------------- /public/assets/scss/core/medias/_media-comment.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/medias/_media-comment.scss -------------------------------------------------------------------------------- /public/assets/scss/core/medias/_media.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Media 3 | // 4 | -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_alert.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_badge.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_buttons.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_custom-forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_custom-forms.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_forms.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_icon.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_modals.scss -------------------------------------------------------------------------------- /public/assets/scss/core/mixins/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/mixins/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/core/modals/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/modals/_modal.scss -------------------------------------------------------------------------------- /public/assets/scss/core/navbars/_navbar-top.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/navbars/_navbar-top.scss -------------------------------------------------------------------------------- /public/assets/scss/core/navbars/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/navbars/_navbar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/navs/_nav-pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/navs/_nav-pills.scss -------------------------------------------------------------------------------- /public/assets/scss/core/navs/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/navs/_nav.scss -------------------------------------------------------------------------------- /public/assets/scss/core/popovers/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/popovers/_popover.scss -------------------------------------------------------------------------------- /public/assets/scss/core/progresses/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/progresses/_progress.scss -------------------------------------------------------------------------------- /public/assets/scss/core/reboot/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/reboot/_reboot.scss -------------------------------------------------------------------------------- /public/assets/scss/core/rtl/_rtl.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/rtl/_rtl.scss -------------------------------------------------------------------------------- /public/assets/scss/core/separators/_separator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/separators/_separator.scss -------------------------------------------------------------------------------- /public/assets/scss/core/shortcuts/_shortcut.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/shortcuts/_shortcut.scss -------------------------------------------------------------------------------- /public/assets/scss/core/tables/_table-actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/tables/_table-actions.scss -------------------------------------------------------------------------------- /public/assets/scss/core/tables/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/tables/_table.scss -------------------------------------------------------------------------------- /public/assets/scss/core/timeline/_timeline.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/timeline/_timeline.scss -------------------------------------------------------------------------------- /public/assets/scss/core/type/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/type/_article.scss -------------------------------------------------------------------------------- /public/assets/scss/core/type/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/type/_display.scss -------------------------------------------------------------------------------- /public/assets/scss/core/type/_heading.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/type/_heading.scss -------------------------------------------------------------------------------- /public/assets/scss/core/type/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/type/_type.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_blurable.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_blurable.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_floating.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_floating.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_helper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_helper.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_image.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_opacity.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_opacity.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_overflow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_overflow.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_position.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_shadows.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_sizing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_sizing.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_spacing.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_text.scss -------------------------------------------------------------------------------- /public/assets/scss/core/utilities/_transform.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/utilities/_transform.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_chartjs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_chartjs.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_datatables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_datatables.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_dropzone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_dropzone.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_fullcalendar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_fullcalendar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_headroom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_headroom.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_jvectormap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_jvectormap.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_lavalamp.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_lavalamp.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_nouislider.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_nouislider.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_quill.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_quill.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_scrollbar.scss -------------------------------------------------------------------------------- /public/assets/scss/core/vendors/_select2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/core/vendors/_select2.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_components.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_functions.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_mixins.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_utilities.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_variables.scss -------------------------------------------------------------------------------- /public/assets/scss/custom/_vendors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/scss/custom/_vendors.scss -------------------------------------------------------------------------------- /public/assets/vendor/anchor-js/anchor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/anchor-js/anchor.min.js -------------------------------------------------------------------------------- /public/assets/vendor/animate.css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/animate.css/animate.min.css -------------------------------------------------------------------------------- /public/assets/vendor/animate.css/source/_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/animate.css/source/_base.css -------------------------------------------------------------------------------- /public/assets/vendor/animate.css/source/_vars.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/animate.css/source/_vars.css -------------------------------------------------------------------------------- /public/assets/vendor/bootstrap-datetimepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/bootstrap-datetimepicker.js -------------------------------------------------------------------------------- /public/assets/vendor/chart.js/dist/Chart.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/chart.js/dist/Chart.min.css -------------------------------------------------------------------------------- /public/assets/vendor/chart.js/dist/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/chart.js/dist/Chart.min.js -------------------------------------------------------------------------------- /public/assets/vendor/datatables.net/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/datatables.net/License.txt -------------------------------------------------------------------------------- /public/assets/vendor/dropzone/dist/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/dropzone/dist/basic.css -------------------------------------------------------------------------------- /public/assets/vendor/dropzone/dist/dropzone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/dropzone/dist/dropzone.css -------------------------------------------------------------------------------- /public/assets/vendor/dropzone/dist/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/dropzone/dist/dropzone.js -------------------------------------------------------------------------------- /public/assets/vendor/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/font-awesome/HELP-US-OUT.txt -------------------------------------------------------------------------------- /public/assets/vendor/fullcalendar/dist/gcal.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/fullcalendar/dist/gcal.min.js -------------------------------------------------------------------------------- /public/assets/vendor/gulp-copy/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/gulp-copy'); 4 | -------------------------------------------------------------------------------- /public/assets/vendor/gulp-copy/lib/gulp-copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/gulp-copy/lib/gulp-copy.js -------------------------------------------------------------------------------- /public/assets/vendor/gulp-copy/node_modules/gulp/bin/gulp.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('gulp-cli')(); 4 | -------------------------------------------------------------------------------- /public/assets/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/assets/vendor/holderjs/holder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/holderjs/holder.min.js -------------------------------------------------------------------------------- /public/assets/vendor/holderjs/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/holderjs/package.js -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/CONTRIBUTING.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/CONTRIBUTING.markdown -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/Gemfile -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/History.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/History.markdown -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/README.markdown -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/Rakefile -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/benchmark/flat-map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/benchmark/flat-map -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/benchmark/hash-fetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/benchmark/hash-fetch -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/bin/jekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/bin/jekyll -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/features/data.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/features/data.feature -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/jekyll.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/jekyll.gemspec -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/cleaner.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/cleaner.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/command.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/command.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/document.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/document.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/draft.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/draft.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/errors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/errors.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/excerpt.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/excerpt.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/external.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/external.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/filters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/filters.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/layout.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/mime.types -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/page.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/plugin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/plugin.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/post.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/post.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/renderer.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/site.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/url.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/url.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/lib/jekyll/utils.rb -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/lib/jekyll/version.rb: -------------------------------------------------------------------------------- 1 | module Jekyll 2 | VERSION = '3.0.0-beta1' 3 | end 4 | -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/bootstrap: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | script/branding 4 | bundle install -j8 5 | -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/branding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/branding -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/cibuild -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/console -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/cucumber: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/cucumber -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/proof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/proof -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/rebund: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/rebund -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/stackprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/stackprof -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/script/test -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/CNAME: -------------------------------------------------------------------------------- 1 | jekyllrb.com 2 | -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/favicon.ico -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/feed.xml -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/freenode.txt: -------------------------------------------------------------------------------- 1 | aS3gAc4g 2 | -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/img/logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/img/logo-2x.png -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/img/logo-rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/img/logo-rss.png -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/index.html -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/js/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/js/respond.min.js -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/latest_version.txt: -------------------------------------------------------------------------------- 1 | 2.5.3 -------------------------------------------------------------------------------- /public/assets/vendor/jekyll/site/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jekyll/site/news/index.html -------------------------------------------------------------------------------- /public/assets/vendor/jquery.scrollbar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jquery.scrollbar/index.js -------------------------------------------------------------------------------- /public/assets/vendor/jquery.scrollbar/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jquery.scrollbar/package.js -------------------------------------------------------------------------------- /public/assets/vendor/jquery.scrollbar/sass/config.rb: -------------------------------------------------------------------------------- 1 | require 'compass/import-once/activate' 2 | line_comments = false 3 | -------------------------------------------------------------------------------- /public/assets/vendor/jquery/dist/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jquery/dist/core.js -------------------------------------------------------------------------------- /public/assets/vendor/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /public/assets/vendor/js-cookie/js.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/js-cookie/js.cookie.js -------------------------------------------------------------------------------- /public/assets/vendor/jvectormap-next/LICENSE-AGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/jvectormap-next/LICENSE-AGPL -------------------------------------------------------------------------------- /public/assets/vendor/lavalamp/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/lavalamp/demo.html -------------------------------------------------------------------------------- /public/assets/vendor/lavalamp/images/103332256.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/lavalamp/images/103332256.jpg -------------------------------------------------------------------------------- /public/assets/vendor/lavalamp/images/104209996.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/lavalamp/images/104209996.jpg -------------------------------------------------------------------------------- /public/assets/vendor/lavalamp/images/146672189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/lavalamp/images/146672189.jpg -------------------------------------------------------------------------------- /public/assets/vendor/lavalamp/lavalamp.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/lavalamp/lavalamp.jquery.json -------------------------------------------------------------------------------- /public/assets/vendor/list.js/dist/list.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/list.js/dist/list.min.js -------------------------------------------------------------------------------- /public/assets/vendor/minimatch/minimatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/minimatch/minimatch.js -------------------------------------------------------------------------------- /public/assets/vendor/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment.min.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/ender.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/af.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ar.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/az.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/be.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/bg.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/bm.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/bn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/bo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/br.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/bs.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ca.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/cs.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/cv.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/cy.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/da.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/de-at.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/de-ch.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/de.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/dv.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/el.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-SG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-SG.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-au.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-ca.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-gb.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-ie.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-il.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/en-nz.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/eo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/es-do.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/es-us.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/es.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/et.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/eu.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fa.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fi.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fr.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/fy.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ga.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/gd.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/gl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/gom-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/gom-latn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/gu.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/he.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/hi.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/hr.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/hu.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/hy-am.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/id.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/is.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/it-ch.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/it.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ja.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/jv.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ka.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/kk.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/km.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/kn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ko.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ku.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ky.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/lb.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/lo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/lt.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/lv.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/me.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/mi.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/mk.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ml.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/mn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/mr.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ms-my.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ms.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/mt.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/my.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/nb.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ne.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/nl-be.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/nl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/nn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/pa-in.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/pl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/pt-br.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/pt.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ro.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ru.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sd.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/se.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/si.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sk.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sq.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sr-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sr-cyrl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sr.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ss.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sv.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/sw.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ta.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/te.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tet.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tg.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/th.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tlh.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tr.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tzl.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tzm-latn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/tzm.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/uk.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/ur.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/uz-latn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/uz.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/vi.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/x-pseudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/x-pseudo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/yo.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/min/locales.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/min/locales.min.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/min/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/min/moment.min.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/moment.js -------------------------------------------------------------------------------- /public/assets/vendor/moment/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/moment/package.js -------------------------------------------------------------------------------- /public/assets/vendor/nucleo/css/nucleo-svg.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/nucleo/css/nucleo-svg.css -------------------------------------------------------------------------------- /public/assets/vendor/nucleo/css/nucleo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/nucleo/css/nucleo.css -------------------------------------------------------------------------------- /public/assets/vendor/nucleo/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/nucleo/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /public/assets/vendor/nucleo/fonts/nucleo-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/nucleo/fonts/nucleo-icons.svg -------------------------------------------------------------------------------- /public/assets/vendor/nucleo/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/nucleo/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/components.js -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/components.json -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/components/index.js -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/dependencies.js -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/plugins/autolinker/prism-autolinker.css: -------------------------------------------------------------------------------- 1 | .token a { 2 | color: inherit; 3 | } -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/prism.js -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/themes/prism-coy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/themes/prism-coy.css -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/themes/prism-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/themes/prism-dark.css -------------------------------------------------------------------------------- /public/assets/vendor/prismjs/themes/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/prismjs/themes/prism.css -------------------------------------------------------------------------------- /public/assets/vendor/quill/dist/quill.bubble.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/quill/dist/quill.bubble.css -------------------------------------------------------------------------------- /public/assets/vendor/quill/dist/quill.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/quill/dist/quill.core.css -------------------------------------------------------------------------------- /public/assets/vendor/quill/dist/quill.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/quill/dist/quill.core.js -------------------------------------------------------------------------------- /public/assets/vendor/quill/dist/quill.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/quill/dist/quill.min.js -------------------------------------------------------------------------------- /public/assets/vendor/quill/dist/quill.snow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/quill/dist/quill.snow.css -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/af.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ar.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/az.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/bg.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/bn.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/bs.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ca.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/cs.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/da.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/de.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/dsb.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/el.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/en.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/es.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/et.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/eu.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/fa.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/fi.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/fr.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/gl.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/he.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/hi.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/hr.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/hsb.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/hu.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/hy.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/id.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/is.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/it.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ja.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ka.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/km.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ko.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/lt.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/lv.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/mk.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ms.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/nb.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ne.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/nl.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/pl.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ps.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/pt.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ro.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/ru.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/sk.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/sl.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/sq.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/sr.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/sv.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/th.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/tk.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/tr.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/uk.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/vi.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /public/assets/vendor/select2/dist/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/select2/dist/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /public/assets/vendor/sudo/lib/sudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/assets/vendor/sudo/lib/sudo.js -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/public/web.config -------------------------------------------------------------------------------- /resources/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/css/app.css -------------------------------------------------------------------------------- /resources/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/js/app.js -------------------------------------------------------------------------------- /resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/js/bootstrap.js -------------------------------------------------------------------------------- /resources/js/components/ExampleComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/js/components/ExampleComponent.vue -------------------------------------------------------------------------------- /resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/lang/en/auth.php -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/lang/en/validation.php -------------------------------------------------------------------------------- /resources/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/sass/_variables.scss -------------------------------------------------------------------------------- /resources/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/sass/app.scss -------------------------------------------------------------------------------- /resources/views/admin/accounts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/accounts.blade.php -------------------------------------------------------------------------------- /resources/views/admin/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/headers/headercard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/headers/headercard.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/account.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/modals/account.blade.php -------------------------------------------------------------------------------- /resources/views/admin/modals/typhoon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/modals/typhoon.blade.php -------------------------------------------------------------------------------- /resources/views/admin/navbar/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/navbar/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/admin/resources.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/resources.blade.php -------------------------------------------------------------------------------- /resources/views/admin/sidebar/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/sidebar/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/admin/typhoon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/admin/typhoon.blade.php -------------------------------------------------------------------------------- /resources/views/auth/login.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/login.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/confirm.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/passwords/confirm.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/email.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/passwords/email.blade.php -------------------------------------------------------------------------------- /resources/views/auth/passwords/reset.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/passwords/reset.blade.php -------------------------------------------------------------------------------- /resources/views/auth/register.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/register.blade.php -------------------------------------------------------------------------------- /resources/views/auth/verify.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/auth/verify.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/404.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/404.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/footer.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/footer.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/headers/cards.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/headers/cards.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/headers/guest.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/headers/guest.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/master.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navbars/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/navbars/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/navbars/sidebar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/navbars/sidebar.blade.php -------------------------------------------------------------------------------- /resources/views/layouts/pagination.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/layouts/pagination.blade.php -------------------------------------------------------------------------------- /resources/views/pages/icons.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/pages/icons.blade.php -------------------------------------------------------------------------------- /resources/views/pages/maps.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/pages/maps.blade.php -------------------------------------------------------------------------------- /resources/views/pages/tables.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/pages/tables.blade.php -------------------------------------------------------------------------------- /resources/views/pages/upgrade.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/pages/upgrade.blade.php -------------------------------------------------------------------------------- /resources/views/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/profile/edit.blade.php -------------------------------------------------------------------------------- /resources/views/users/partials/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/users/partials/header.blade.php -------------------------------------------------------------------------------- /resources/views/volunteer/constituents.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/volunteer/constituents.blade.php -------------------------------------------------------------------------------- /resources/views/volunteer/dashboard.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/volunteer/dashboard.blade.php -------------------------------------------------------------------------------- /resources/views/volunteer/familymember.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/volunteer/familymember.blade.php -------------------------------------------------------------------------------- /resources/views/volunteer/navbar/navbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/volunteer/navbar/navbar.blade.php -------------------------------------------------------------------------------- /resources/views/volunteer/profile/edit.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/resources/views/volunteer/profile/edit.blade.php -------------------------------------------------------------------------------- /routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/routes/api.php -------------------------------------------------------------------------------- /routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/routes/channels.php -------------------------------------------------------------------------------- /routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/routes/console.php -------------------------------------------------------------------------------- /routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/routes/web.php -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/server.php -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/debugbar/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/storage/framework/.gitignore -------------------------------------------------------------------------------- /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/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/tests/CreatesApplication.php -------------------------------------------------------------------------------- /tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /tests/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/tests/web.php -------------------------------------------------------------------------------- /webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joserodny/evacuationcenter/HEAD/webpack.mix.js --------------------------------------------------------------------------------