gitextract_8ynppmrn/ ├── .agent-tools/ │ ├── build-agent.sh │ ├── build-tools.sh │ └── readme.md ├── .devcontainer/ │ ├── Dockerfile │ ├── devcontainer.json │ └── library-scripts/ │ ├── common-debian.sh │ └── start.sh ├── .gitignore ├── .vscode/ │ ├── launch.json │ └── tasks.json ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SECURITY.md ├── Tailspin.SpaceGame.Web/ │ ├── Controllers/ │ │ └── HomeController.cs │ ├── IDocumentDBRepository.cs │ ├── LocalDocumentDBRepository.cs │ ├── Models/ │ │ ├── ErrorViewModel.cs │ │ ├── LeaderboardViewModel.cs │ │ ├── Model.cs │ │ ├── Profile.cs │ │ ├── ProfileViewModel.cs │ │ └── Score.cs │ ├── Program.cs │ ├── SampleData/ │ │ ├── profiles.json │ │ └── scores.json │ ├── Startup.cs │ ├── Tailspin.SpaceGame.Web.csproj │ ├── Views/ │ │ ├── Home/ │ │ │ ├── Index.cshtml │ │ │ ├── Privacy.cshtml │ │ │ └── Profile.cshtml │ │ ├── Shared/ │ │ │ ├── Error.cshtml │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot/ │ ├── css/ │ │ ├── site.css │ │ └── site.scss │ ├── js/ │ │ └── site.js │ └── lib/ │ ├── bootstrap/ │ │ ├── .bower.json │ │ ├── LICENSE │ │ └── dist/ │ │ ├── css/ │ │ │ ├── bootstrap-theme.css │ │ │ └── bootstrap.css │ │ └── js/ │ │ ├── bootstrap.js │ │ └── npm.js │ ├── jquery/ │ │ ├── .bower.json │ │ ├── LICENSE.txt │ │ └── dist/ │ │ └── jquery.js │ ├── jquery-validation/ │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ └── dist/ │ │ ├── additional-methods.js │ │ └── jquery.validate.js │ └── jquery-validation-unobtrusive/ │ ├── .bower.json │ ├── LICENSE.txt │ └── jquery.validate.unobtrusive.js ├── Tailspin.SpaceGame.Web.sln ├── azure-pipelines.yml ├── gulpfile.js └── package.json