Skip to content

Commit

Permalink
deploy: dd6a080
Browse files Browse the repository at this point in the history
  • Loading branch information
BadRyuner committed Sep 11, 2024
0 parents commit 8b6252d
Show file tree
Hide file tree
Showing 175 changed files with 1,139 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* -text
Empty file added .nojekyll
Empty file.
26 changes: 26 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<base href="/PLCSE/" />
<link href="css/app.css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet" />
</head>

<body>
<div id="app">Loading...</div>

<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="" class="reload">Reload</a>
<a class="dismiss">🗙</a>
</div>
<script src="_framework/blazor.webassembly.js" autostart="false"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="decode.min.js"></script>
<script src="brotliloader.min.js"></script>
</body>

</html>
399 changes: 399 additions & 0 deletions Data/missions.txt

Large diffs are not rendered by default.

Binary file added Icons/0.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icons/1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icons/2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icons/3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icons/4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Icons/5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
254 changes: 254 additions & 0 deletions _content/BlazorDownloadFile/BlazorDownloadFileScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,254 @@
if (typeof _blazorDownloadFileBuffers === 'undefined') {
var _blazorDownloadFileBuffers = new Array();
}
else {
_blazorDownloadFileBuffers = new Array();
}
function _blazorDownloadFileBuffersPush(bytes) {
_blazorDownloadFileBuffers.push(bytes);
}
function _blazorDownloadFileClearBuffer() {
_blazorDownloadFileBuffers = new Array();
}
function _blazorDownloadFileAnyBuffer() {
return _blazorDownloadFileBuffers && _blazorDownloadFileBuffers.length;
}
function _blazorDownloadFileBuffersCount() {
return _blazorDownloadFileBuffers ? _blazorDownloadFileBuffers.length : 0;
}
// Convert a base64 string to a Uint8Array. This is needed to create a blob object from the base64 string.
// The code comes from: https://developer.mozilla.org/fr/docs/Web/API/WindowBase64/D%C3%A9coder_encoder_en_base64
function b64ToUint6(nChr) {
return nChr > 64 && nChr < 91 ? nChr - 65 : nChr > 96 && nChr < 123 ? nChr - 71 : nChr > 47 && nChr < 58 ? nChr + 4 : nChr === 43 ? 62 : nChr === 47 ? 63 : 0;
}
function base64DecToArr(sBase64, nBlocksSize) {
var
sB64Enc = sBase64.replace(/[^A-Za-z0-9\+\/]/g, ""),
nInLen = sB64Enc.length,
nOutLen = nBlocksSize ? Math.ceil((nInLen * 3 + 1 >> 2) / nBlocksSize) * nBlocksSize : nInLen * 3 + 1 >> 2,
taBytes = new Uint8Array(nOutLen);

for (var nMod3, nMod4, nUint24 = 0, nOutIdx = 0, nInIdx = 0; nInIdx < nInLen; nInIdx++) {
nMod4 = nInIdx & 3;
nUint24 |= b64ToUint6(sB64Enc.charCodeAt(nInIdx)) << 18 - 6 * nMod4;
if (nMod4 === 3 || nInLen - nInIdx === 1) {
for (nMod3 = 0; nMod3 < 3 && nOutIdx < nOutLen; nMod3++, nOutIdx++) {
taBytes[nOutIdx] = nUint24 >>> (16 >>> nMod3 & 24) & 255;
}
nUint24 = 0;
}
}
return taBytes;
}
function blazorDownloadFile(filename, contentType, content) {
try {
// Blazor marshall byte[] to a base64 string, so we first need to convert the string (content) to a Uint8Array to create the File
const data = base64DecToArr(content);
// Create the URL
const file = new File([data], filename, { type: contentType });
if (navigator.msSaveBlob) {
navigator.msSaveBlob(file, filenameStr);
}
else {
const exportUrl = URL.createObjectURL(file);
// Create the <a> element and click on it
const a = document.createElement("a");
document.body.appendChild(a); // Needed for Firefox
a.href = exportUrl;
a.download = filename;
a.target = "_self";
a.click();
// We don't need to keep the url, let's release the memory
URL.revokeObjectURL(exportUrl);
document.body.removeChild(a);
}
}
catch (error) {
return { Succeeded: false, ErrorName: error.name, ErrorMessage: error.message }
}
return { Succeeded: true, ErrorName: null, ErrorMessage: null }
}
function blazorDownloadFileFast(filename, contentType, content) {
try {
// Convert the parameters to actual JS types
const filenameStr = BINDING.conv_string(filename);
const contentTypeStr = BINDING.conv_string(contentType);
const contentArray = Blazor.platform.toUint8Array(content);
// Create the URL
const file = new File([contentArray], filenameStr, { type: contentTypeStr });
if (navigator.msSaveBlob) {
navigator.msSaveBlob(file, filenameStr);
}
else {
const exportUrl = URL.createObjectURL(file);
// Create the <a> element and click on it
const a = document.createElement('a'); // Needed for Firefox
document.body.appendChild(a);
a.href = exportUrl;
a.download = nameStr;
a.target = '_self';
a.click();
// We don't need to keep the url, let's release the memory
URL.revokeObjectURL(exportUrl);
document.body.removeChild(a);
}
}
catch (error) {
return { Succeeded: false, ErrorName: error.name, ErrorMessage: error.message }
}
return { Succeeded: true, ErrorName: null, ErrorMessage: null }
}
function _blazorDowloadFileBase64String(fileName, bytesBase64, contentType) {
try {
if (navigator.msSaveBlob) {
//Download document in Edge browser
var _blazorDownloadFileData = atob(bytesBase64);
var _blazorDownloadFileBytes = new Uint8Array(_blazorDownloadFileData.length);
for (var i = 0; i < _blazorDownloadFileData.length; i++) {
{
_blazorDownloadFileBytes[i] = _blazorDownloadFileData.charCodeAt(i);
}
}
_blazorDownloadFileData = null;
var _blazorDownloadFileBlob = new Blob([_blazorDownloadFileBytes.buffer], { type: contentType });
_blazorDownloadFileBytes = null;
navigator.msSaveBlob(_blazorDownloadFileBlob, fileName);
_blazorDownloadFileBlob = null;
}
else {
//Download document in other browser
var _blazorDownloadFileData = atob(bytesBase64);
var _blazorDownloadFileBytes = new Uint8Array(_blazorDownloadFileData.length);
for (var i = 0; i < _blazorDownloadFileData.length; i++) {
_blazorDownloadFileBytes[i] = _blazorDownloadFileData.charCodeAt(i);
}
_blazorDownloadFileData = null;
var _blazorDownloadFileBlob = new Blob([_blazorDownloadFileBytes.buffer], { type: contentType });
_blazorDownloadFileBytes = null;
var _blazorDownloadFileLink = document.createElement('a');
_blazorDownloadFileLink.download = fileName;
_blazorDownloadFileLink.style.display = 'none';
var _blazorDownloadFileObjectUrl = URL.createObjectURL(_blazorDownloadFileBlob);
_blazorDownloadFileLink.href = _blazorDownloadFileObjectUrl;
document.body.appendChild(_blazorDownloadFileLink); // Needed for Firefox
_blazorDownloadFileLink.click();
URL.revokeObjectURL(_blazorDownloadFileObjectUrl);
_blazorDownloadFileObjectUrl = null;
_blazorDownloadFileBlob = null;
document.body.removeChild(_blazorDownloadFileLink);
_blazorDownloadFileLink = null;
}
}
catch (error) {
return { Succeeded: false, ErrorName: error.name, ErrorMessage: error.message }
}
return { Succeeded: true, ErrorName: null, ErrorMessage: null }
}
function _blazorDowloadFileBase64StringPartitioned(fileName, contentType) {
try {
if (navigator.msSaveBlob) {
//Download document in Edge browser
var _blazorDownloadFileData = atob(_blazorDownloadFileBuffers.join(''));
_blazorDownloadFileBuffers = new Array();
var _blazorDownloadFileBytes = new Uint8Array(_blazorDownloadFileData.length);
for (var i = 0; i < _blazorDownloadFileData.length; i++) {
{
_blazorDownloadFileBytes[i] = _blazorDownloadFileData.charCodeAt(i);
}
}
_blazorDownloadFileData = null;
var _blazorDownloadFileBlob = new Blob([_blazorDownloadFileBytes.buffer], { type: contentType });
_blazorDownloadFileBytes = null;
navigator.msSaveBlob(_blazorDownloadFileBlob, fileName);
_blazorDownloadFileBlob = null;
}
else {
//Download document in other browser
var _blazorDownloadFileData = atob(_blazorDownloadFileBuffers.join(''));
_blazorDownloadFileBuffers = new Array();
var _blazorDownloadFileBytes = new Uint8Array(_blazorDownloadFileData.length);
for (var i = 0; i < _blazorDownloadFileData.length; i++) {
{
_blazorDownloadFileBytes[i] = _blazorDownloadFileData.charCodeAt(i);
}
}
_blazorDownloadFileData = null;
var _blazorDownloadFileBlob = new Blob([_blazorDownloadFileBytes.buffer], { type: contentType });
_blazorDownloadFileBytes = null;
var _blazorDownloadFileLink = document.createElement('a');
_blazorDownloadFileLink.download = fileName;
_blazorDownloadFileLink.style.display = 'none';
var _blazorDownloadFileObjectUrl = URL.createObjectURL(_blazorDownloadFileBlob);
_blazorDownloadFileLink.href = _blazorDownloadFileObjectUrl;
document.body.appendChild(_blazorDownloadFileLink); // Needed for Firefox
_blazorDownloadFileLink.click();
URL.revokeObjectURL(_blazorDownloadFileObjectUrl);
_blazorDownloadFileObjectUrl = null;
_blazorDownloadFileBlob = null;
document.body.removeChild(_blazorDownloadFileLink);
_blazorDownloadFileLink = null;
}
}
catch (error) {
return { Succeeded: false, ErrorName: error.name, ErrorMessage: error.message }
}
return { Succeeded: true, ErrorName: null, ErrorMessage: null }
}
function _blazorDowloadFileByteArrayPartitioned(fileName, contentType) {
try {
if (navigator.msSaveBlob) {
//Download document in Edge browser
var _blazorDownloadFileBufferParts = new Array();
var _isUint8Array = typeof _blazorDownloadFileBuffers[0] == Uint8Array;
for (var index = 0; index < _blazorDownloadFileBuffers.length; index++) {
//var _blazorDownloadFileData = _blazorDownloadFileBuffers[index];
if (_isUint8Array) {
_blazorDownloadFileBufferParts.push(_blazorDownloadFileBuffers[index]);
}
else {
_blazorDownloadFileBufferParts.push(new Uint8Array(_blazorDownloadFileBuffers[index]));
}
_blazorDownloadFileBuffers[index] = null;
}
_blazorDownloadFileBuffers = new Array();
var _blazorDownloadFileBlob = new Blob(_blazorDownloadFileBufferParts, { type: contentType });
_blazorDownloadFileBufferParts = null;
navigator.msSaveBlob(_blazorDownloadFileBlob, fileName);
_blazorDownloadFileBlob = null;
}
else {
//Download document in other browser
var _blazorDownloadFileBufferParts = new Array();
var _isUint8Array = typeof _blazorDownloadFileBuffers[0] == Uint8Array;
for (var index = 0; index < _blazorDownloadFileBuffers.length; index++) {
//var _blazorDownloadFileData = _blazorDownloadFileBuffers[index];
if (_isUint8Array) {
_blazorDownloadFileBufferParts.push(_blazorDownloadFileBuffers[index]);
}
else {
_blazorDownloadFileBufferParts.push(new Uint8Array(_blazorDownloadFileBuffers[index]));
}
_blazorDownloadFileBuffers[index] = null;
}
_blazorDownloadFileBuffers = new Array();
var _blazorDownloadFileBlob = new Blob(_blazorDownloadFileBufferParts, { type: contentType });
_blazorDownloadFileBufferParts = null;
var _blazorDownloadFileLink = document.createElement('a');
_blazorDownloadFileLink.download = fileName;
_blazorDownloadFileLink.style.display = 'none';
var _blazorDownloadFileObjectUrl = URL.createObjectURL(_blazorDownloadFileBlob);
_blazorDownloadFileLink.href = _blazorDownloadFileObjectUrl;
document.body.appendChild(_blazorDownloadFileLink); // Needed for Firefox
_blazorDownloadFileLink.click();
URL.revokeObjectURL(_blazorDownloadFileObjectUrl);
_blazorDownloadFileObjectUrl = null;
_blazorDownloadFileBlob = null;
document.body.removeChild(_blazorDownloadFileLink);
_blazorDownloadFileLink = null;
}
}
catch (error) {
return { Succeeded: false, ErrorName: error.name, ErrorMessage: error.message }
}
return { Succeeded: true, ErrorName: null, ErrorMessage: null }
}
7 changes: 7 additions & 0 deletions _content/MudBlazor/MudBlazor.min.css

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions _content/MudBlazor/MudBlazor.min.js

Large diffs are not rendered by default.

Binary file added _framework/BlazorDownloadFile.dll
Binary file not shown.
Binary file added _framework/BlazorDownloadFile.dll.br
Binary file not shown.
Binary file added _framework/BlazorDownloadFile.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.AspNetCore.Components.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Logging.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Options.dll.gz
Binary file not shown.
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.Extensions.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.WebAssembly.dll.gz
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll.br
Binary file not shown.
Binary file added _framework/Microsoft.JSInterop.dll.gz
Binary file not shown.
Binary file added _framework/MudBlazor.dll
Binary file not shown.
Binary file added _framework/MudBlazor.dll.br
Binary file not shown.
Binary file added _framework/MudBlazor.dll.gz
Binary file not shown.
Binary file added _framework/PLCSE.dll
Binary file not shown.
Binary file added _framework/PLCSE.dll.br
Binary file not shown.
Binary file added _framework/PLCSE.dll.gz
Binary file not shown.
Binary file added _framework/PLCSE.pdb.gz
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.Concurrent.dll.gz
Binary file not shown.
Binary file added _framework/System.Collections.dll
Binary file not shown.
Binary file added _framework/System.Collections.dll.br
Binary file not shown.
Binary file added _framework/System.Collections.dll.gz
Binary file not shown.
Binary file added _framework/System.ComponentModel.Annotations.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll.br
Binary file not shown.
Binary file added _framework/System.ComponentModel.dll.gz
Binary file not shown.
Binary file added _framework/System.Console.dll
Binary file not shown.
Binary file added _framework/System.Console.dll.br
Binary file not shown.
Binary file added _framework/System.Console.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.Expressions.dll.gz
Binary file not shown.
Binary file added _framework/System.Linq.dll
Binary file not shown.
Binary file added _framework/System.Linq.dll.br
Binary file not shown.
Binary file added _framework/System.Linq.dll.gz
Binary file not shown.
Binary file added _framework/System.Memory.dll
Binary file not shown.
Binary file added _framework/System.Memory.dll.br
Binary file not shown.
Binary file added _framework/System.Memory.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Http.dll
Binary file not shown.
Binary file added _framework/System.Net.Http.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Http.dll.gz
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll.br
Binary file not shown.
Binary file added _framework/System.Net.Primitives.dll.gz
Binary file not shown.
Binary file added _framework/System.ObjectModel.dll
Binary file not shown.
Binary file added _framework/System.ObjectModel.dll.br
Binary file not shown.
Binary file added _framework/System.ObjectModel.dll.gz
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll.br
Binary file not shown.
Binary file added _framework/System.Private.CoreLib.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll.br
Binary file not shown.
Binary file added _framework/System.Private.Uri.dll.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll.br
Binary file not shown.
Binary file added _framework/System.Runtime.Numerics.dll.gz
Binary file not shown.
Binary file added _framework/System.Runtime.dll
Binary file not shown.
Binary file added _framework/System.Runtime.dll.br
Binary file not shown.
Binary file added _framework/System.Runtime.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll.br
Binary file not shown.
Binary file added _framework/System.Text.Encodings.Web.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.Json.dll
Binary file not shown.
Binary file added _framework/System.Text.Json.dll.br
Binary file not shown.
Binary file added _framework/System.Text.Json.dll.gz
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll.br
Binary file not shown.
Binary file added _framework/System.Text.RegularExpressions.dll.gz
Binary file not shown.
Binary file added _framework/System.dll
Binary file not shown.
Binary file added _framework/System.dll.br
Binary file not shown.
Binary file added _framework/System.dll.gz
Binary file not shown.
69 changes: 69 additions & 0 deletions _framework/blazor.boot.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{
"cacheBootResources": true,
"config": [ ],
"debugBuild": false,
"entryAssembly": "PLCSE",
"icuDataMode": 0,
"linkerEnabled": true,
"resources": {
"assembly": {
"BlazorDownloadFile.dll": "sha256-cdomvQubo5VbXPxP+oCPJC4u\/Up\/YNn7qTeToyJkyJQ=",
"Microsoft.AspNetCore.Components.dll": "sha256-7fukJEVD8w6SWYL9vb6U041x1CnbzRUKd7OBwBcrslw=",
"Microsoft.AspNetCore.Components.Forms.dll": "sha256-Q0WfAaL4xETTlDPDiVgqRm3lLKRHbcUGKmkDYv\/\/P6M=",
"Microsoft.AspNetCore.Components.Web.dll": "sha256-pO1jaRqNABufE2s7wgiD3x9e4dFtzNGXIzWnZtsFBcY=",
"Microsoft.AspNetCore.Components.WebAssembly.dll": "sha256-BZZ8TCCSEFLOMF2PoRMyoSfT3j2tiCZI6IToAG35ZJM=",
"Microsoft.Extensions.Configuration.Abstractions.dll": "sha256-zhFtW4kE16TdrpPne9I1Cu9o0KYzrS50VE9MVSifJg4=",
"Microsoft.Extensions.Configuration.dll": "sha256-QPR+1IXNcA28b\/gXw3uZ8aRigHIZUJ1KWSH02kkCg7Q=",
"Microsoft.Extensions.Configuration.Json.dll": "sha256-fF3xaP+hT6R3GYUctLIY1ixaXQ8mrHzwWHHf2dKfueU=",
"Microsoft.Extensions.DependencyInjection.Abstractions.dll": "sha256-K18aP106psqYkGNSgLch7e7TUrnjFSe9Pb6a8EqA77E=",
"Microsoft.Extensions.DependencyInjection.dll": "sha256-pYDNELbgbO60zgvgH5SP8004wkA0+o\/KlQxFXl\/uS2A=",
"Microsoft.Extensions.Logging.Abstractions.dll": "sha256-Om2qcj\/iSifttyfjMN2oLoFYalRDrqy0nWjVDueYmOw=",
"Microsoft.Extensions.Logging.dll": "sha256-aj8Tk1BLrOE4y41oBvw\/VGDdmvACVEpGmiEDNrA7Hco=",
"Microsoft.Extensions.Options.dll": "sha256-1tB1TdOK1QaMSk7+PPe5sikuuMC9hs8bkujWqFMdAx4=",
"Microsoft.Extensions.Primitives.dll": "sha256-YColTWA58whC+8aBjv1O7HgsyYrbHTba601EkNDWAlo=",
"Microsoft.JSInterop.dll": "sha256-Pr6nRqV5PmsvDqEVmYzwosGBxlIzkr6lYhVrFl4OiJc=",
"Microsoft.JSInterop.WebAssembly.dll": "sha256-DI0RkZky47FtF3\/3VasOGjpMhrR+H3kb1cv\/2kzJoBQ=",
"MudBlazor.dll": "sha256-vRaFvyaAN352EL5iHaYJ5q1B7mB+PURccYq6G+dTPeY=",
"netstandard.dll": "sha256-r1\/ALp+NwpI5NIwKfgfWD0vBqQpRwcO+xXyr2He326w=",
"PLCSE.dll": "sha256-Zlu7d1faVUNp72gjapbblDBqTd+JGANrnt6S39unk34=",
"System.Collections.Concurrent.dll": "sha256-mDH\/9ogaVp2ca+ale3ne1tgV680zPayFVZUfgNfdqg8=",
"System.Collections.dll": "sha256-1NfEW9TQrx7jndvo5oph9hDj7iTlYHT\/8lAlNQVeiW8=",
"System.ComponentModel.Annotations.dll": "sha256-ypo2uNo4GtRS+mu7Sf63iwqbANYID7EzIwq0lEJ+86c=",
"System.ComponentModel.dll": "sha256-1YHMKIZdOSy6Gp2B1nGaJqBVUf6dzGrD92n7udIELko=",
"System.ComponentModel.Primitives.dll": "sha256-pd3w8Qhsy0Z9GgJVK0fNz7P8GKfwSpeTSgCBGuDeCrE=",
"System.ComponentModel.TypeConverter.dll": "sha256-ST58tbKCjD+qQ8ZqQtI1KLBm5deAqfON\/ihSzBrDYC8=",
"System.Console.dll": "sha256-xvQnVz6It\/Hfy9EkvlDTiCz2X29dmglnDGhPiV0eVng=",
"System.dll": "sha256-tF\/7S4yorlUfh1pRAt5N5PqjFd6vyCQGkUKbaWjMFsU=",
"System.Linq.dll": "sha256-MDVn\/Gsw4fCZU5FoLg8MmoU1Xr64HVw+9wI2WPg8ikA=",
"System.Linq.Expressions.dll": "sha256-o\/IXnvqbadZ8n4IiA7dNgzoHglhP8hjBOuYjniDmdi8=",
"System.Memory.dll": "sha256-fIGAbbOCfhLvppmb\/hxOokk2JE8WdwK8gHphYsVaa5o=",
"System.Net.Http.dll": "sha256-PprUs8NIJjDiF+fMwx+d9ErD0aIegdadCnDB5j1sr9Y=",
"System.Net.Primitives.dll": "sha256-6prOfmhHCEVgKHrJXI2Ie1mX1uzcxJJhY+q3MJJ0HVo=",
"System.ObjectModel.dll": "sha256-g76v7OrLuWhc8dtLZvj+E\/owq4wX53YwidXJ6SfcCPc=",
"System.Private.CoreLib.dll": "sha256-ngjSqd+vDJrHOgyKMSOabIqf6e4EhKVn\/jaAVcNORvI=",
"System.Private.Runtime.InteropServices.JavaScript.dll": "sha256-sqjOrLd\/jKbp7AvHf\/87JzWDlUxqIcwzeF0ezjEGdu4=",
"System.Private.Uri.dll": "sha256-ZqgIIsMt6DaTyuQYFE68EiwROt39ScgG9pzRrprqcDQ=",
"System.Runtime.CompilerServices.Unsafe.dll": "sha256-1NN4HGVS2d91hMZhvbZSDgEgHAMpmvXNzBUluyrhHXs=",
"System.Runtime.dll": "sha256-fuJ1vggf55TnNwjAeN2OrNMCyVGXALmq46jIETmVQxI=",
"System.Runtime.InteropServices.RuntimeInformation.dll": "sha256-DaE1OJlmdMDYmKZei87hRbN8BcppVz6GEy+z01PbkeQ=",
"System.Runtime.Numerics.dll": "sha256-GwVHROzPHCaSWtNB93zE0YNAvjX7ot4v7GES6\/JJ\/yk=",
"System.Text.Encodings.Web.dll": "sha256-5yUVLwIEkjqpAV50rVlKoA2nWizcKCMo+9lINS9vDUs=",
"System.Text.Json.dll": "sha256-XAk+MwieM\/WEI5Tc6QiIqzBDPnfYHmpy51hYqlewPro=",
"System.Text.RegularExpressions.dll": "sha256-OZ\/AWofuBpG5bIDGYUk4qYNewhiq+9eVVhpVrXeUXmA="
},
"extensions": null,
"lazyAssembly": null,
"libraryInitializers": null,
"pdb": null,
"runtime": {
"dotnet.6.0.33.7lsh2017gg.js": "sha256-3qQapGQ76xXOm4Dpi23h4jVNXH1bTJXQIuoMVyT5rnU=",
"dotnet.timezones.blat": "sha256-P+\/t9PCEv\/9QsJggxMNw2wdb6fNvy1O6Es0UqrFfIPQ=",
"dotnet.wasm": "sha256-r5LX3KwgLKNg\/4CMdUzGmiOWFg\/jSyA2MeU9kZ7qz+w=",
"icudt_CJK.dat": "sha256-WPyI4hWDPnOw62Nr27FkzGjdbucZnQD+Ph+GOPhAedw=",
"icudt_EFIGS.dat": "sha256-4RwaPx87Z4dvn77ie\/ro3\/QzyS+\/gGmO3Y\/0CSAXw4k=",
"icudt_no_CJK.dat": "sha256-OxylFgLJlFqixsj+nLxYVsv5iZLvfIKMpLf9hrWaChA=",
"icudt.dat": "sha256-Zuq0dWAsBm6\/2lSOsz7+H9PvFaRn61KIXHMMwXDfvyE="
},
"satelliteResources": null
}
}
Binary file added _framework/blazor.boot.json.br
Binary file not shown.
Binary file added _framework/blazor.boot.json.gz
Binary file not shown.
1 change: 1 addition & 0 deletions _framework/blazor.webassembly.js

Large diffs are not rendered by default.

Binary file added _framework/blazor.webassembly.js.br
Binary file not shown.
Binary file added _framework/blazor.webassembly.js.gz
Binary file not shown.
320 changes: 320 additions & 0 deletions _framework/dotnet.6.0.33.7lsh2017gg.js

Large diffs are not rendered by default.

Binary file added _framework/dotnet.6.0.33.7lsh2017gg.js.br
Binary file not shown.
Binary file added _framework/dotnet.6.0.33.7lsh2017gg.js.gz
Binary file not shown.
Binary file added _framework/dotnet.timezones.blat
Binary file not shown.
Binary file added _framework/dotnet.timezones.blat.br
Binary file not shown.
Binary file added _framework/dotnet.timezones.blat.gz
Binary file not shown.
Binary file added _framework/dotnet.wasm
Binary file not shown.
Binary file added _framework/dotnet.wasm.br
Binary file not shown.
Binary file added _framework/dotnet.wasm.gz
Binary file not shown.
Binary file added _framework/icudt.dat
Binary file not shown.
Binary file added _framework/icudt.dat.br
Binary file not shown.
Binary file added _framework/icudt.dat.gz
Binary file not shown.
Binary file added _framework/icudt_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_CJK.dat.gz
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.br
Binary file not shown.
Binary file added _framework/icudt_EFIGS.dat.gz
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.br
Binary file not shown.
Binary file added _framework/icudt_no_CJK.dat.gz
Binary file not shown.
Binary file added _framework/netstandard.dll
Binary file not shown.
Binary file added _framework/netstandard.dll.br
Binary file not shown.
Binary file added _framework/netstandard.dll.gz
Binary file not shown.
1 change: 1 addition & 0 deletions brotliloader.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8b6252d

Please sign in to comment.