├── .gitattributes ├── .vs └── TechTreeMVCWebApplication │ ├── DesignTimeBuild │ └── .dtbcache.v2 │ └── v16 │ └── .suo ├── README.md ├── TechTreeMVCWebApplication.sln └── TechTreeMVCWebApplication ├── Areas ├── Admin │ ├── Controllers │ │ ├── CategoryController.cs │ │ ├── CategoryItemController.cs │ │ ├── ContentController.cs │ │ ├── MediaTypeController.cs │ │ └── UsersToCategoryController.cs │ ├── Models │ │ ├── UserModel.cs │ │ └── UsersCategoryListModel.cs │ └── Views │ │ ├── Category │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── CategoryItem │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Content │ │ ├── Create.cshtml │ │ └── Edit.cshtml │ │ ├── MediaType │ │ ├── Create.cshtml │ │ ├── Delete.cshtml │ │ ├── Details.cshtml │ │ ├── Edit.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ ├── _CreateButtonPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _RUDButtonsPartial.cshtml │ │ └── _UsersListViewPartial.cshtml │ │ ├── UsersToCategory │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml └── Identity │ └── Pages │ └── _ViewStart.cshtml ├── Code Snippets └── AddAdminAccount_Migration_Code_Snippets.txt ├── Comparers ├── CompareCategories.cs └── CompareUsers.cs ├── Controllers ├── CategoriesToUserController.cs ├── ContentController.cs ├── HomeController.cs └── UserAuthController.cs ├── Data ├── ApplicationDbContext.cs ├── DataFunctions.cs ├── IDataFunctions.cs └── Migrations │ ├── 00000000000000_CreateIdentitySchema.Designer.cs │ ├── 00000000000000_CreateIdentitySchema.cs │ └── ApplicationDbContextModelSnapshot.cs ├── Entities ├── Category.cs ├── CategoryItem.cs ├── Content.cs ├── MediaType.cs └── UserCategory.cs ├── Extensions └── ConvertExtensions.cs ├── Interfaces └── IPrimaryProperties.cs ├── Models ├── CategoriesToUserModel.cs ├── CategoryDetailsModel.cs ├── CategoryItemDetailsModel.cs ├── ErrorViewModel.cs ├── GroupedCategoryItemsByCategoryModel.cs ├── LoginModel.cs └── RegistrationModel.cs ├── Program.cs ├── Properties ├── launchSettings.json ├── serviceDependencies.json ├── serviceDependencies.local.json └── serviceDependencies.local.json.user ├── ScaffoldingReadMe.txt ├── SqlScripts ├── AddCourses.sql ├── CategoryItems.sql └── MediaTypes.sql ├── Startup.cs ├── TechTreeMVCWebApplication.csproj ├── Views ├── CategoriesToUser │ └── Index.cshtml ├── Content │ └── Index.cshtml ├── Home │ ├── Index.cshtml │ └── Privacy.cshtml ├── Shared │ ├── Error.cshtml │ ├── _AdminMenuPartial.cshtml │ ├── _AuthScriptsPartial.cshtml │ ├── _DateScriptsPartial.cshtml │ ├── _DefaultHomePageContentPartial.cshtml │ ├── _DisplayCardRowPartial.cshtml │ ├── _Layout.cshtml │ ├── _LoginPartial.cshtml │ ├── _UserLoginPartial.cshtml │ ├── _UserRegistrationPartial.cshtml │ └── _ValidationScriptsPartial.cshtml ├── _ViewImports.cshtml └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── Images ├── AdvancedCSharp.jpeg ├── ArticleImage.jpeg ├── AzureCloud.jpeg ├── CsharpBeginners.jpeg ├── FullStackDev.jpeg ├── HeroImage.jpeg ├── JavaScriptBeginners.jpeg ├── Mobile.jpeg ├── NodeJS.jpeg ├── ResponsiveWebDesign.jpeg ├── SqlServerBeginners.jpeg ├── TechTreeLogo.jpeg └── VideoImage.jpeg ├── css └── site.css ├── favicon.ico ├── fontawesome ├── LICENSE.txt ├── attribution.js ├── css │ ├── all.css │ ├── all.min.css │ ├── brands.css │ ├── brands.min.css │ ├── fontawesome.css │ ├── fontawesome.min.css │ ├── regular.css │ ├── regular.min.css │ ├── solid.css │ ├── solid.min.css │ ├── svg-with-js.css │ ├── svg-with-js.min.css │ ├── v4-shims.css │ └── v4-shims.min.css ├── js │ ├── all.js │ ├── all.min.js │ ├── brands.js │ ├── brands.min.js │ ├── conflict-detection.js │ ├── conflict-detection.min.js │ ├── fontawesome.js │ ├── fontawesome.min.js │ ├── regular.js │ ├── regular.min.js │ ├── solid.js │ ├── solid.min.js │ ├── v4-shims.js │ └── v4-shims.min.js ├── less │ ├── _animated.less │ ├── _bordered-pulled.less │ ├── _core.less │ ├── _fixed-width.less │ ├── _icons.less │ ├── _list.less │ ├── _mixins.less │ ├── _rotated-flipped.less │ ├── _screen-reader.less │ ├── _shims.less │ ├── _sizing.less │ ├── _stacked.less │ ├── _variables.less │ ├── brands.less │ ├── fontawesome.less │ ├── regular.less │ ├── solid.less │ └── v4-shims.less ├── scss │ ├── _animated.scss │ ├── _bordered-pulled.scss │ ├── _core.scss │ ├── _fixed-width.scss │ ├── _functions.scss │ ├── _icons.scss │ ├── _list.scss │ ├── _mixins.scss │ ├── _rotated-flipped.scss │ ├── _screen-reader.scss │ ├── _shims.scss │ ├── _sizing.scss │ ├── _stacked.scss │ ├── _variables.scss │ ├── brands.scss │ ├── fontawesome.scss │ ├── regular.scss │ ├── solid.scss │ └── v4-shims.scss ├── sprites │ ├── brands.svg │ ├── regular.svg │ └── solid.svg ├── svgs │ ├── brands │ │ ├── 42-group.svg │ │ ├── 500px.svg │ │ ├── accessible-icon.svg │ │ ├── accusoft.svg │ │ ├── acquisitions-incorporated.svg │ │ ├── adn.svg │ │ ├── adversal.svg │ │ ├── affiliatetheme.svg │ │ ├── airbnb.svg │ │ ├── algolia.svg │ │ ├── alipay.svg │ │ ├── amazon-pay.svg │ │ ├── amazon.svg │ │ ├── amilia.svg │ │ ├── android.svg │ │ ├── angellist.svg │ │ ├── angrycreative.svg │ │ ├── angular.svg │ │ ├── app-store-ios.svg │ │ ├── app-store.svg │ │ ├── apper.svg │ │ ├── apple-pay.svg │ │ ├── apple.svg │ │ ├── artstation.svg │ │ ├── asymmetrik.svg │ │ ├── atlassian.svg │ │ ├── audible.svg │ │ ├── autoprefixer.svg │ │ ├── avianex.svg │ │ ├── aviato.svg │ │ ├── aws.svg │ │ ├── bandcamp.svg │ │ ├── battle-net.svg │ │ ├── behance-square.svg │ │ ├── behance.svg │ │ ├── bilibili.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 │ │ ├── bots.svg │ │ ├── btc.svg │ │ ├── buffer.svg │ │ ├── buromobelexperte.svg │ │ ├── buy-n-large.svg │ │ ├── buysellads.svg │ │ ├── canadian-maple-leaf.svg │ │ ├── cc-amazon-pay.svg │ │ ├── cc-amex.svg │ │ ├── cc-apple-pay.svg │ │ ├── cc-diners-club.svg │ │ ├── cc-discover.svg │ │ ├── cc-jcb.svg │ │ ├── cc-mastercard.svg │ │ ├── cc-paypal.svg │ │ ├── cc-stripe.svg │ │ ├── cc-visa.svg │ │ ├── centercode.svg │ │ ├── centos.svg │ │ ├── chrome.svg │ │ ├── chromecast.svg │ │ ├── cloudflare.svg │ │ ├── cloudscale.svg │ │ ├── cloudsmith.svg │ │ ├── cloudversify.svg │ │ ├── cmplid.svg │ │ ├── codepen.svg │ │ ├── codiepie.svg │ │ ├── confluence.svg │ │ ├── connectdevelop.svg │ │ ├── contao.svg │ │ ├── cotton-bureau.svg │ │ ├── cpanel.svg │ │ ├── creative-commons-by.svg │ │ ├── creative-commons-nc-eu.svg │ │ ├── creative-commons-nc-jp.svg │ │ ├── creative-commons-nc.svg │ │ ├── creative-commons-nd.svg │ │ ├── creative-commons-pd-alt.svg │ │ ├── creative-commons-pd.svg │ │ ├── creative-commons-remix.svg │ │ ├── creative-commons-sa.svg │ │ ├── creative-commons-sampling-plus.svg │ │ ├── creative-commons-sampling.svg │ │ ├── creative-commons-share.svg │ │ ├── creative-commons-zero.svg │ │ ├── creative-commons.svg │ │ ├── critical-role.svg │ │ ├── css3-alt.svg │ │ ├── css3.svg │ │ ├── cuttlefish.svg │ │ ├── d-and-d-beyond.svg │ │ ├── d-and-d.svg │ │ ├── dailymotion.svg │ │ ├── dashcube.svg │ │ ├── deezer.svg │ │ ├── delicious.svg │ │ ├── deploydog.svg │ │ ├── deskpro.svg │ │ ├── dev.svg │ │ ├── deviantart.svg │ │ ├── dhl.svg │ │ ├── diaspora.svg │ │ ├── digg.svg │ │ ├── digital-ocean.svg │ │ ├── discord.svg │ │ ├── discourse.svg │ │ ├── dochub.svg │ │ ├── docker.svg │ │ ├── draft2digital.svg │ │ ├── dribbble-square.svg │ │ ├── dribbble.svg │ │ ├── dropbox.svg │ │ ├── drupal.svg │ │ ├── dyalog.svg │ │ ├── earlybirds.svg │ │ ├── ebay.svg │ │ ├── edge-legacy.svg │ │ ├── edge.svg │ │ ├── elementor.svg │ │ ├── ello.svg │ │ ├── ember.svg │ │ ├── empire.svg │ │ ├── envira.svg │ │ ├── erlang.svg │ │ ├── ethereum.svg │ │ ├── etsy.svg │ │ ├── evernote.svg │ │ ├── expeditedssl.svg │ │ ├── facebook-f.svg │ │ ├── facebook-messenger.svg │ │ ├── facebook-square.svg │ │ ├── facebook.svg │ │ ├── fantasy-flight-games.svg │ │ ├── fedex.svg │ │ ├── fedora.svg │ │ ├── figma.svg │ │ ├── firefox-browser.svg │ │ ├── firefox.svg │ │ ├── first-order-alt.svg │ │ ├── first-order.svg │ │ ├── firstdraft.svg │ │ ├── flickr.svg │ │ ├── flipboard.svg │ │ ├── fly.svg │ │ ├── font-awesome.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 │ │ ├── golang.svg │ │ ├── goodreads-g.svg │ │ ├── goodreads.svg │ │ ├── google-drive.svg │ │ ├── google-pay.svg │ │ ├── google-play.svg │ │ ├── google-plus-g.svg │ │ ├── google-plus-square.svg │ │ ├── google-plus.svg │ │ ├── google-wallet.svg │ │ ├── google.svg │ │ ├── gratipay.svg │ │ ├── grav.svg │ │ ├── gripfire.svg │ │ ├── grunt.svg │ │ ├── guilded.svg │ │ ├── gulp.svg │ │ ├── hacker-news-square.svg │ │ ├── hacker-news.svg │ │ ├── hackerrank.svg │ │ ├── hips.svg │ │ ├── hire-a-helper.svg │ │ ├── hive.svg │ │ ├── hooli.svg │ │ ├── hornbill.svg │ │ ├── hotjar.svg │ │ ├── houzz.svg │ │ ├── html5.svg │ │ ├── hubspot.svg │ │ ├── ideal.svg │ │ ├── imdb.svg │ │ ├── instagram-square.svg │ │ ├── instagram.svg │ │ ├── instalod.svg │ │ ├── intercom.svg │ │ ├── internet-explorer.svg │ │ ├── invision.svg │ │ ├── ioxhost.svg │ │ ├── itch-io.svg │ │ ├── itunes-note.svg │ │ ├── itunes.svg │ │ ├── java.svg │ │ ├── jedi-order.svg │ │ ├── jenkins.svg │ │ ├── jira.svg │ │ ├── joget.svg │ │ ├── joomla.svg │ │ ├── js-square.svg │ │ ├── js.svg │ │ ├── jsfiddle.svg │ │ ├── kaggle.svg │ │ ├── keybase.svg │ │ ├── keycdn.svg │ │ ├── kickstarter-k.svg │ │ ├── kickstarter.svg │ │ ├── korvue.svg │ │ ├── laravel.svg │ │ ├── lastfm-square.svg │ │ ├── lastfm.svg │ │ ├── leanpub.svg │ │ ├── less.svg │ │ ├── line.svg │ │ ├── linkedin-in.svg │ │ ├── linkedin.svg │ │ ├── linode.svg │ │ ├── linux.svg │ │ ├── lyft.svg │ │ ├── magento.svg │ │ ├── mailchimp.svg │ │ ├── mandalorian.svg │ │ ├── markdown.svg │ │ ├── mastodon.svg │ │ ├── maxcdn.svg │ │ ├── mdb.svg │ │ ├── medapps.svg │ │ ├── medium.svg │ │ ├── medrt.svg │ │ ├── meetup.svg │ │ ├── megaport.svg │ │ ├── mendeley.svg │ │ ├── microblog.svg │ │ ├── microsoft.svg │ │ ├── mix.svg │ │ ├── mixcloud.svg │ │ ├── mixer.svg │ │ ├── mizuni.svg │ │ ├── modx.svg │ │ ├── monero.svg │ │ ├── napster.svg │ │ ├── neos.svg │ │ ├── nimblr.svg │ │ ├── node-js.svg │ │ ├── node.svg │ │ ├── npm.svg │ │ ├── ns8.svg │ │ ├── nutritionix.svg │ │ ├── octopus-deploy.svg │ │ ├── odnoklassniki-square.svg │ │ ├── odnoklassniki.svg │ │ ├── old-republic.svg │ │ ├── opencart.svg │ │ ├── openid.svg │ │ ├── opera.svg │ │ ├── optin-monster.svg │ │ ├── orcid.svg │ │ ├── osi.svg │ │ ├── page4.svg │ │ ├── pagelines.svg │ │ ├── palfed.svg │ │ ├── patreon.svg │ │ ├── paypal.svg │ │ ├── penny-arcade.svg │ │ ├── perbyte.svg │ │ ├── periscope.svg │ │ ├── phabricator.svg │ │ ├── phoenix-framework.svg │ │ ├── phoenix-squadron.svg │ │ ├── php.svg │ │ ├── pied-piper-alt.svg │ │ ├── pied-piper-hat.svg │ │ ├── pied-piper-pp.svg │ │ ├── pied-piper-square.svg │ │ ├── pied-piper.svg │ │ ├── pinterest-p.svg │ │ ├── pinterest-square.svg │ │ ├── pinterest.svg │ │ ├── pix.svg │ │ ├── playstation.svg │ │ ├── product-hunt.svg │ │ ├── pushed.svg │ │ ├── python.svg │ │ ├── qq.svg │ │ ├── quinscape.svg │ │ ├── quora.svg │ │ ├── r-project.svg │ │ ├── raspberry-pi.svg │ │ ├── ravelry.svg │ │ ├── react.svg │ │ ├── reacteurope.svg │ │ ├── readme.svg │ │ ├── rebel.svg │ │ ├── red-river.svg │ │ ├── reddit-alien.svg │ │ ├── reddit-square.svg │ │ ├── reddit.svg │ │ ├── redhat.svg │ │ ├── renren.svg │ │ ├── replyd.svg │ │ ├── researchgate.svg │ │ ├── resolving.svg │ │ ├── rev.svg │ │ ├── rocketchat.svg │ │ ├── rockrms.svg │ │ ├── rust.svg │ │ ├── safari.svg │ │ ├── salesforce.svg │ │ ├── sass.svg │ │ ├── schlix.svg │ │ ├── scribd.svg │ │ ├── searchengin.svg │ │ ├── sellcast.svg │ │ ├── sellsy.svg │ │ ├── servicestack.svg │ │ ├── shirtsinbulk.svg │ │ ├── shopify.svg │ │ ├── shopware.svg │ │ ├── simplybuilt.svg │ │ ├── sistrix.svg │ │ ├── sith.svg │ │ ├── sitrox.svg │ │ ├── sketch.svg │ │ ├── skyatlas.svg │ │ ├── skype.svg │ │ ├── slack.svg │ │ ├── slideshare.svg │ │ ├── snapchat-square.svg │ │ ├── snapchat.svg │ │ ├── soundcloud.svg │ │ ├── sourcetree.svg │ │ ├── speakap.svg │ │ ├── speaker-deck.svg │ │ ├── spotify.svg │ │ ├── square-font-awesome-stroke.svg │ │ ├── square-font-awesome.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.svg │ │ ├── tencent-weibo.svg │ │ ├── the-red-yeti.svg │ │ ├── themeco.svg │ │ ├── themeisle.svg │ │ ├── think-peaks.svg │ │ ├── tiktok.svg │ │ ├── trade-federation.svg │ │ ├── trello.svg │ │ ├── tumblr-square.svg │ │ ├── tumblr.svg │ │ ├── twitch.svg │ │ ├── twitter-square.svg │ │ ├── twitter.svg │ │ ├── typo3.svg │ │ ├── uber.svg │ │ ├── ubuntu.svg │ │ ├── uikit.svg │ │ ├── umbraco.svg │ │ ├── uncharted.svg │ │ ├── uniregistry.svg │ │ ├── unity.svg │ │ ├── unsplash.svg │ │ ├── untappd.svg │ │ ├── ups.svg │ │ ├── usb.svg │ │ ├── usps.svg │ │ ├── ussunnah.svg │ │ ├── vaadin.svg │ │ ├── viacoin.svg │ │ ├── viadeo-square.svg │ │ ├── viadeo.svg │ │ ├── viber.svg │ │ ├── vimeo-square.svg │ │ ├── vimeo-v.svg │ │ ├── vimeo.svg │ │ ├── vine.svg │ │ ├── vk.svg │ │ ├── vnv.svg │ │ ├── vuejs.svg │ │ ├── watchman-monitoring.svg │ │ ├── waze.svg │ │ ├── weebly.svg │ │ ├── weibo.svg │ │ ├── weixin.svg │ │ ├── whatsapp-square.svg │ │ ├── whatsapp.svg │ │ ├── whmcs.svg │ │ ├── wikipedia-w.svg │ │ ├── windows.svg │ │ ├── wirsindhandwerk.svg │ │ ├── wix.svg │ │ ├── wizards-of-the-coast.svg │ │ ├── wodu.svg │ │ ├── wolf-pack-battalion.svg │ │ ├── wordpress-simple.svg │ │ ├── wordpress.svg │ │ ├── wpbeginner.svg │ │ ├── wpexplorer.svg │ │ ├── wpforms.svg │ │ ├── wpressr.svg │ │ ├── xbox.svg │ │ ├── xing-square.svg │ │ ├── xing.svg │ │ ├── y-combinator.svg │ │ ├── yahoo.svg │ │ ├── yammer.svg │ │ ├── yandex-international.svg │ │ ├── yandex.svg │ │ ├── yarn.svg │ │ ├── yelp.svg │ │ ├── yoast.svg │ │ ├── youtube-square.svg │ │ ├── youtube.svg │ │ └── zhihu.svg │ ├── regular │ │ ├── address-book.svg │ │ ├── address-card.svg │ │ ├── bell-slash.svg │ │ ├── bell.svg │ │ ├── bookmark.svg │ │ ├── building.svg │ │ ├── calendar-check.svg │ │ ├── calendar-days.svg │ │ ├── calendar-minus.svg │ │ ├── calendar-plus.svg │ │ ├── calendar-xmark.svg │ │ ├── calendar.svg │ │ ├── chart-bar.svg │ │ ├── chess-bishop.svg │ │ ├── chess-king.svg │ │ ├── chess-knight.svg │ │ ├── chess-pawn.svg │ │ ├── chess-queen.svg │ │ ├── chess-rook.svg │ │ ├── circle-check.svg │ │ ├── circle-dot.svg │ │ ├── circle-down.svg │ │ ├── circle-left.svg │ │ ├── circle-pause.svg │ │ ├── circle-play.svg │ │ ├── circle-question.svg │ │ ├── circle-right.svg │ │ ├── circle-stop.svg │ │ ├── circle-up.svg │ │ ├── circle-user.svg │ │ ├── circle-xmark.svg │ │ ├── circle.svg │ │ ├── clipboard.svg │ │ ├── clock.svg │ │ ├── clone.svg │ │ ├── closed-captioning.svg │ │ ├── comment-dots.svg │ │ ├── comment.svg │ │ ├── comments.svg │ │ ├── compass.svg │ │ ├── copy.svg │ │ ├── copyright.svg │ │ ├── credit-card.svg │ │ ├── envelope-open.svg │ │ ├── envelope.svg │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── face-angry.svg │ │ ├── face-dizzy.svg │ │ ├── face-flushed.svg │ │ ├── face-frown-open.svg │ │ ├── face-frown.svg │ │ ├── face-grimace.svg │ │ ├── face-grin-beam-sweat.svg │ │ ├── face-grin-beam.svg │ │ ├── face-grin-hearts.svg │ │ ├── face-grin-squint-tears.svg │ │ ├── face-grin-squint.svg │ │ ├── face-grin-stars.svg │ │ ├── face-grin-tears.svg │ │ ├── face-grin-tongue-squint.svg │ │ ├── face-grin-tongue-wink.svg │ │ ├── face-grin-tongue.svg │ │ ├── face-grin-wide.svg │ │ ├── face-grin-wink.svg │ │ ├── face-grin.svg │ │ ├── face-kiss-beam.svg │ │ ├── face-kiss-wink-heart.svg │ │ ├── face-kiss.svg │ │ ├── face-laugh-beam.svg │ │ ├── face-laugh-squint.svg │ │ ├── face-laugh-wink.svg │ │ ├── face-laugh.svg │ │ ├── face-meh-blank.svg │ │ ├── face-meh.svg │ │ ├── face-rolling-eyes.svg │ │ ├── face-sad-cry.svg │ │ ├── face-sad-tear.svg │ │ ├── face-smile-beam.svg │ │ ├── face-smile-wink.svg │ │ ├── face-smile.svg │ │ ├── face-surprise.svg │ │ ├── face-tired.svg │ │ ├── file-audio.svg │ │ ├── file-code.svg │ │ ├── file-excel.svg │ │ ├── file-image.svg │ │ ├── file-lines.svg │ │ ├── file-pdf.svg │ │ ├── file-powerpoint.svg │ │ ├── file-video.svg │ │ ├── file-word.svg │ │ ├── file-zipper.svg │ │ ├── file.svg │ │ ├── flag.svg │ │ ├── floppy-disk.svg │ │ ├── folder-open.svg │ │ ├── folder.svg │ │ ├── font-awesome.svg │ │ ├── futbol.svg │ │ ├── gem.svg │ │ ├── hand-back-fist.svg │ │ ├── hand-lizard.svg │ │ ├── hand-peace.svg │ │ ├── hand-point-down.svg │ │ ├── hand-point-left.svg │ │ ├── hand-point-right.svg │ │ ├── hand-point-up.svg │ │ ├── hand-pointer.svg │ │ ├── hand-scissors.svg │ │ ├── hand-spock.svg │ │ ├── hand.svg │ │ ├── handshake.svg │ │ ├── hard-drive.svg │ │ ├── heart.svg │ │ ├── hospital.svg │ │ ├── hourglass.svg │ │ ├── id-badge.svg │ │ ├── id-card.svg │ │ ├── image.svg │ │ ├── images.svg │ │ ├── keyboard.svg │ │ ├── lemon.svg │ │ ├── life-ring.svg │ │ ├── lightbulb.svg │ │ ├── map.svg │ │ ├── message.svg │ │ ├── money-bill-1.svg │ │ ├── moon.svg │ │ ├── newspaper.svg │ │ ├── note-sticky.svg │ │ ├── object-group.svg │ │ ├── object-ungroup.svg │ │ ├── paper-plane.svg │ │ ├── pen-to-square.svg │ │ ├── rectangle-list.svg │ │ ├── rectangle-xmark.svg │ │ ├── registered.svg │ │ ├── share-from-square.svg │ │ ├── snowflake.svg │ │ ├── square-caret-down.svg │ │ ├── square-caret-left.svg │ │ ├── square-caret-right.svg │ │ ├── square-caret-up.svg │ │ ├── square-check.svg │ │ ├── square-full.svg │ │ ├── square-minus.svg │ │ ├── square-plus.svg │ │ ├── square.svg │ │ ├── star-half.svg │ │ ├── star.svg │ │ ├── sun.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up.svg │ │ ├── trash-can.svg │ │ ├── user.svg │ │ ├── window-maximize.svg │ │ ├── window-minimize.svg │ │ └── window-restore.svg │ └── solid │ │ ├── 0.svg │ │ ├── 1.svg │ │ ├── 2.svg │ │ ├── 3.svg │ │ ├── 4.svg │ │ ├── 5.svg │ │ ├── 6.svg │ │ ├── 7.svg │ │ ├── 8.svg │ │ ├── 9.svg │ │ ├── a.svg │ │ ├── address-book.svg │ │ ├── address-card.svg │ │ ├── align-center.svg │ │ ├── align-justify.svg │ │ ├── align-left.svg │ │ ├── align-right.svg │ │ ├── anchor.svg │ │ ├── angle-down.svg │ │ ├── angle-left.svg │ │ ├── angle-right.svg │ │ ├── angle-up.svg │ │ ├── angles-down.svg │ │ ├── angles-left.svg │ │ ├── angles-right.svg │ │ ├── angles-up.svg │ │ ├── ankh.svg │ │ ├── apple-whole.svg │ │ ├── archway.svg │ │ ├── arrow-down-1-9.svg │ │ ├── arrow-down-9-1.svg │ │ ├── arrow-down-a-z.svg │ │ ├── arrow-down-short-wide.svg │ │ ├── arrow-down-wide-short.svg │ │ ├── arrow-down-z-a.svg │ │ ├── arrow-down.svg │ │ ├── arrow-left.svg │ │ ├── arrow-pointer.svg │ │ ├── arrow-right.svg │ │ ├── arrow-rotate-left.svg │ │ ├── arrow-rotate-right.svg │ │ ├── arrow-trend-down.svg │ │ ├── arrow-trend-up.svg │ │ ├── arrow-up-1-9.svg │ │ ├── arrow-up-9-1.svg │ │ ├── arrow-up-a-z.svg │ │ ├── arrow-up-from-bracket.svg │ │ ├── arrow-up-short-wide.svg │ │ ├── arrow-up-wide-short.svg │ │ ├── arrow-up-z-a.svg │ │ ├── arrow-up.svg │ │ ├── arrows-rotate.svg │ │ ├── asterisk.svg │ │ ├── at.svg │ │ ├── atom.svg │ │ ├── audio-description.svg │ │ ├── austral-sign.svg │ │ ├── award.svg │ │ ├── b.svg │ │ ├── baby-carriage.svg │ │ ├── baby.svg │ │ ├── backward-fast.svg │ │ ├── backward-step.svg │ │ ├── backward.svg │ │ ├── bacon.svg │ │ ├── bacteria.svg │ │ ├── bacterium.svg │ │ ├── bag-shopping.svg │ │ ├── bahai.svg │ │ ├── baht-sign.svg │ │ ├── ban-smoking.svg │ │ ├── ban.svg │ │ ├── bandage.svg │ │ ├── bank.svg │ │ ├── barcode.svg │ │ ├── bars-staggered.svg │ │ ├── bars.svg │ │ ├── baseball.svg │ │ ├── basket-shopping.svg │ │ ├── basketball.svg │ │ ├── bath.svg │ │ ├── battery-empty.svg │ │ ├── battery-full.svg │ │ ├── battery-half.svg │ │ ├── battery-quarter.svg │ │ ├── battery-three-quarters.svg │ │ ├── bed-pulse.svg │ │ ├── bed.svg │ │ ├── beer-mug-empty.svg │ │ ├── bell-concierge.svg │ │ ├── bell-slash.svg │ │ ├── bell.svg │ │ ├── bezier-curve.svg │ │ ├── bicycle.svg │ │ ├── binoculars.svg │ │ ├── biohazard.svg │ │ ├── bitcoin-sign.svg │ │ ├── blender-phone.svg │ │ ├── blender.svg │ │ ├── blog.svg │ │ ├── bold.svg │ │ ├── bolt.svg │ │ ├── bomb.svg │ │ ├── bone.svg │ │ ├── bong.svg │ │ ├── book-atlas.svg │ │ ├── book-bible.svg │ │ ├── book-journal-whills.svg │ │ ├── book-medical.svg │ │ ├── book-open-reader.svg │ │ ├── book-open.svg │ │ ├── book-quran.svg │ │ ├── book-skull.svg │ │ ├── book.svg │ │ ├── bookmark.svg │ │ ├── border-all.svg │ │ ├── border-none.svg │ │ ├── border-top-left.svg │ │ ├── bowling-ball.svg │ │ ├── box-archive.svg │ │ ├── box-open.svg │ │ ├── box-tissue.svg │ │ ├── box.svg │ │ ├── boxes-stacked.svg │ │ ├── braille.svg │ │ ├── brain.svg │ │ ├── bread-slice.svg │ │ ├── briefcase-medical.svg │ │ ├── briefcase.svg │ │ ├── broom.svg │ │ ├── brush.svg │ │ ├── bug.svg │ │ ├── building.svg │ │ ├── bullhorn.svg │ │ ├── bullseye.svg │ │ ├── burger.svg │ │ ├── bus-simple.svg │ │ ├── bus.svg │ │ ├── business-time.svg │ │ ├── c.svg │ │ ├── cake-candles.svg │ │ ├── calculator.svg │ │ ├── calendar-check.svg │ │ ├── calendar-day.svg │ │ ├── calendar-days.svg │ │ ├── calendar-minus.svg │ │ ├── calendar-plus.svg │ │ ├── calendar-week.svg │ │ ├── calendar-xmark.svg │ │ ├── calendar.svg │ │ ├── camera-retro.svg │ │ ├── camera-rotate.svg │ │ ├── camera.svg │ │ ├── campground.svg │ │ ├── candy-cane.svg │ │ ├── cannabis.svg │ │ ├── capsules.svg │ │ ├── car-battery.svg │ │ ├── car-crash.svg │ │ ├── car-rear.svg │ │ ├── car-side.svg │ │ ├── car.svg │ │ ├── caravan.svg │ │ ├── caret-down.svg │ │ ├── caret-left.svg │ │ ├── caret-right.svg │ │ ├── caret-up.svg │ │ ├── carrot.svg │ │ ├── cart-arrow-down.svg │ │ ├── cart-flatbed-suitcase.svg │ │ ├── cart-flatbed.svg │ │ ├── cart-plus.svg │ │ ├── cart-shopping.svg │ │ ├── cash-register.svg │ │ ├── cat.svg │ │ ├── cedi-sign.svg │ │ ├── cent-sign.svg │ │ ├── certificate.svg │ │ ├── chair.svg │ │ ├── chalkboard-user.svg │ │ ├── chalkboard.svg │ │ ├── champagne-glasses.svg │ │ ├── charging-station.svg │ │ ├── chart-area.svg │ │ ├── chart-bar.svg │ │ ├── chart-gantt.svg │ │ ├── chart-line.svg │ │ ├── chart-pie.svg │ │ ├── check-double.svg │ │ ├── check-to-slot.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-down.svg │ │ ├── chevron-left.svg │ │ ├── chevron-right.svg │ │ ├── chevron-up.svg │ │ ├── child.svg │ │ ├── church.svg │ │ ├── circle-arrow-down.svg │ │ ├── circle-arrow-left.svg │ │ ├── circle-arrow-right.svg │ │ ├── circle-arrow-up.svg │ │ ├── circle-check.svg │ │ ├── circle-chevron-down.svg │ │ ├── circle-chevron-left.svg │ │ ├── circle-chevron-right.svg │ │ ├── circle-chevron-up.svg │ │ ├── circle-dollar-to-slot.svg │ │ ├── circle-dot.svg │ │ ├── circle-down.svg │ │ ├── circle-exclamation.svg │ │ ├── circle-h.svg │ │ ├── circle-half-stroke.svg │ │ ├── circle-info.svg │ │ ├── circle-left.svg │ │ ├── circle-minus.svg │ │ ├── circle-notch.svg │ │ ├── circle-pause.svg │ │ ├── circle-play.svg │ │ ├── circle-plus.svg │ │ ├── circle-question.svg │ │ ├── circle-radiation.svg │ │ ├── circle-right.svg │ │ ├── circle-stop.svg │ │ ├── circle-up.svg │ │ ├── circle-user.svg │ │ ├── circle-xmark.svg │ │ ├── circle.svg │ │ ├── city.svg │ │ ├── clapperboard.svg │ │ ├── clipboard-check.svg │ │ ├── clipboard-list.svg │ │ ├── clipboard.svg │ │ ├── clock-rotate-left.svg │ │ ├── clock.svg │ │ ├── clone.svg │ │ ├── closed-captioning.svg │ │ ├── cloud-arrow-down.svg │ │ ├── cloud-arrow-up.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.svg │ │ ├── clover.svg │ │ ├── code-branch.svg │ │ ├── code-commit.svg │ │ ├── code-compare.svg │ │ ├── code-fork.svg │ │ ├── code-merge.svg │ │ ├── code-pull-request.svg │ │ ├── code.svg │ │ ├── coins.svg │ │ ├── colon-sign.svg │ │ ├── comment-dollar.svg │ │ ├── comment-dots.svg │ │ ├── comment-medical.svg │ │ ├── comment-slash.svg │ │ ├── comment-sms.svg │ │ ├── comment.svg │ │ ├── comments-dollar.svg │ │ ├── comments.svg │ │ ├── compact-disc.svg │ │ ├── compass-drafting.svg │ │ ├── compass.svg │ │ ├── compress.svg │ │ ├── computer-mouse.svg │ │ ├── cookie-bite.svg │ │ ├── cookie.svg │ │ ├── copy.svg │ │ ├── copyright.svg │ │ ├── couch.svg │ │ ├── credit-card.svg │ │ ├── crop-simple.svg │ │ ├── crop.svg │ │ ├── cross.svg │ │ ├── crosshairs.svg │ │ ├── crow.svg │ │ ├── crown.svg │ │ ├── crutch.svg │ │ ├── cruzeiro-sign.svg │ │ ├── cube.svg │ │ ├── cubes.svg │ │ ├── d.svg │ │ ├── database.svg │ │ ├── delete-left.svg │ │ ├── democrat.svg │ │ ├── desktop.svg │ │ ├── dharmachakra.svg │ │ ├── diagram-project.svg │ │ ├── diamond-turn-right.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 │ │ ├── disease.svg │ │ ├── divide.svg │ │ ├── dna.svg │ │ ├── dog.svg │ │ ├── dollar-sign.svg │ │ ├── dolly.svg │ │ ├── dong-sign.svg │ │ ├── door-closed.svg │ │ ├── door-open.svg │ │ ├── dove.svg │ │ ├── down-left-and-up-right-to-center.svg │ │ ├── down-long.svg │ │ ├── download.svg │ │ ├── dragon.svg │ │ ├── draw-polygon.svg │ │ ├── droplet-slash.svg │ │ ├── droplet.svg │ │ ├── drum-steelpan.svg │ │ ├── drum.svg │ │ ├── drumstick-bite.svg │ │ ├── dumbbell.svg │ │ ├── dumpster-fire.svg │ │ ├── dumpster.svg │ │ ├── dungeon.svg │ │ ├── e.svg │ │ ├── ear-deaf.svg │ │ ├── ear-listen.svg │ │ ├── earth-africa.svg │ │ ├── earth-americas.svg │ │ ├── earth-asia.svg │ │ ├── earth-europa.svg │ │ ├── egg.svg │ │ ├── eject.svg │ │ ├── elevator.svg │ │ ├── ellipsis-vertical.svg │ │ ├── ellipsis.svg │ │ ├── envelope-open-text.svg │ │ ├── envelope-open.svg │ │ ├── envelope.svg │ │ ├── envelopes-bulk.svg │ │ ├── equals.svg │ │ ├── eraser.svg │ │ ├── ethernet.svg │ │ ├── euro-sign.svg │ │ ├── exclamation.svg │ │ ├── expand.svg │ │ ├── eye-dropper.svg │ │ ├── eye-low-vision.svg │ │ ├── eye-slash.svg │ │ ├── eye.svg │ │ ├── f.svg │ │ ├── face-angry.svg │ │ ├── face-dizzy.svg │ │ ├── face-flushed.svg │ │ ├── face-frown-open.svg │ │ ├── face-frown.svg │ │ ├── face-grimace.svg │ │ ├── face-grin-beam-sweat.svg │ │ ├── face-grin-beam.svg │ │ ├── face-grin-hearts.svg │ │ ├── face-grin-squint-tears.svg │ │ ├── face-grin-squint.svg │ │ ├── face-grin-stars.svg │ │ ├── face-grin-tears.svg │ │ ├── face-grin-tongue-squint.svg │ │ ├── face-grin-tongue-wink.svg │ │ ├── face-grin-tongue.svg │ │ ├── face-grin-wide.svg │ │ ├── face-grin-wink.svg │ │ ├── face-grin.svg │ │ ├── face-kiss-beam.svg │ │ ├── face-kiss-wink-heart.svg │ │ ├── face-kiss.svg │ │ ├── face-laugh-beam.svg │ │ ├── face-laugh-squint.svg │ │ ├── face-laugh-wink.svg │ │ ├── face-laugh.svg │ │ ├── face-meh-blank.svg │ │ ├── face-meh.svg │ │ ├── face-rolling-eyes.svg │ │ ├── face-sad-cry.svg │ │ ├── face-sad-tear.svg │ │ ├── face-smile-beam.svg │ │ ├── face-smile-wink.svg │ │ ├── face-smile.svg │ │ ├── face-surprise.svg │ │ ├── face-tired.svg │ │ ├── fan.svg │ │ ├── faucet.svg │ │ ├── fax.svg │ │ ├── feather-pointed.svg │ │ ├── feather.svg │ │ ├── file-arrow-down.svg │ │ ├── file-arrow-up.svg │ │ ├── file-audio.svg │ │ ├── file-code.svg │ │ ├── file-contract.svg │ │ ├── file-csv.svg │ │ ├── file-excel.svg │ │ ├── file-export.svg │ │ ├── file-image.svg │ │ ├── file-import.svg │ │ ├── file-invoice-dollar.svg │ │ ├── file-invoice.svg │ │ ├── file-lines.svg │ │ ├── file-medical.svg │ │ ├── file-pdf.svg │ │ ├── file-powerpoint.svg │ │ ├── file-prescription.svg │ │ ├── file-signature.svg │ │ ├── file-video.svg │ │ ├── file-waveform.svg │ │ ├── file-word.svg │ │ ├── file-zipper.svg │ │ ├── file.svg │ │ ├── fill-drip.svg │ │ ├── fill.svg │ │ ├── film.svg │ │ ├── filter-circle-dollar.svg │ │ ├── filter-circle-xmark.svg │ │ ├── filter.svg │ │ ├── fingerprint.svg │ │ ├── fire-extinguisher.svg │ │ ├── fire-flame-curved.svg │ │ ├── fire-flame-simple.svg │ │ ├── fire.svg │ │ ├── fish.svg │ │ ├── flag-checkered.svg │ │ ├── flag-usa.svg │ │ ├── flag.svg │ │ ├── flask.svg │ │ ├── floppy-disk.svg │ │ ├── florin-sign.svg │ │ ├── folder-minus.svg │ │ ├── folder-open.svg │ │ ├── folder-plus.svg │ │ ├── folder-tree.svg │ │ ├── folder.svg │ │ ├── font-awesome.svg │ │ ├── font.svg │ │ ├── football.svg │ │ ├── forward-fast.svg │ │ ├── forward-step.svg │ │ ├── forward.svg │ │ ├── franc-sign.svg │ │ ├── frog.svg │ │ ├── futbol.svg │ │ ├── g.svg │ │ ├── gamepad.svg │ │ ├── gas-pump.svg │ │ ├── gauge-simple.svg │ │ ├── gavel.svg │ │ ├── gear.svg │ │ ├── gears.svg │ │ ├── gem.svg │ │ ├── genderless.svg │ │ ├── ghost.svg │ │ ├── gift.svg │ │ ├── gifts.svg │ │ ├── glasses.svg │ │ ├── globe.svg │ │ ├── golf-ball-tee.svg │ │ ├── gopuram.svg │ │ ├── graduation-cap.svg │ │ ├── greater-than-equal.svg │ │ ├── greater-than.svg │ │ ├── grip-lines-vertical.svg │ │ ├── grip-lines.svg │ │ ├── grip-vertical.svg │ │ ├── grip.svg │ │ ├── guarani-sign.svg │ │ ├── guitar.svg │ │ ├── gun.svg │ │ ├── h.svg │ │ ├── hammer.svg │ │ ├── hamsa.svg │ │ ├── hand-back-fist.svg │ │ ├── hand-dots.svg │ │ ├── hand-fist.svg │ │ ├── hand-holding-dollar.svg │ │ ├── hand-holding-droplet.svg │ │ ├── hand-holding-heart.svg │ │ ├── hand-holding-medical.svg │ │ ├── hand-holding.svg │ │ ├── hand-lizard.svg │ │ ├── hand-middle-finger.svg │ │ ├── hand-peace.svg │ │ ├── hand-point-down.svg │ │ ├── hand-point-left.svg │ │ ├── hand-point-right.svg │ │ ├── hand-point-up.svg │ │ ├── hand-pointer.svg │ │ ├── hand-scissors.svg │ │ ├── hand-sparkles.svg │ │ ├── hand-spock.svg │ │ ├── hand.svg │ │ ├── hands-asl-interpreting.svg │ │ ├── hands-bubbles.svg │ │ ├── hands-clapping.svg │ │ ├── hands-holding.svg │ │ ├── hands-praying.svg │ │ ├── hands.svg │ │ ├── handshake-angle.svg │ │ ├── handshake-simple-slash.svg │ │ ├── handshake-slash.svg │ │ ├── handshake.svg │ │ ├── hanukiah.svg │ │ ├── hard-drive.svg │ │ ├── hashtag.svg │ │ ├── hat-cowboy-side.svg │ │ ├── hat-cowboy.svg │ │ ├── hat-wizard.svg │ │ ├── head-side-cough-slash.svg │ │ ├── head-side-cough.svg │ │ ├── head-side-mask.svg │ │ ├── head-side-virus.svg │ │ ├── heading.svg │ │ ├── headphones-simple.svg │ │ ├── headphones.svg │ │ ├── headset.svg │ │ ├── heart-crack.svg │ │ ├── heart-pulse.svg │ │ ├── heart.svg │ │ ├── helicopter.svg │ │ ├── helmet-safety.svg │ │ ├── highlighter.svg │ │ ├── hippo.svg │ │ ├── hockey-puck.svg │ │ ├── holly-berry.svg │ │ ├── horse-head.svg │ │ ├── horse.svg │ │ ├── hospital-user.svg │ │ ├── hospital-wide.svg │ │ ├── hospital.svg │ │ ├── hot-tub-person.svg │ │ ├── hotdog.svg │ │ ├── hotel.svg │ │ ├── hourglass-empty.svg │ │ ├── hourglass-end.svg │ │ ├── hourglass-start.svg │ │ ├── hourglass.svg │ │ ├── house-chimney.svg │ │ ├── house-crack.svg │ │ ├── house-laptop.svg │ │ ├── house-medical.svg │ │ ├── house-user.svg │ │ ├── house.svg │ │ ├── hryvnia-sign.svg │ │ ├── i-cursor.svg │ │ ├── i.svg │ │ ├── ice-cream.svg │ │ ├── icicles.svg │ │ ├── icons.svg │ │ ├── id-badge.svg │ │ ├── id-card-clip.svg │ │ ├── id-card.svg │ │ ├── igloo.svg │ │ ├── image-portrait.svg │ │ ├── image.svg │ │ ├── images.svg │ │ ├── inbox.svg │ │ ├── indent.svg │ │ ├── indian-rupee-sign.svg │ │ ├── industry.svg │ │ ├── infinity.svg │ │ ├── info.svg │ │ ├── italic.svg │ │ ├── j.svg │ │ ├── jedi.svg │ │ ├── jet-fighter.svg │ │ ├── joint.svg │ │ ├── k.svg │ │ ├── kaaba.svg │ │ ├── key.svg │ │ ├── keyboard.svg │ │ ├── khanda.svg │ │ ├── kip-sign.svg │ │ ├── kit-medical.svg │ │ ├── kiwi-bird.svg │ │ ├── l.svg │ │ ├── landmark.svg │ │ ├── language.svg │ │ ├── laptop-code.svg │ │ ├── laptop-medical.svg │ │ ├── laptop.svg │ │ ├── lari-sign.svg │ │ ├── layer-group.svg │ │ ├── leaf.svg │ │ ├── left-long.svg │ │ ├── left-right.svg │ │ ├── lemon.svg │ │ ├── less-than-equal.svg │ │ ├── less-than.svg │ │ ├── life-ring.svg │ │ ├── lightbulb.svg │ │ ├── link-slash.svg │ │ ├── link.svg │ │ ├── lira-sign.svg │ │ ├── list-check.svg │ │ ├── list-ol.svg │ │ ├── list-ul.svg │ │ ├── list.svg │ │ ├── litecoin-sign.svg │ │ ├── location-arrow.svg │ │ ├── location-crosshairs.svg │ │ ├── location-dot.svg │ │ ├── location-pin.svg │ │ ├── lock-open.svg │ │ ├── lock.svg │ │ ├── lungs-virus.svg │ │ ├── lungs.svg │ │ ├── m.svg │ │ ├── magnet.svg │ │ ├── magnifying-glass-dollar.svg │ │ ├── magnifying-glass-location.svg │ │ ├── magnifying-glass-minus.svg │ │ ├── magnifying-glass-plus.svg │ │ ├── magnifying-glass.svg │ │ ├── manat-sign.svg │ │ ├── map-location-dot.svg │ │ ├── map-location.svg │ │ ├── map-pin.svg │ │ ├── map.svg │ │ ├── marker.svg │ │ ├── mars-and-venus.svg │ │ ├── mars-double.svg │ │ ├── mars-stroke-right.svg │ │ ├── mars-stroke-up.svg │ │ ├── mars-stroke.svg │ │ ├── mars.svg │ │ ├── martini-glass-citrus.svg │ │ ├── martini-glass-empty.svg │ │ ├── martini-glass.svg │ │ ├── mask-face.svg │ │ ├── mask.svg │ │ ├── masks-theater.svg │ │ ├── maximize.svg │ │ ├── medal.svg │ │ ├── memory.svg │ │ ├── menorah.svg │ │ ├── mercury.svg │ │ ├── message.svg │ │ ├── meteor.svg │ │ ├── microchip.svg │ │ ├── microphone-lines-slash.svg │ │ ├── microphone-lines.svg │ │ ├── microphone-slash.svg │ │ ├── microphone.svg │ │ ├── microscope.svg │ │ ├── mill-sign.svg │ │ ├── minimize.svg │ │ ├── minus.svg │ │ ├── mitten.svg │ │ ├── mobile-button.svg │ │ ├── mobile-screen-button.svg │ │ ├── money-bill-1-wave.svg │ │ ├── money-bill-1.svg │ │ ├── money-bill-wave.svg │ │ ├── money-bill.svg │ │ ├── money-check-dollar.svg │ │ ├── money-check.svg │ │ ├── monument.svg │ │ ├── moon.svg │ │ ├── mortar-pestle.svg │ │ ├── mosque.svg │ │ ├── motorcycle.svg │ │ ├── mountain.svg │ │ ├── mug-hot.svg │ │ ├── mug-saucer.svg │ │ ├── music.svg │ │ ├── n.svg │ │ ├── naira-sign.svg │ │ ├── network-wired.svg │ │ ├── neuter.svg │ │ ├── newspaper.svg │ │ ├── not-equal.svg │ │ ├── note-sticky.svg │ │ ├── notes-medical.svg │ │ ├── o.svg │ │ ├── object-group.svg │ │ ├── object-ungroup.svg │ │ ├── oil-can.svg │ │ ├── om.svg │ │ ├── otter.svg │ │ ├── outdent.svg │ │ ├── p.svg │ │ ├── pager.svg │ │ ├── paint-brush.svg │ │ ├── paint-roller.svg │ │ ├── palette.svg │ │ ├── pallet.svg │ │ ├── panorama.svg │ │ ├── paper-plane.svg │ │ ├── paperclip.svg │ │ ├── parachute-box.svg │ │ ├── paragraph.svg │ │ ├── passport.svg │ │ ├── paste.svg │ │ ├── pause.svg │ │ ├── paw.svg │ │ ├── peace.svg │ │ ├── pen-clip.svg │ │ ├── pen-fancy.svg │ │ ├── pen-nib.svg │ │ ├── pen-ruler.svg │ │ ├── pen-to-square.svg │ │ ├── pen.svg │ │ ├── pencil.svg │ │ ├── people-arrows-left-right.svg │ │ ├── people-carry-box.svg │ │ ├── pepper-hot.svg │ │ ├── percent.svg │ │ ├── person-biking.svg │ │ ├── person-booth.svg │ │ ├── person-dots-from-line.svg │ │ ├── person-dress.svg │ │ ├── person-hiking.svg │ │ ├── person-praying.svg │ │ ├── person-running.svg │ │ ├── person-skating.svg │ │ ├── person-skiing-nordic.svg │ │ ├── person-skiing.svg │ │ ├── person-snowboarding.svg │ │ ├── person-swimming.svg │ │ ├── person-walking-with-cane.svg │ │ ├── person-walking.svg │ │ ├── person.svg │ │ ├── peseta-sign.svg │ │ ├── peso-sign.svg │ │ ├── phone-flip.svg │ │ ├── phone-slash.svg │ │ ├── phone-volume.svg │ │ ├── phone.svg │ │ ├── photo-film.svg │ │ ├── piggy-bank.svg │ │ ├── pills.svg │ │ ├── pizza-slice.svg │ │ ├── place-of-worship.svg │ │ ├── plane-arrival.svg │ │ ├── plane-departure.svg │ │ ├── plane-slash.svg │ │ ├── plane.svg │ │ ├── play.svg │ │ ├── plug.svg │ │ ├── plus-minus.svg │ │ ├── plus.svg │ │ ├── podcast.svg │ │ ├── poo-storm.svg │ │ ├── poo.svg │ │ ├── poop.svg │ │ ├── power-off.svg │ │ ├── prescription-bottle-medical.svg │ │ ├── prescription-bottle.svg │ │ ├── prescription.svg │ │ ├── print.svg │ │ ├── pump-medical.svg │ │ ├── pump-soap.svg │ │ ├── puzzle-piece.svg │ │ ├── q.svg │ │ ├── qrcode.svg │ │ ├── question.svg │ │ ├── quidditch.svg │ │ ├── quote-left.svg │ │ ├── quote-right.svg │ │ ├── r.svg │ │ ├── radiation.svg │ │ ├── rainbow.svg │ │ ├── receipt.svg │ │ ├── record-vinyl.svg │ │ ├── rectangle-ad.svg │ │ ├── rectangle-list.svg │ │ ├── rectangle-xmark.svg │ │ ├── recycle.svg │ │ ├── registered.svg │ │ ├── repeat.svg │ │ ├── reply-all.svg │ │ ├── reply.svg │ │ ├── republican.svg │ │ ├── restroom.svg │ │ ├── retweet.svg │ │ ├── ribbon.svg │ │ ├── right-from-bracket.svg │ │ ├── right-left.svg │ │ ├── right-long.svg │ │ ├── right-to-bracket.svg │ │ ├── ring.svg │ │ ├── road.svg │ │ ├── robot.svg │ │ ├── rocket.svg │ │ ├── rotate-left.svg │ │ ├── rotate.svg │ │ ├── route.svg │ │ ├── rss.svg │ │ ├── ruble-sign.svg │ │ ├── ruler-combined.svg │ │ ├── ruler-horizontal.svg │ │ ├── ruler-vertical.svg │ │ ├── ruler.svg │ │ ├── rupee-sign.svg │ │ ├── rupiah-sign.svg │ │ ├── s.svg │ │ ├── sailboat.svg │ │ ├── satellite-dish.svg │ │ ├── satellite.svg │ │ ├── scale-balanced.svg │ │ ├── scale-unbalanced-flip.svg │ │ ├── scale-unbalanced.svg │ │ ├── school.svg │ │ ├── scissors.svg │ │ ├── screwdriver-wrench.svg │ │ ├── screwdriver.svg │ │ ├── scroll-torah.svg │ │ ├── scroll.svg │ │ ├── sd-card.svg │ │ ├── section.svg │ │ ├── seedling.svg │ │ ├── server.svg │ │ ├── shapes.svg │ │ ├── share-from-square.svg │ │ ├── share-nodes.svg │ │ ├── share.svg │ │ ├── shekel-sign.svg │ │ ├── shield-blank.svg │ │ ├── shield-virus.svg │ │ ├── ship.svg │ │ ├── shirt.svg │ │ ├── shoe-prints.svg │ │ ├── shop-slash.svg │ │ ├── shop.svg │ │ ├── shower.svg │ │ ├── shuffle.svg │ │ ├── shuttle-space.svg │ │ ├── sign-hanging.svg │ │ ├── signal.svg │ │ ├── signature.svg │ │ ├── signs-post.svg │ │ ├── sim-card.svg │ │ ├── sink.svg │ │ ├── sitemap.svg │ │ ├── skull-crossbones.svg │ │ ├── skull.svg │ │ ├── slash.svg │ │ ├── sleigh.svg │ │ ├── sliders.svg │ │ ├── smog.svg │ │ ├── smoking.svg │ │ ├── snowflake.svg │ │ ├── snowman.svg │ │ ├── snowplow.svg │ │ ├── soap.svg │ │ ├── socks.svg │ │ ├── solar-panel.svg │ │ ├── sort-down.svg │ │ ├── sort-up.svg │ │ ├── sort.svg │ │ ├── spa.svg │ │ ├── spaghetti-monster-flying.svg │ │ ├── spell-check.svg │ │ ├── spider.svg │ │ ├── spinner.svg │ │ ├── splotch.svg │ │ ├── spoon.svg │ │ ├── spray-can-sparkles.svg │ │ ├── spray-can.svg │ │ ├── square-caret-down.svg │ │ ├── square-caret-left.svg │ │ ├── square-caret-right.svg │ │ ├── square-caret-up.svg │ │ ├── square-check.svg │ │ ├── square-envelope.svg │ │ ├── square-full.svg │ │ ├── square-h.svg │ │ ├── square-minus.svg │ │ ├── square-parking.svg │ │ ├── square-pen.svg │ │ ├── square-phone-flip.svg │ │ ├── square-phone.svg │ │ ├── square-plus.svg │ │ ├── square-poll-horizontal.svg │ │ ├── square-poll-vertical.svg │ │ ├── square-root-variable.svg │ │ ├── square-rss.svg │ │ ├── square-share-nodes.svg │ │ ├── square-up-right.svg │ │ ├── square.svg │ │ ├── stairs.svg │ │ ├── stamp.svg │ │ ├── star-and-crescent.svg │ │ ├── star-half-stroke.svg │ │ ├── star-half.svg │ │ ├── star-of-david.svg │ │ ├── star-of-life.svg │ │ ├── star.svg │ │ ├── sterling-sign.svg │ │ ├── stethoscope.svg │ │ ├── stop.svg │ │ ├── stopwatch-20.svg │ │ ├── stopwatch.svg │ │ ├── store-slash.svg │ │ ├── store.svg │ │ ├── street-view.svg │ │ ├── strikethrough.svg │ │ ├── stroopwafel.svg │ │ ├── subscript.svg │ │ ├── suitcase-medical.svg │ │ ├── suitcase-rolling.svg │ │ ├── suitcase.svg │ │ ├── sun.svg │ │ ├── superscript.svg │ │ ├── swatchbook.svg │ │ ├── synagogue.svg │ │ ├── syringe.svg │ │ ├── t.svg │ │ ├── table-cells-large.svg │ │ ├── table-cells.svg │ │ ├── table-columns.svg │ │ ├── table-list.svg │ │ ├── table-tennis-paddle-ball.svg │ │ ├── table.svg │ │ ├── tablet-button.svg │ │ ├── tablet-screen-button.svg │ │ ├── tablets.svg │ │ ├── tachograph-digital.svg │ │ ├── tag.svg │ │ ├── tags.svg │ │ ├── tape.svg │ │ ├── taxi.svg │ │ ├── teeth-open.svg │ │ ├── teeth.svg │ │ ├── temperature-empty.svg │ │ ├── temperature-full.svg │ │ ├── temperature-half.svg │ │ ├── temperature-high.svg │ │ ├── temperature-low.svg │ │ ├── temperature-quarter.svg │ │ ├── temperature-three-quarters.svg │ │ ├── tenge-sign.svg │ │ ├── terminal.svg │ │ ├── text-height.svg │ │ ├── text-slash.svg │ │ ├── text-width.svg │ │ ├── thermometer.svg │ │ ├── thumbs-down.svg │ │ ├── thumbs-up.svg │ │ ├── thumbtack.svg │ │ ├── ticket-simple.svg │ │ ├── timeline.svg │ │ ├── toggle-off.svg │ │ ├── toggle-on.svg │ │ ├── toilet-paper-slash.svg │ │ ├── toilet-paper.svg │ │ ├── toilet.svg │ │ ├── toolbox.svg │ │ ├── tooth.svg │ │ ├── torii-gate.svg │ │ ├── tower-broadcast.svg │ │ ├── tractor.svg │ │ ├── trademark.svg │ │ ├── traffic-light.svg │ │ ├── trailer.svg │ │ ├── train-subway.svg │ │ ├── train-tram.svg │ │ ├── train.svg │ │ ├── transgender.svg │ │ ├── trash-arrow-up.svg │ │ ├── trash-can-arrow-up.svg │ │ ├── trash-can.svg │ │ ├── trash.svg │ │ ├── tree.svg │ │ ├── triangle-exclamation.svg │ │ ├── trophy.svg │ │ ├── truck-fast.svg │ │ ├── truck-medical.svg │ │ ├── truck-monster.svg │ │ ├── truck-moving.svg │ │ ├── truck-pickup.svg │ │ ├── truck-ramp-box.svg │ │ ├── truck.svg │ │ ├── tty.svg │ │ ├── turkish-lira-sign.svg │ │ ├── turn-down.svg │ │ ├── turn-up.svg │ │ ├── tv.svg │ │ ├── u.svg │ │ ├── umbrella-beach.svg │ │ ├── umbrella.svg │ │ ├── underline.svg │ │ ├── universal-access.svg │ │ ├── unlock-keyhole.svg │ │ ├── unlock.svg │ │ ├── up-down-left-right.svg │ │ ├── up-down.svg │ │ ├── up-long.svg │ │ ├── up-right-and-down-left-from-center.svg │ │ ├── up-right-from-square.svg │ │ ├── upload.svg │ │ ├── user-astronaut.svg │ │ ├── user-check.svg │ │ ├── user-clock.svg │ │ ├── user-doctor.svg │ │ ├── user-gear.svg │ │ ├── user-graduate.svg │ │ ├── user-group.svg │ │ ├── user-injured.svg │ │ ├── user-large-slash.svg │ │ ├── user-large.svg │ │ ├── user-lock.svg │ │ ├── user-minus.svg │ │ ├── user-ninja.svg │ │ ├── user-nurse.svg │ │ ├── user-pen.svg │ │ ├── user-plus.svg │ │ ├── user-secret.svg │ │ ├── user-shield.svg │ │ ├── user-slash.svg │ │ ├── user-tag.svg │ │ ├── user-tie.svg │ │ ├── user-xmark.svg │ │ ├── user.svg │ │ ├── users-gear.svg │ │ ├── users-slash.svg │ │ ├── users.svg │ │ ├── utensils.svg │ │ ├── v.svg │ │ ├── van-shuttle.svg │ │ ├── vault.svg │ │ ├── vector-square.svg │ │ ├── venus-double.svg │ │ ├── venus-mars.svg │ │ ├── venus.svg │ │ ├── vest-patches.svg │ │ ├── vest.svg │ │ ├── vial.svg │ │ ├── vials.svg │ │ ├── video-slash.svg │ │ ├── video.svg │ │ ├── vihara.svg │ │ ├── virus-slash.svg │ │ ├── virus.svg │ │ ├── viruses.svg │ │ ├── voicemail.svg │ │ ├── volleyball.svg │ │ ├── volume-high.svg │ │ ├── volume-low.svg │ │ ├── volume-off.svg │ │ ├── volume-xmark.svg │ │ ├── vr-cardboard.svg │ │ ├── w.svg │ │ ├── wallet.svg │ │ ├── wand-magic.svg │ │ ├── warehouse.svg │ │ ├── water-ladder.svg │ │ ├── water.svg │ │ ├── wave-square.svg │ │ ├── weight-hanging.svg │ │ ├── weight-scale.svg │ │ ├── wheelchair.svg │ │ ├── whiskey-glass.svg │ │ ├── wifi.svg │ │ ├── wind.svg │ │ ├── window-maximize.svg │ │ ├── window-minimize.svg │ │ ├── window-restore.svg │ │ ├── wine-bottle.svg │ │ ├── wine-glass-empty.svg │ │ ├── wine-glass.svg │ │ ├── won-sign.svg │ │ ├── wrench.svg │ │ ├── x-ray.svg │ │ ├── x.svg │ │ ├── xmark.svg │ │ ├── y.svg │ │ ├── yen-sign.svg │ │ ├── yin-yang.svg │ │ └── z.svg └── webfonts │ ├── fa-brands-400.ttf │ ├── fa-brands-400.woff2 │ ├── fa-regular-400.ttf │ ├── fa-regular-400.woff2 │ ├── fa-solid-900.ttf │ └── fa-solid-900.woff2 ├── js ├── BootstrapAlerts.js ├── DateFunctions.js ├── DatePicker.js ├── UserLogin.js ├── UserRegistration.js ├── UsersToCategory.js └── site.js └── lib ├── bootstrap ├── LICENSE └── dist │ ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map │ └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ └── bootstrap.min.js.map ├── jquery-ui-1.12.1.custom ├── AUTHORS.txt ├── LICENSE.txt ├── external │ └── jquery │ │ └── jquery.js ├── images │ ├── ui-icons_444444_256x240.png │ ├── ui-icons_555555_256x240.png │ ├── ui-icons_777620_256x240.png │ ├── ui-icons_777777_256x240.png │ ├── ui-icons_cc0000_256x240.png │ └── ui-icons_ffffff_256x240.png ├── index.html ├── jquery-ui.css ├── jquery-ui.js ├── jquery-ui.min.css ├── jquery-ui.min.js ├── jquery-ui.structure.css ├── jquery-ui.structure.min.css ├── jquery-ui.theme.css ├── jquery-ui.theme.min.css └── package.json ├── jquery-validation-unobtrusive ├── LICENSE.txt ├── jquery.validate.unobtrusive.js └── jquery.validate.unobtrusive.min.js ├── jquery-validation ├── LICENSE.md └── dist │ ├── additional-methods.js │ ├── additional-methods.min.js │ ├── jquery.validate.js │ └── jquery.validate.min.js └── jquery ├── LICENSE.txt └── dist ├── jquery.js ├── jquery.min.js └── jquery.min.map /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.vs/TechTreeMVCWebApplication/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/.vs/TechTreeMVCWebApplication/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/TechTreeMVCWebApplication/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/.vs/TechTreeMVCWebApplication/v16/.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TechTreeMVCWebApplication 2 | This code is part of a course on how to build an Asp.Net Core MVC web application on .NET 5. 3 | Please click on this link to view the videos for the free course, https://www.youtube.com/watch?v=D7R_ToqDKHg&list=PL4LFuHwItvKZ6Mz5W5wzD9uo3w6tNChhX 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Models/UserModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace TechTreeMVCWebApplication.Areas.Admin.Models 7 | { 8 | public class UserModel 9 | { 10 | public string Id { get; set; } 11 | public string UserName { get; set; } 12 | public string FirstName { get; set; } 13 | public string LastName { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Models/UsersCategoryListModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace TechTreeMVCWebApplication.Areas.Admin.Models 7 | { 8 | public class UsersCategoryListModel 9 | { 10 | public int CategoryId { get; set; } 11 | public ICollection Users { get; set; } 12 | public ICollection UsersSelected { get; set; } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Views/Shared/_CreateButtonPartial.cshtml: -------------------------------------------------------------------------------- 1 | @model int 2 | 3 | @{ 4 | if (Model == 0) 5 | { 6 | Create New 7 | } 8 | else 9 | { 10 | Create New 11 | } 12 | } -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Views/Shared/_RUDButtonsPartial.cshtml: -------------------------------------------------------------------------------- 1 | @model int 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TechTreeMVCWebApplication 2 | @using TechTreeMVCWebApplication.Models 3 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Data/IDataFunctions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using TechTreeMVCWebApplication.Entities; 6 | 7 | namespace TechTreeMVCWebApplication.Data 8 | { 9 | public interface IDataFunctions 10 | { 11 | Task UpdateUserCategoryEntityAsync(List userCategoryItemsToDelete, List userCategoryItemsToAdd); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Entities/UserCategory.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace TechTreeMVCWebApplication.Entities 7 | { 8 | public class UserCategory 9 | { 10 | public int Id { get; set; } 11 | 12 | public string UserId { get; set; } 13 | 14 | public int CategoryId { get; set; } 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Interfaces/IPrimaryProperties.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace TechTreeMVCWebApplication.Interfaces 7 | { 8 | public interface IPrimaryProperties 9 | { 10 | int Id { get; set; } 11 | string Title { get; set; } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Models/CategoriesToUserModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using TechTreeMVCWebApplication.Entities; 6 | 7 | namespace TechTreeMVCWebApplication.Models 8 | { 9 | public class CategoriesToUserModel 10 | { 11 | public string UserId { get; set; } 12 | public ICollection Categories { get; set; } 13 | public ICollection CategoriesSelected { get; set; } 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Models/CategoryDetailsModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using TechTreeMVCWebApplication.Entities; 6 | 7 | namespace TechTreeMVCWebApplication.Models 8 | { 9 | public class CategoryDetailsModel 10 | { 11 | public IEnumerable GroupedCategoryItemsByCategoryModels { get; set; } 12 | public IEnumerable Categories { get; set; } 13 | 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Models/CategoryItemDetailsModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | 6 | namespace TechTreeMVCWebApplication.Models 7 | { 8 | public class CategoryItemDetailsModel 9 | { 10 | public int CategoryId { get; set; } 11 | public string CategoryTitle { get; set; } 12 | public int CategoryItemId { get; set; } 13 | public string CategoryItemTitle { get; set; } 14 | public string CategoryItemDescription { get; set; } 15 | public string MediaImagePath { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace TechTreeMVCWebApplication.Models 4 | { 5 | public class ErrorViewModel 6 | { 7 | public string RequestId { get; set; } 8 | 9 | public bool ShowRequestId => !string.IsNullOrEmpty(RequestId); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Models/GroupedCategoryItemsByCategoryModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using TechTreeMVCWebApplication.Entities; 6 | 7 | namespace TechTreeMVCWebApplication.Models 8 | { 9 | public class GroupedCategoryItemsByCategoryModel 10 | { 11 | public int Id { get; set; } 12 | public string Title { get; set; } 13 | public IGrouping Items { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql", 5 | "connectionId": "DefaultConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "type": "mssql.local", 5 | "connectionId": "DefaultConnection" 6 | } 7 | } 8 | } -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Properties/serviceDependencies.local.json.user: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "mssql1": { 4 | "restored": true, 5 | "restoreTime": "2021-04-08T07:41:42.4608091Z" 6 | } 7 | }, 8 | "parameters": {} 9 | } -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/ScaffoldingReadMe.txt: -------------------------------------------------------------------------------- 1 | Support for ASP.NET Core Identity was added to your project. 2 | 3 | For setup and configuration information, see https://go.microsoft.com/fwlink/?linkid=2116645. 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/SqlScripts/MediaTypes.sql: -------------------------------------------------------------------------------- 1 | USE [TechTree] 2 | GO 3 | 4 | --MediaType 5 | INSERT INTO [dbo].[MediaType] 6 | ([Title] 7 | ,[ThumbnailImagePath]) 8 | VALUES 9 | ('Article', 10 | '/images/ArticleImage.jpeg') 11 | GO 12 | INSERT INTO [dbo].[MediaType] 13 | ([Title] 14 | ,[ThumbnailImagePath]) 15 | VALUES 16 | ('Video', 17 | '/images/VideoImage.jpeg') -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Privacy Policy"; 3 | } 4 |

@ViewData["Title"]

5 | 6 |

Use this page to detail your site's privacy policy.

7 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/Shared/_AuthScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/Shared/_DateScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using TechTreeMVCWebApplication 2 | @using TechTreeMVCWebApplication.Models 3 | @using TechTreeMVCWebApplication.Entities 4 | @using TechTreeMVCWebApplication.Comparers 5 | 6 | @addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers 7 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "ConnectionStrings": { 3 | "DefaultConnection": "Server=GAVINLONSPC;Database=TechTree;Trusted_Connection=True;MultipleActiveResultSets=true" 4 | }, 5 | "Logging": { 6 | "LogLevel": { 7 | "Default": "Information", 8 | "Microsoft": "Warning", 9 | "Microsoft.Hosting.Lifetime": "Information" 10 | } 11 | }, 12 | "AllowedHosts": "*" 13 | } 14 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/AdvancedCSharp.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/AdvancedCSharp.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/ArticleImage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/ArticleImage.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/AzureCloud.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/AzureCloud.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/CsharpBeginners.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/CsharpBeginners.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/FullStackDev.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/FullStackDev.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/HeroImage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/HeroImage.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/JavaScriptBeginners.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/JavaScriptBeginners.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/Mobile.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/Mobile.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/NodeJS.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/NodeJS.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/ResponsiveWebDesign.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/ResponsiveWebDesign.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/SqlServerBeginners.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/SqlServerBeginners.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/TechTreeLogo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/TechTreeLogo.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/Images/VideoImage.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/Images/VideoImage.jpeg -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/favicon.ico -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/attribution.js: -------------------------------------------------------------------------------- 1 | console.log(`Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 2 | License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 3 | `) -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/css/regular.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 6 Free'; 7 | font-style: normal; 8 | font-weight: 400; 9 | font-display: block; 10 | src: url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.ttf") format("truetype"); } 11 | 12 | .far, 13 | .fa-regular { 14 | font-family: 'Font Awesome 6 Free'; 15 | font-weight: 400; } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/css/regular.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:400;font-display:block;src:url(../webfonts/fa-regular-400.woff2) format("woff2"),url(../webfonts/fa-regular-400.ttf) format("truetype")}.fa-regular,.far{font-family:"Font Awesome 6 Free";font-weight:400} -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/css/solid.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face { 6 | font-family: 'Font Awesome 6 Free'; 7 | font-style: normal; 8 | font-weight: 900; 9 | font-display: block; 10 | src: url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.ttf") format("truetype"); } 11 | 12 | .fas, 13 | .fa-solid { 14 | font-family: 'Font Awesome 6 Free'; 15 | font-weight: 900; } 16 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/css/solid.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | @font-face{font-family:"Font Awesome 6 Free";font-style:normal;font-weight:900;font-display:block;src:url(../webfonts/fa-solid-900.woff2) format("woff2"),url(../webfonts/fa-solid-900.ttf) format("truetype")}.fa-solid,.fas{font-family:"Font Awesome 6 Free";font-weight:900} -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/_fixed-width.less: -------------------------------------------------------------------------------- 1 | // fixed-width icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-fw { 5 | text-align: center; 6 | width: @fa-fw-width; 7 | } 8 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/_icons.less: -------------------------------------------------------------------------------- 1 | // specific icon class definition 2 | // ------------------------- 3 | 4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 5 | readers do not read off random characters that represent icons */ 6 | 7 | each(.fa-icons(), { 8 | .@{fa-css-prefix}-@{key}::before { content: @value; } 9 | }); 10 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/_list.less: -------------------------------------------------------------------------------- 1 | // icons in a list 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: ~'var(--@{fa-css-prefix}-li-margin, @{fa-li-margin})'; 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .@{fa-css-prefix}-li { 13 | left: calc(~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})' * -1); 14 | position: absolute; 15 | text-align: center; 16 | width: ~'var(--@{fa-css-prefix}-li-width, @{fa-li-width})'; 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/_screen-reader.less: -------------------------------------------------------------------------------- 1 | // screen-reader utilities 2 | // ------------------------- 3 | 4 | // only display content to screen readers 5 | .sr-only, 6 | .fa-sr-only { 7 | .fa-sr-only(); 8 | } 9 | 10 | // use in conjunction with .sr-only to only display content when it's focused 11 | .sr-only-focusable, 12 | .fa-sr-only-focusable { 13 | .fa-sr-only-focusable(); 14 | } 15 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/_sizing.less: -------------------------------------------------------------------------------- 1 | // sizing icons 2 | // ------------------------- 3 | 4 | // literal magnification scale 5 | .sizes-literal(@factor) when (@factor > 0) { 6 | .sizes-literal((@factor - 1)); 7 | 8 | .@{fa-css-prefix}-@{factor}x { 9 | font-size: (@factor * 1em); 10 | } 11 | } 12 | .sizes-literal(10); 13 | 14 | // step-based scale (with alignment) 15 | each(.fa-sizes(), { 16 | .@{fa-css-prefix}-@{key} { 17 | .fa-size(@value); 18 | } 19 | }); 20 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/less/v4-shims.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | // V4 shims compile (Web Fonts-based) 6 | // ------------------------- 7 | 8 | @import '_variables.less'; 9 | @import '_shims.less'; 10 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // fixed-width icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-fw { 5 | text-align: center; 6 | width: $fa-fw-width; 7 | } 8 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/_icons.scss: -------------------------------------------------------------------------------- 1 | // specific icon class definition 2 | // ------------------------- 3 | 4 | /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen 5 | readers do not read off random characters that represent icons */ 6 | 7 | @each $name, $icon in $fa-icons { 8 | .#{$fa-css-prefix}-#{$name}::before { content: fa-content($icon); } 9 | } 10 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // icons in a list 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | list-style-type: none; 6 | margin-left: var(--#{$fa-css-prefix}-li-margin, #{$fa-li-margin}); 7 | padding-left: 0; 8 | 9 | > li { position: relative; } 10 | } 11 | 12 | .#{$fa-css-prefix}-li { 13 | left: calc(var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}) * -1); 14 | position: absolute; 15 | text-align: center; 16 | width: var(--#{$fa-css-prefix}-li-width, #{$fa-li-width}); 17 | line-height: inherit; 18 | } 19 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // screen-reader utilities 2 | // ------------------------- 3 | 4 | // only display content to screen readers 5 | .sr-only, 6 | .fa-sr-only { 7 | @include fa-sr-only; 8 | } 9 | 10 | // use in conjunction with .sr-only to only display content when it's focused 11 | .sr-only-focusable, 12 | .fa-sr-only-focusable { 13 | @include fa-sr-only-focusable; 14 | } 15 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/_sizing.scss: -------------------------------------------------------------------------------- 1 | // sizing icons 2 | // ------------------------- 3 | 4 | // literal magnification scale 5 | @for $i from 1 through 10 { 6 | .#{$fa-css-prefix}-#{$i}x { 7 | font-size: $i * 1em; 8 | } 9 | } 10 | 11 | // step-based scale (with alignment) 12 | @each $size, $value in $fa-sizes { 13 | .#{$fa-css-prefix}-#{$size} { 14 | @include fa-size($value); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/scss/v4-shims.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome Free 6.0.0-beta2 by @fontawesome - https://fontawesome.com 3 | * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) 4 | */ 5 | // V4 shims compile (Web Fonts-based) 6 | // ------------------------- 7 | 8 | @import 'functions'; 9 | @import 'variables'; 10 | @import 'shims'; 11 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/adn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/android.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/angular.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/artstation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/atlassian.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/autoprefixer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/bandcamp.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/bitbucket.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/black-tie.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/bluetooth-b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/bluetooth.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/buysellads.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/cloudsmith.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/creative-commons-nd.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/css3-alt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/css3.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/cuttlefish.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/dashcube.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/deezer.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/deviantart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/digg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/digital-ocean.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/discourse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/dochub.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/dropbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/dyalog.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/elementor.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/envira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/ethereum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/facebook-f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/facebook-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/facebook.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/firstdraft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/flickr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/flipboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/fulcrum.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/gg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/gitter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/google-drive.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/google-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/google.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/gratipay.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/hacker-news-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/hacker-news.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/hotjar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/houzz.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/html5.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/instalod.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/jira.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/kaggle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/kickstarter-k.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/korvue.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/linkedin-in.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/magento.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/markdown.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/maxcdn.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/microsoft.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/mix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/modx.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/monero.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/npm.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/openid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/patreon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/pied-piper-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/product-hunt.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/rockrms.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/servicestack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/sistrix.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/sitrox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/sourcetree.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/stack-exchange.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/stack-overflow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/strava.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/stripe-s.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/think-peaks.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/tiktok.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/twitch.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/uikit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/unity.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/unsplash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/viacoin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/vuejs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/windows.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/wirsindhandwerk.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/y-combinator.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/yahoo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/yandex-international.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/brands/yandex.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/circle-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/circle-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/regular/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/0.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/1.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/6.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/7.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/a.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/angle-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/angle-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/angle-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/angle-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/apple-whole.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/arrow-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/arrow-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/arrow-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/arrow-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/b.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/backward-step.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/backward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/ban.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/bars.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/battery-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/battery-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/battery-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/battery-quarter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/battery-three-quarters.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/bookmark.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/border-all.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/box.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/bread-slice.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/briefcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/brush.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/c.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/calendar.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/caret-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/caret-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/caret-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/caret-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/chalkboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/check.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/cheese.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/chevron-right.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/chevron-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-chevron-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-half-stroke.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle-user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/circle.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/clapperboard.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/clock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/clone.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/cloud.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/code-commit.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/comment.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/computer-mouse.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/copy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/cross.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/d.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/desktop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/dice-one.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/dice-two.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/divide.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/door-closed.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/down-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/droplet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/e.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/egg.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/eject.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/ellipsis-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/ellipsis.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/equals.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/exclamation.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/f.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/face-meh-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/filter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/fire-flame-curved.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/folder-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/folder-open.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/folder.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/forward-step.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/forward.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/franc-sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/gem.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/genderless.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/greater-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/grip-lines-vertical.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/grip-lines.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/h.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/heart-crack.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/heart.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/hockey-puck.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/i.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/icicles.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/inbox.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/industry.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/italic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/j.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/l.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/laptop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/left-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/less-than.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/location-arrow.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/location-dot.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/location-pin.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/lock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/map.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/martini-glass-empty.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/martini-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/message.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/mobile-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/mobile-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/moon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/mountain.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/n.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/neuter.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/note-sticky.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/o.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/p.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/pallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/paragraph.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/pause.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/pen-fancy.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/pen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/play.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/plus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/reply.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/right-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/screwdriver.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/scroll.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/sd-card.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/seedling.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/share.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/shield-blank.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/sign-hanging.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/slash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/sort-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/sort-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/square-full.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/square-minus.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/square-parking.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/stairs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/star-half.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/star.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/stop.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/suitcase.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/t.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/table-cells-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/table-columns.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/table-list.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/table.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/tablet-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/tablet-screen-button.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/tenge-sign.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/ticket-simple.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/toggle-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/toggle-on.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/trash.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/turn-down.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/turn-up.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/tv.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/u.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/unlock.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/up-long.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/user-large.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/user.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/v.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/video.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/volume-off.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/wallet.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/wand-magic.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/wave-square.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/whiskey-glass.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/window-maximize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/window-minimize.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/window-restore.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/y.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/svgs/solid/z.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/fontawesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/js/DateFunctions.js: -------------------------------------------------------------------------------- 1 | function AddSubtractMonths(date, numMonths) { 2 | var month = date.getMonth(); 3 | 4 | var milliSeconds = new Date(date).setMonth(month + numMonths); 5 | 6 | return new Date(milliSeconds); 7 | 8 | } -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/js/DatePicker.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | 3 | function WireUpDatePicker() { 4 | 5 | const addMonths = 2; 6 | var currDate = new Date(); 7 | 8 | $('.datepicker').datepicker( 9 | { 10 | dateFormat: 'yy-mm-dd', 11 | minDate: currDate, 12 | maxDate: AddSubtractMonths(currDate, addMonths) 13 | 14 | } 15 | ); 16 | 17 | } 18 | 19 | WireUpDatePicker(); 20 | 21 | 22 | }); 23 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification 2 | // for details on configuring this project to bundle and minify static web assets. 3 | 4 | // Write your JavaScript code. 5 | -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_444444_256x240.png -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_555555_256x240.png -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_777620_256x240.png -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_777777_256x240.png -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_cc0000_256x240.png -------------------------------------------------------------------------------- /TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GavinLonDigital/TechTreeMVCWebApplication/c0887bbf83bde2a561eb56d17b38ca9780581638/TechTreeMVCWebApplication/wwwroot/lib/jquery-ui-1.12.1.custom/images/ui-icons_ffffff_256x240.png --------------------------------------------------------------------------------